moving report home to reports directory
authortipaul <tipaul>
Tue, 17 Jan 2006 16:43:39 +0000 (16:43 +0000)
committertipaul <tipaul>
Tue, 17 Jan 2006 16:43:39 +0000 (16:43 +0000)
reports/reports-home.pl [new file with mode: 0644]

diff --git a/reports/reports-home.pl b/reports/reports-home.pl
new file mode 100644 (file)
index 0000000..a220183
--- /dev/null
@@ -0,0 +1,20 @@
+#!/usr/bin/perl
+
+use strict;
+use CGI;
+use C4::Auth;
+use C4::Output;
+use C4::Interface::CGI::Output;
+use C4::Context;
+use HTML::Template;
+
+my $query = new CGI;
+my ($template, $loggedinuser, $cookie)
+= get_template_and_user({template_name => "reports/reports-home.tmpl",
+                               query => $query,
+                               type => "intranet",
+                               authnotrequired => 0,
+                               flagsrequired => {catalogue => 1},
+                               debug => 1,
+                               });
+output_html_with_http_headers $query, $cookie, $template->output;