Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / Koha / AdditionalField.pm
blob721c01fffc911b8179e6a5ece12b8714ca0cc1b1
1 package Koha::AdditionalField;
3 =head1 NAME
5 Koha::AdditionalField - Koha::Object derived class for additional fields
7 =cut
9 use Modern::Perl;
11 use base qw(Koha::Object);
13 use C4::Context;
15 sub _type { 'AdditionalField' }
17 =head1 AUTHOR
19 Koha Development Team <http://koha-community.org/>
21 =head1 COPYRIGHT AND LICENSE
23 Copyright 2013, 2018 BibLibre
25 This file is part of Koha.
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.
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.
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>.
39 =head1 SEE ALSO
41 L<Koha::Object>
43 =cut