Bug 23034: Remove uninitialized value warning in Mana KB settings
[koha.git] / admin / adveditorshortcuts.pl
1 #!/usr/bin/perl
2
3 # Copyright 2018 Koha Development Team
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 =head1 NAME
21
22 adveditorshortcuts.pl : Define keyboard shortcuts for the advanced cataloging editor (rancor)
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script allows the user to redefine the keyboard shortcuts for the advacned cataloging editor
31
32 =head1 FUNCTIONS
33
34 =cut
35
36 use Modern::Perl;
37 use Encode;
38
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;
45
46 my $input            = new CGI;
47 my $op               = $input->param('op') || 'list';
48
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,
56     }
57 );
58
59 my $shortcuts = Koha::KeyboardShortcuts->search();
60
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;
66
67     while ( my $shortcut = $shortcuts->next() ){
68         $shortcut->shortcut_keys( $updated_shortcuts{$shortcut->shortcut_name} );
69         $shortcut->store();
70     }
71 }
72
73
74 $template->param(
75     shortcuts  => $shortcuts,
76 );
77
78 output_html_with_http_headers $input, $cookie, $template->output;