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