Bug 32817: Fix cataloguing/value_builder/dateaccessioned.pl
[koha.git] / cataloguing / value_builder / unimarc_field_181b.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 use Data::Dumper;
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_181b.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_181b.tt",
51         query => $cgi,
52         type => "intranet",
53         flagsrequired => {editcatalogue => '*'},
54     });
55     my $results = scalar $cgi->param('result');
56     $template->param(
57         index => scalar $cgi->param('index'),
58         result => $results,
59     );
60
61     # Return the result of the position in the string, ex: abcde = 1=a, 2=b, 3=c...
62     my @x = split(//, $results);
63     my $i = 1;
64     for my $fresult (@x) {
65         $template->param("f$i" => $fresult);
66         ++$i;
67     }
68
69     output_html_with_http_headers $cgi, $cookie, $template->output;
70 };
71
72 return { builder => $builder, launcher => $launcher };