Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / Koha / AdditionalFields.pm
1 package Koha::AdditionalFields;
2
3 =head1 NAME
4
5 Koha::AdditionalFields - Koha::Objects derived class for additional fields
6
7 =cut
8
9 use Modern::Perl;
10
11 use base 'Koha::Objects';
12
13 use Koha::AdditionalField;
14
15 sub _type { 'AdditionalField' }
16 sub object_class { 'Koha::AdditionalField' }
17
18 =head1 AUTHOR
19
20 Koha Development Team <http://koha-community.org/>
21
22 =head1 COPYRIGHT AND LICENSE
23
24 Copyright 2018 BibLibre
25
26 This file is part of Koha.
27
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.
32
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.
36
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>.
39
40 =head1 SEE ALSO
41
42 L<Koha::Objects>
43
44 =cut
45
46 1;