Lines 1-5
Link Here
|
1 |
package Koha::AdditionalFieldValues; |
1 |
package Koha::AdditionalFieldValues; |
2 |
|
2 |
|
|
|
3 |
=head1 NAME |
4 |
|
5 |
Koha::AdditionalFieldValues - Koha::Objects derived class for additional field |
6 |
values |
7 |
|
8 |
=cut |
9 |
|
3 |
use Modern::Perl; |
10 |
use Modern::Perl; |
4 |
|
11 |
|
5 |
use base 'Koha::Objects'; |
12 |
use base 'Koha::Objects'; |
Lines 7-10
use base 'Koha::Objects';
Link Here
|
7 |
sub _type { 'AdditionalFieldValue' } |
14 |
sub _type { 'AdditionalFieldValue' } |
8 |
sub object_class { 'Koha::AdditionalFieldValue' } |
15 |
sub object_class { 'Koha::AdditionalFieldValue' } |
9 |
|
16 |
|
|
|
17 |
=head1 AUTHOR |
18 |
|
19 |
Koha Development Team <http://koha-community.org/> |
20 |
|
21 |
=head1 COPYRIGHT AND LICENSE |
22 |
|
23 |
Copyright 2018 BibLibre |
24 |
|
25 |
This file is part of Koha. |
26 |
|
27 |
Koha is free software; you can redistribute it and/or modify it under the |
28 |
terms of the GNU General Public License as published by the Free Software |
29 |
Foundation; either version 3 of the License, or (at your option) any later |
30 |
version. |
31 |
|
32 |
Koha is distributed in the hope that it will be useful, but WITHOUT ANY |
33 |
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
34 |
A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
35 |
|
36 |
You should have received a copy of the GNU General Public License along |
37 |
with Koha; if not, see <http://www.gnu.org/licenses>. |
38 |
|
39 |
=head1 SEE ALSO |
40 |
|
41 |
L<Koha::Objects> |
42 |
|
43 |
=cut |
44 |
|
10 |
1; |
45 |
1; |