Bug 35695: Remove useless JS from cataloging_additem.js
[koha.git] / admin / items_search_fields.pl
1 #!/usr/bin/perl
2 # Copyright 2013 BibLibre
3 #
4 # This file is part of Koha
5 #
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20 use CGI;
21
22 use C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24
25 use Koha::Item::Search::Field qw(GetItemSearchFields DelItemSearchField);
26
27 my $cgi = CGI->new;
28
29 my ($template, $borrowernumber, $cookie) = get_template_and_user({
30     template_name => 'admin/items_search_fields.tt',
31     query => $cgi,
32     type => 'intranet',
33     flagsrequired   => { parameters => 'manage_item_search_fields' },
34 });
35
36 my $op = $cgi->param('op') || '';
37
38 if ($op eq 'del') {
39     my $name = $cgi->param('name');
40     my $rv = DelItemSearchField($name);
41     if ($rv) {
42         $template->param(field_deleted => 1);
43     } else {
44         $template->param(field_not_deleted => 1);
45     }
46 } else {
47     my $updated = $cgi->param('updated');
48     if (defined $updated) {
49         if ($updated) {
50             $template->param(field_updated => 1);
51         } else {
52             $template->param(field_not_updated => 1);
53         }
54     }
55 }
56
57 my @fields = GetItemSearchFields();
58
59 $template->param(
60     fields => \@fields,
61 );
62
63 output_html_with_http_headers $cgi, $cookie, $template->output;