| 
      
            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  |