Merge commit 'kc/master'
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26
27 use C4::Search;
28 use C4::Output;
29
30 =head1
31
32 plugin_parameters : other parameters added when the plugin is called by the dopop function
33
34 =cut
35
36 # find today's date
37 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
38
39 $year +=1900; $mon +=1;
40 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
41 sub plugin_parameters {
42         my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
43         return "";
44 }
45
46 sub plugin_javascript {
47         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
48         my $function_name= $field_number;
49         my $res="
50 <script type=\"text/javascript\">
51 //<![CDATA[
52
53 function Focus$function_name(subfield_managed) {
54     if (!document.getElementById(\"$field_number\").value) {
55         document.getElementById(\"$field_number\").value='$dateentered' + '|| aca||aabn           | a|a     d';
56     }
57     return 1;
58 }
59
60 function Blur$function_name(subfield_managed) {
61         return 1;
62 }
63
64 function Clic$function_name(i) {
65         defaultvalue=document.getElementById(\"$field_number\").value;
66         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008_authorities.pl&index=$field_number&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
67
68 }
69 //]]>
70 </script>
71 ";
72
73         return ($function_name,$res);
74 }
75 sub plugin {
76         my ($input) = @_;
77         my $index= $input->param('index');
78         my $result= $input->param('result');
79
80
81         my $dbh = C4::Context->dbh;
82
83         my ($template, $loggedinuser, $cookie)
84     = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008_authorities.tmpl",
85                              query => $input,
86                              type => "intranet",
87                              authnotrequired => 0,
88                              flagsrequired => {editcatalogue => '*'},
89                              debug => 1,
90                              });
91         $result = "$dateentered".'|| aca||aabn           | a|a     d' unless $result;
92         my $f1 = substr($result,0,6);
93         my $f6 = substr($result,6,1);
94         my $f7 = substr($result,7,1);
95         my $f8 = substr($result,8,1);
96         my $f9 = substr($result,9,1);
97         my $f10 = substr($result,10,1);
98         my $f11 = substr($result,11,1);
99         my $f12 = substr($result,12,1);
100         my $f13 = substr($result,13,1);
101         my $f14 = substr($result,14,1);
102         my $f15 = substr($result,15,1);
103         my $f16 = substr($result,16,1);
104         my $f17 = substr($result,17,1);
105         my $f28 = substr($result,28,1);
106         my $f29 = substr($result,29,1);
107         my $f31 = substr($result,31,1);
108         my $f32 = substr($result,32,2);
109         my $f33 = substr($result,33,1);
110         my $f38 = substr($result,38,1);
111         my $f39 = substr($result,39,1);
112
113 if ((!$f1) ||($f1 =~ m/ /)){
114         $f1=$dateentered;
115 }
116
117         $template->param(                               index => $index,
118                                                         f1 => $f1,
119                                                         f6 => $f6,
120                                                         "f6$f6" => $f6,
121                             f7 => $f7,
122                             "f7$f7" => $f7,
123                             f8 => $f8,
124                             "f8$f8" => $f8,
125                             f9 => $f9,
126                             "f9$f9" => $f9,
127                             f10 => $f10,
128                             "f10$f10" => $f10,
129                             f11 => $f11,
130                             "f11$f11" => $f11,
131                             f12 => $f12,
132                             "f12$f12" => $f12,
133                             f13 => $f13,
134                             "f13$f13" => $f13,
135                             f14 => $f14,
136                             "f14$f14" => $f14,
137                             f15 => $f15,
138                             "f15$f15" => $f15,
139                             f16 => $f16,
140                             "f16$f16" => $f16,
141                             f17 => $f17,
142                             "f17$f17" => $f17,
143                             f28 => $f28,
144                             "f28$f28" => $f28,
145                             f29 => $f29,
146                             "f29$f29" => $f29,
147                             f31 => $f31,
148                             "f31$f31" => $f31,
149                             f32 => $f32,
150                             "f32$f32" => $f32,
151                             f33 => $f33,
152                             "f33$f33" => $f33,
153                             f38 => $f38,
154                             "f38$f38" => $f38,
155                             f39 => $f39,
156                             "f39$f39" => $f39,
157                                         );
158         output_html_with_http_headers $input, $cookie, $template->output;
159 }
160
161 1;