Bug 19008: More database cleanups - statistics
[koha.git] / Koha / Club / Holds.pm
blob1bce89b1aee4e27034328a223fe57b960d41e087
1 package Koha::Club::Holds;
3 # Copyright ByWater Solutions 2014
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use Modern::Perl;
22 use Carp;
24 use Koha::Database;
26 use Koha::Club::Field;
28 use Koha::Club::Hold;
30 use base qw(Koha::Objects);
32 =head1 NAME
34 Koha::Club::Holds
36 Represents a collection of club holds.
38 =head1 API
40 =head2 Class Methods
42 =cut
44 =head3 type
46 =cut
48 sub _type {
49 return 'ClubHold';
52 =head3 object_class
54 =cut
56 sub object_class {
57 return 'Koha::Club::Hold';
60 =head1 AUTHOR
62 Agustin Moyano <agustinmoyano@theke.io>
64 =cut