Bug 18309: UNIMARC update from IFLA - authority (fr) (FA)
[koha.git] / Koha / AdditionalFields.pm
blob4900ddaa182533587ef6c2521ca9c85bcf4dc29f
1 package Koha::AdditionalFields;
3 =head1 NAME
5 Koha::AdditionalFields - Koha::Objects derived class for additional fields
7 =cut
9 use Modern::Perl;
11 use base 'Koha::Objects';
13 use Koha::AdditionalField;
15 sub _type { 'AdditionalField' }
16 sub object_class { 'Koha::AdditionalField' }
18 =head1 AUTHOR
20 Koha Development Team <http://koha-community.org/>
22 =head1 COPYRIGHT AND LICENSE
24 Copyright 2018 BibLibre
26 This file is part of Koha.
28 Koha is free software; you can redistribute it and/or modify it under the
29 terms of the GNU General Public License as published by the Free Software
30 Foundation; either version 3 of the License, or (at your option) any later
31 version.
33 Koha is distributed in the hope that it will be useful, but WITHOUT ANY
34 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
35 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
37 You should have received a copy of the GNU General Public License along
38 with Koha; if not, see <http://www.gnu.org/licenses>.
40 =head1 SEE ALSO
42 L<Koha::Objects>
44 =cut