Bug 26922: Regression tests
[koha.git] / admin / adveditorshortcuts.pl
blob5910d3fd86a9f570d9d380d475ab7ed0daf3af1a
1 #!/usr/bin/perl
3 # Copyright 2018 Koha Development Team
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 =head1 NAME
22 adveditorshortcuts.pl : Define keyboard shortcuts for the advanced cataloging editor (rancor)
24 =head1 SYNOPSIS
26 =cut
28 =head1 DESCRIPTION
30 This script allows the user to redefine the keyboard shortcuts for the advacned cataloging editor
32 =head1 FUNCTIONS
34 =cut
36 use Modern::Perl;
37 use Encode;
39 use C4::Auth;
40 use C4::Context;
41 use C4::Output;
42 use CGI qw ( -utf8 );
43 use C4::Koha;
44 use Koha::KeyboardShortcuts;
46 my $input = CGI->new;
47 my $op = $input->param('op') || 'list';
49 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
50 { template_name => "admin/adveditorshortcuts.tt",
51 query => $input,
52 type => "intranet",
53 flagsrequired => { parameters => 'manage_keyboard_shortcuts' },
54 debug => 1,
58 my $shortcuts = Koha::KeyboardShortcuts->search();
60 if ( $op eq 'save' ) {
61 my @shortcut_names = $input->multi_param('shortcut_name');
62 my @shortcut_keys = $input->multi_param('shortcut_keys');
63 my %updated_shortcuts;
64 @updated_shortcuts{@shortcut_names} = @shortcut_keys;
66 while ( my $shortcut = $shortcuts->next() ){
67 $shortcut->shortcut_keys( $updated_shortcuts{$shortcut->shortcut_name} );
68 $shortcut->store();
73 $template->param(
74 shortcuts => $shortcuts,
77 output_html_with_http_headers $input, $cookie, $template->output;