Bug 32846: Fix cataloguing/value_builder/unimarc_field_124d.pl
[koha.git] / cataloguing / value_builder / unimarc_field_181c.pl
1 #!/usr/bin/perl
2
3 # Copyright 2014 Rijksmuseum
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 use Modern::Perl;
21
22 use Date::Calc;
23
24 use Koha::Util::FrameworkPlugin qw(wrapper);
25 use C4::Auth qw( get_template_and_user );
26 use CGI qw ( -utf8 );
27 use C4::Context;
28 use C4::Output qw( output_html_with_http_headers );
29
30
31 my $builder= sub {
32     my $params = shift;
33     my $id = $params->{id};
34
35     return qq|
36 <script>
37
38 function Click$id(event) {
39     var fieldvalue=\$('#'+event.data.id).val();
40     window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_181c.pl&index=\"+event.data.id+\"&result=\"+fieldvalue,\"tag_editor\",'width=700,height=700,toolbar=false,scrollbars=yes');
41     return false; /* prevents scrolling */
42 }
43 </script>|;
44 };
45
46 my $launcher= sub {
47     my $params = shift;
48     my $cgi = $params->{cgi};
49     my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
50         template_name => "cataloguing/value_builder/unimarc_field_181c.tt",
51         query => $cgi,
52         type => "intranet",
53         flagsrequired => {editcatalogue => '*'},
54     });
55     my $results = scalar $cgi->param('result');
56     my $input_a = substr $results, 0, 3;
57
58     $template->param(
59         index => scalar $cgi->param('index'),
60         result => $results,
61         f1 => $input_a,
62     );
63
64     output_html_with_http_headers $cgi, $cookie, $template->output;
65 };
66
67 # Return the hashref with the builder and launcher to FrameworkPlugin object.
68 # NOTE: If you do not need a popup but only use e.g. Focus, Blur etc. for a
69 # particular plugin, you only need to define and return the builder.
70 return { builder => $builder, launcher => $launcher };