Koha/admin/usage_statistics.pl
Jonathan Druart 3d46c0c7bb Bug 14608: Add a page to configure shared statistics
This patch set adds:
- a reference to Hea at the end of the installation process
- a link to the new page from the admin home page
- a new page to easily configure shared statistics

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
2017-03-22 23:51:29 +00:00

58 lines
2.1 KiB
Perl
Executable file

#!/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 3 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, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use CGI qw ( -utf8 );
use C4::Auth;
use C4::Output;
use Koha::DateUtils qw( dt_from_string output_pref );
my $query = new CGI;
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{
template_name => "admin/usage_statistics.tt",
query => $query,
type => "intranet",
authnotrequired => 0,
flagsrequired => { parameters => '*' },
debug => 1,
}
);
my $op = $query->param('op') || q||;
if ( $op eq 'update' ) {
my $UsageStats = $query->param('UsageStats');
my $UsageStatsCountry = $query->param('UsageStatsCountry');
my $UsageStatsLibraryName = $query->param('UsageStatsLibraryName');
my $UsageStatsLibraryType = $query->param('UsageStatsLibraryType');
my $UsageStatsLibraryUrl = $query->param('UsageStatsLibraryUrl');
C4::Context->set_preference('UsageStats', $UsageStats);
C4::Context->set_preference('UsageStatsCountry', $UsageStatsCountry);
C4::Context->set_preference('UsageStatsLibraryName', $UsageStatsLibraryName);
C4::Context->set_preference('UsageStatsLibraryType', $UsageStatsLibraryType);
C4::Context->set_preference('UsageStatsLibraryUrl', $UsageStatsLibraryUrl);
}
if ( C4::Context->preference('UsageStatsLastUpdateTime') ) {
my $dt = DateTime->from_epoch( epoch => C4::Context->preference('UsageStatsLastUpdateTime'));
$template->param(UsageStatsLastUpdateTime => output_pref($dt) );
}
output_html_with_http_headers $query, $cookie, $template->output;