From 133ae86bca38da5038f59f12de2455ac2a0a1e42 Mon Sep 17 00:00:00 2001 From: Olli-Antti Kivilahti Date: Sat, 13 Sep 2014 14:55:42 +0300 Subject: [PATCH 1/6] Bug 12353 - Introducing Koha::Reserves --- Koha/Reserves.pm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Koha/Reserves.pm diff --git a/Koha/Reserves.pm b/Koha/Reserves.pm new file mode 100644 index 0000000..fb4adbc --- /dev/null +++ b/Koha/Reserves.pm @@ -0,0 +1,37 @@ +package Koha::Reserves; + +# Copyright (c) 2014 Vaarakirjastot.fi and everybody else! +# 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 2 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, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; +binmode STDOUT, ":encoding(UTF-8)"; +use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); + +BEGIN { + # set the version for version checking + $VERSION = 3.16.3; + require Exporter; + @ISA = qw(Exporter); + @EXPORT = qw( + + + ); +} + +use C4::Context; +use Koha::DateUtils; +use Koha::Database; + -- 1.7.9.5