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 8000: (QA follow-up) Fix accidently edited sysprefs.sql file
[koha.git]
/
Koha
/
Acquisition
/
Bookseller
/
Contact.pm
blob
61da32eac03073e6d3d217570081ba042a38bfd7
1
package
Koha
::
Acquisition
::
Bookseller
::
Contact
;
2
3
use
Modern
::
Perl
;
4
5
use
base
qw( Koha::Object )
;
6
7
use
Carp
qw( croak )
;
8
9
sub
_type
{
10
return
'Aqcontact'
;
11
}
12
13
1
;