4b78a8676fb06ba36a236a55d1e413dd1da2c02e
[srvgit] / 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            = CGI->new;
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         flagsrequired   => { parameters => 'manage_keyboard_shortcuts' },
54     }
55 );
56
57 my $shortcuts = Koha::KeyboardShortcuts->search();
58
59 if ( $op eq 'save' ) {
60     my @shortcut_names = $input->multi_param('shortcut_name');
61     my @shortcut_keys  = $input->multi_param('shortcut_keys');
62     my %updated_shortcuts;
63     @updated_shortcuts{@shortcut_names} = @shortcut_keys;
64
65     while ( my $shortcut = $shortcuts->next() ){
66         $shortcut->shortcut_keys( $updated_shortcuts{$shortcut->shortcut_name} );
67         $shortcut->store();
68     }
69 }
70
71
72 $template->param(
73     shortcuts  => $shortcuts,
74 );
75
76 output_html_with_http_headers $input, $cookie, $template->output;