Bug 20434: Update UNIMARC framework - auth (FAM)
[koha.git] / admin / adveditorshortcuts.pl
blob555ddc9ef6c35045a87005dd809298649f97c8d7
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 = new CGI;
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 authnotrequired => 1,
54 flagsrequired => { parameters => 'manage_keyboard_shortcuts' },
55 debug => 1,
59 my $shortcuts = Koha::KeyboardShortcuts->search();
61 if ( $op eq 'save' ) {
62 my @shortcut_names = $input->multi_param('shortcut_name');
63 my @shortcut_keys = $input->multi_param('shortcut_keys');
64 my %updated_shortcuts;
65 @updated_shortcuts{@shortcut_names} = @shortcut_keys;
67 while ( my $shortcut = $shortcuts->next() ){
68 $shortcut->shortcut_keys( $updated_shortcuts{$shortcut->shortcut_name} );
69 $shortcut->store();
74 $template->param(
75 shortcuts => $shortcuts,
78 output_html_with_http_headers $input, $cookie, $template->output;