[Koha-cvs] koha/opac maintenance.pl

Henri-Damien LAURENT laurenthdl at alinto.com
Wed Jul 11 12:28:18 CEST 2007


CVSROOT:	/cvsroot/koha
Module name:	koha
Changes by:	Henri-Damien LAURENT <hdl>	07/07/11 10:28:18

Added files:
	opac           : maintenance.pl 

Log message:
	adding maintenance script to warn users when maintenance is on.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/maintenance.pl?cvsroot=koha&rev=1.1

Patches:
Index: maintenance.pl
===================================================================
RCS file: maintenance.pl
diff -N maintenance.pl
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ maintenance.pl	11 Jul 2007 10:28:18 -0000	1.1
@@ -0,0 +1,38 @@
+#!/usr/bin/perl
+
+# 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., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+# $Id: maintenance.pl,v 1.1 2007/07/11 10:28:18 hdl Exp $
+
+use strict;
+require Exporter;
+use CGI;
+use C4::Auth;
+use C4::Output;
+
+my $input = new CGI;
+
+my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
+    {
+        template_name   => "maintenance.tmpl",
+        type            => "opac",
+        query           => $input,
+        authnotrequired => 1,
+        flagsrequired   => { borrow => 1 },
+    }
+);
+
+output_html_with_http_headers $input, '', $template->output;





More information about the Koha-cvs mailing list