| 
      
            Line 0
          
      
      
        Link Here
      
     | 
  
          
            
              | 0 | 
              -   | 
              1 | 
              package Koha::Reserves;  | 
            
            
               | 
               | 
              2 | 
               | 
            
            
              | 3 | 
              # Copyright (c) 2014 Vaarakirjastot.fi and everybody else!  | 
            
            
              | 4 | 
              # This file is part of Koha.  | 
            
            
              | 5 | 
              #  | 
            
            
              | 6 | 
              # Koha is free software; you can redistribute it and/or modify it under the  | 
            
            
              | 7 | 
              # terms of the GNU General Public License as published by the Free Software  | 
            
            
              | 8 | 
              # Foundation; either version 2 of the License, or (at your option) any later  | 
            
            
              | 9 | 
              # version.  | 
            
            
              | 10 | 
              #  | 
            
            
              | 11 | 
              # Koha is distributed in the hope that it will be useful, but WITHOUT ANY  | 
            
            
              | 12 | 
              # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR  | 
            
            
              | 13 | 
              # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.  | 
            
            
              | 14 | 
              #  | 
            
            
              | 15 | 
              # You should have received a copy of the GNU General Public License along with  | 
            
            
              | 16 | 
              # Koha; if not, write to the Free Software Foundation, Inc.,  | 
            
            
              | 17 | 
              # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.  | 
            
            
              | 18 | 
               | 
            
            
              | 19 | 
              use Modern::Perl;  | 
            
            
              | 20 | 
              binmode STDOUT, ":encoding(UTF-8)";  | 
            
            
              | 21 | 
              use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);  | 
            
            
              | 22 | 
               | 
            
            
              | 23 | 
              BEGIN { | 
            
            
              | 24 | 
                  # set the version for version checking  | 
            
            
              | 25 | 
                  $VERSION = 3.16.3;  | 
            
            
              | 26 | 
                  require Exporter;  | 
            
            
              | 27 | 
                  @ISA = qw(Exporter);  | 
            
            
              | 28 | 
                  @EXPORT = qw(  | 
            
            
              | 29 | 
               | 
            
            
              | 30 | 
               | 
            
            
              | 31 | 
                  );  | 
            
            
              | 32 | 
              }      | 
            
            
              | 33 | 
               | 
            
            
              | 34 | 
              use C4::Context;  | 
            
            
              | 35 | 
              use Koha::DateUtils;  | 
            
            
              | 36 | 
              use Koha::Database;  | 
            
            
              | 37 | 
               |