Bug 23050: Fix creation of biblio tab's id
[koha.git] / Koha / AdditionalFieldValues.pm
blobcd0b284ece2483d9a6bae2e1a32f1653b0c8537b
1 package Koha::AdditionalFieldValues;
3 =head1 NAME
5 Koha::AdditionalFieldValues - Koha::Objects derived class for additional field
6 values
8 =cut
10 use Modern::Perl;
11 use Koha::AdditionalFieldValue;
13 use base 'Koha::Objects';
15 sub _type { 'AdditionalFieldValue' }
16 sub object_class { 'Koha::AdditionalFieldValue' }
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