[Koha-cvs] CVS: koha bull-home.pl,NONE,1.1

doXulting doxulting at users.sourceforge.net
Fri Jul 30 16:01:03 CEST 2004


Update of /cvsroot/koha/koha
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15219/koha

Added Files:
	bull-home.pl 
Log Message:
The main serial menu. Its provides links for other options

--- NEW FILE ---
#!/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 => "bull/bull-home.tmpl",
				query => $query,
				type => "intranet",
				authnotrequired => 0,
				flagsrequired => {catalogue => 1},
				debug => 1,
				});
output_html_with_http_headers $query, $cookie, $template->output;





More information about the Koha-cvs mailing list