Bug 15774: Use Koha::Object(s) for additional fields
[koha.git] / Koha / AdditionalField.pm
1 package Koha::AdditionalField;
2
3 use Modern::Perl;
4
5 use base qw(Koha::Object);
6
7 use C4::Context;
8
9 sub _type { 'AdditionalField' }
10
11 1;
12
13 __END__
14
15 =head1 NAME
16
17 Koha::AdditionalField
18
19 =head1 AUTHOR
20
21 Jonathan Druart <jonathan.druart at biblibre.com>
22
23 =head1 COPYRIGHT
24
25 Copyright 2013 BibLibre
26
27 =head1 LICENSE
28
29 This file is part of Koha.
30
31 Koha is free software; you can redistribute it and/or modify it under the
32 terms of the GNU General Public License as published by the Free Software
33 Foundation; either version 3 of the License, or (at your option) any later
34 version.
35
36 Koha is distributed in the hope that it will be useful, but WITHOUT ANY
37 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
38 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
39
40 You should have received a copy of the GNU General Public License along
41 with Koha; if not, see <http://www.gnu.org/licenses>.