Bug 26666: (QA follow-up) Add 'USE raw' in template
[koha.git] / admin / admin-home.pl
blob23c92f3b4cf697d4bf5fdabc22ffd28395a5bce3
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use C4::Auth;
22 use C4::Output;
23 use Koha::Plugins;
25 my $query = CGI->new;
27 my $plugins_enabled = C4::Context->config("enable_plugins");
28 my $mana_url = C4::Context->config('mana_config');
30 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
32 template_name => "admin/admin-home.tt",
33 query => $query,
34 type => "intranet",
35 flagsrequired => { parameters => '*' },
36 debug => 1,
40 $template->param( plugins_enabled => $plugins_enabled, );
41 $template->param( mana_url => $mana_url, );
43 output_html_with_http_headers $query, $cookie, $template->output;