New framework handling. New koha_attr table for mapping MARC to koha
[koha.git] / admin / admin-home.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use CGI;
5 use C4::Auth;
6 use C4::Output;
7 use C4::Interface::CGI::Output;
8
9
10 my $query = new CGI;
11 my ($template, $loggedinuser, $cookie)
12     = get_template_and_user({template_name => "admin/admin-home.tmpl",
13                              query => $query,
14                              type => "intranet",
15                              authnotrequired => 0,
16                              flagsrequired => {parameters => 1, management => 1, tools => 1},
17                              debug => 1,
18                              });
19
20 output_html_with_http_headers $query, $cookie, $template->output;