repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 18452: Correcting 'url' to say 'URL' in catalog detail
[koha.git]
/
Koha
/
Acquisition
/
Bookseller
/
Contacts.pm
blob
053e7a6d9757b9eec584b8a97a7624b214d10d26
1
package
Koha
::
Acquisition
::
Bookseller
::
Contacts
;
2
3
use
Modern
::
Perl
;
4
5
use
Carp
;
6
7
use
base
qw( Koha::Objects )
;
8
9
use
Koha
::
Acquisition
::
Bookseller
::
Contact
;
10
11
sub
_type
{
12
return
'Aqcontact'
;
13
}
14
15
sub
object_class
{
16
return
'Koha::Acquisition::Bookseller::Contact'
;
17
}
18
19
1
;