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>.
22 adveditorshortcuts.pl : Define keyboard shortcuts for the advanced cataloging editor (rancor)
30 This script allows the user to redefine the keyboard shortcuts for the advacned cataloging editor
44 use Koha
::KeyboardShortcuts
;
47 my $op = $input->param('op') || 'list';
49 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
50 { template_name
=> "admin/adveditorshortcuts.tt",
53 flagsrequired
=> { parameters
=> 'manage_keyboard_shortcuts' },
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} );
74 shortcuts
=> $shortcuts,
77 output_html_with_http_headers
$input, $cookie, $template->output;