@@ -, +, @@ --- C4/RotatingCollections.pm | 60 --------------------------------- rotating_collections/addItems.pl | 1 - rotating_collections/editCollections.pl | 1 - 3 files changed, 62 deletions(-) delete mode 100644 C4/RotatingCollections.pm --- a/C4/RotatingCollections.pm +++ a/C4/RotatingCollections.pm @@ -1,60 +0,0 @@ -package C4::RotatingCollections; - -# $Id: RotatingCollections.pm,v 0.1 2007/04/20 kylemhall - -# This package is inteded to keep track of what library -# Items of a certain collection should be at. - -# Copyright 2007 Kyle Hall -# -# This file is part of Koha. -# -# Koha is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. -# -# Koha is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with Koha; if not, see . - -use Modern::Perl; - -use C4::Context; -use C4::Circulation; -use C4::Reserves qw(CheckReserves); -use Koha::Database; - -use DBI; - -use Data::Dumper; - -use vars qw(@ISA @EXPORT); - - -=head1 NAME - -C4::RotatingCollections - Functions for managing rotating collections - -=head1 FUNCTIONS - -=cut - -BEGIN { - require Exporter; - @ISA = qw( Exporter ); - @EXPORT = qw( - ); -} - -__END__ - -=head1 AUTHOR - -Kyle Hall - -=cut --- a/rotating_collections/addItems.pl +++ a/rotating_collections/addItems.pl @@ -21,7 +21,6 @@ use Modern::Perl; use C4::Output; use C4::Auth; use C4::Context; -use C4::RotatingCollections; use C4::Items; use Koha::Items; --- a/rotating_collections/editCollections.pl +++ a/rotating_collections/editCollections.pl @@ -23,7 +23,6 @@ use CGI qw ( -utf8 ); use C4::Output; use C4::Auth; use C4::Context; -use C4::RotatingCollections; use Koha::RotatingCollections; --