Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / Koha / AdditionalFieldValues.pm
1 package Koha::AdditionalFieldValues;
2
3 =head1 NAME
4
5 Koha::AdditionalFieldValues - Koha::Objects derived class for additional field
6 values
7
8 =cut
9
10 use Modern::Perl;
11 use Koha::AdditionalFieldValue;
12
13 use base 'Koha::Objects';
14
15 sub _type { 'AdditionalFieldValue' }
16 sub object_class { 'Koha::AdditionalFieldValue' }
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;