Bug 13437: Perltidy some plugin files before conversion
[koha.git] / cataloguing / value_builder / marc21_leader_video.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 strict;
21
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use C4::Context;
26
27 use C4::Search;
28 use C4::Output;
29
30 sub plugin_javascript {
31     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
32     my $function_name = $field_number;
33     my $res           = "
34 <script type=\"text/javascript\">
35 //<![CDATA[
36
37 function Clic$function_name(i) {
38         defaultvalue=document.getElementById(\"$field_number\").value;
39         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_leader.pl&index=\"+i+\"&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
40
41 }
42 //]]>
43 </script>
44 ";
45
46     return ( $function_name, $res );
47 }
48
49 sub plugin {
50     my ($input) = @_;
51     my $index   = $input->param('index');
52     my $result  = $input->param('result');
53
54     my $dbh = C4::Context->dbh;
55
56     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
57         {   template_name   => "cataloguing/value_builder/marc21_leader.tt",
58             query           => $input,
59             type            => "intranet",
60             authnotrequired => 0,
61             flagsrequired   => { editcatalogue => '*' },
62             debug           => 1,
63         }
64     );
65     $result = "     ngm         7a      " unless $result;
66     my $f5  = substr( $result, 5,  1 );
67     my $f6  = substr( $result, 6,  1 );
68     my $f7  = substr( $result, 7,  1 );
69     my $f8  = substr( $result, 8,  1 );
70     my $f9  = substr( $result, 9,  1 );
71     my $f17 = substr( $result, 17, 1 );
72     my $f18 = substr( $result, 18, 1 );
73     my $f19 = substr( $result, 19, 1 );
74
75     $template->param(
76         index     => $index,
77         "f5$f5"   => 1,
78         "f6$f6"   => 1,
79         "f7$f7"   => 1,
80         "f8$f8"   => 1,
81         "f9$f9"   => 1,
82         "f17$f17" => 1,
83         "f18$f18" => 1,
84         "f19$f19" => 1,
85     );
86     output_html_with_http_headers $input, $cookie, $template->output;
87 }