Bug 12159: (QA follow-up) Rename relation in Patron::Attributes
[koha.git] / Koha / AdditionalField.pm
1 package Koha::AdditionalField;
2
3 =head1 NAME
4
5 Koha::AdditionalField - Koha::Object derived class for additional fields
6
7 =cut
8
9 use Modern::Perl;
10
11 use base qw(Koha::Object);
12
13 use C4::Context;
14
15 sub _type { 'AdditionalField' }
16
17 =head1 AUTHOR
18
19 Koha Development Team <http://koha-community.org/>
20
21 =head1 COPYRIGHT AND LICENSE
22
23 Copyright 2013, 2018 BibLibre
24
25 This file is part of Koha.
26
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.
31
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.
35
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>.
38
39 =head1 SEE ALSO
40
41 L<Koha::Object>
42
43 =cut
44
45 1;