View | Details | Raw Unified | Return to bug 18606
Collapse All | Expand All

(-)a/C4/RotatingCollections.pm (-60 lines)
Lines 1-60 Link Here
1
package C4::RotatingCollections;
2
3
# $Id: RotatingCollections.pm,v 0.1 2007/04/20 kylemhall
4
5
# This package is inteded to keep track of what library
6
# Items of a certain collection should be at.
7
8
# Copyright 2007 Kyle Hall
9
#
10
# This file is part of Koha.
11
#
12
# Koha is free software; you can redistribute it and/or modify it
13
# under the terms of the GNU General Public License as published by
14
# the Free Software Foundation; either version 3 of the License, or
15
# (at your option) any later version.
16
#
17
# Koha is distributed in the hope that it will be useful, but
18
# WITHOUT ANY WARRANTY; without even the implied warranty of
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
# GNU General Public License for more details.
21
#
22
# You should have received a copy of the GNU General Public License
23
# along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25
use Modern::Perl;
26
27
use C4::Context;
28
use C4::Circulation;
29
use C4::Reserves qw(CheckReserves);
30
use Koha::Database;
31
32
use DBI;
33
34
use Data::Dumper;
35
36
use vars qw(@ISA @EXPORT);
37
38
39
=head1 NAME
40
41
C4::RotatingCollections - Functions for managing rotating collections
42
43
=head1 FUNCTIONS
44
45
=cut
46
47
BEGIN {
48
    require Exporter;
49
    @ISA    = qw( Exporter );
50
    @EXPORT = qw(
51
    );
52
}
53
54
__END__
55
56
=head1 AUTHOR
57
58
Kyle Hall <kylemhall@gmail.com>
59
60
=cut
(-)a/rotating_collections/addItems.pl (-1 lines)
Lines 21-27 use Modern::Perl; Link Here
21
use C4::Output;
21
use C4::Output;
22
use C4::Auth;
22
use C4::Auth;
23
use C4::Context;
23
use C4::Context;
24
use C4::RotatingCollections;
25
use C4::Items;
24
use C4::Items;
26
25
27
use Koha::RotatingCollections;
26
use Koha::RotatingCollections;
(-)a/rotating_collections/editCollections.pl (-2 lines)
Lines 23-29 use CGI qw ( -utf8 ); Link Here
23
use C4::Output;
23
use C4::Output;
24
use C4::Auth;
24
use C4::Auth;
25
use C4::Context;
25
use C4::Context;
26
use C4::RotatingCollections;
27
26
28
use Koha::RotatingCollections;
27
use Koha::RotatingCollections;
29
28
30
- 

Return to bug 18606