3 # Copyright 2009 Magnus Enger Libriotech
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
30 plugin_parameters : other parameters added when the plugin is called by the dopop function
35 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
39 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) = @_;
46 sub plugin_javascript
{
47 my $lang = C4
::Context
->preference('DefaultLanguageField008' );
48 $lang = "eng" unless $lang;
49 $lang = pack("A3", $lang);
50 my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
51 my $function_name = $field_number;
53 <script type=\"text/javascript\">
56 function Focus$function_name(subfield_managed) {
58 if ( document.getElementById(\"$field_number\").value ) {
61 document.getElementById(\"$field_number\").value='$dateentered' + 't xxu||||| |||| 00| 0 $lang d';
66 function Blur$function_name(subfield_managed) {
70 function Clic$function_name(i) {
71 defaultvalue=document.getElementById(\"$field_number\").value;
72 defaultvalue=defaultvalue.replace(/ /g, \"+\");
73 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_field_008.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
80 return ($function_name, $res);
84 my $lang = C4
::Context
->preference('DefaultLanguageField008' );
85 $lang = "eng" unless $lang;
86 $lang = pack("A3", $lang);
88 my $index = $input->param('index');
89 my $result = $input->param('result');
91 my $dbh = C4
::Context
->dbh;
93 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
94 { template_name
=> "cataloguing/value_builder/normarc_field_008.tmpl",
98 flagsrequired
=> { editcatalogue
=> 1 },
103 # $result = " t xxu 00 0 eng d" unless $result;
104 $result = "$dateentered" . "t xxu||||| |||| 00| 0 $lang d" unless $result;
105 my $f1 = substr($result, 0, 6);
106 my $f6 = substr($result, 6, 1);
107 my $f710 = substr($result, 7, 4);
108 my $f1114 = substr($result, 11, 4);
109 my $f1517 = substr($result, 15, 3);
110 my $f18 = substr($result, 18, 1);
111 my $f19 = substr($result, 19, 1);
112 my $f20 = substr($result, 20, 1);
113 my $f21 = substr($result, 21, 1);
114 my $f22 = substr($result, 22, 1);
115 my $f23 = substr($result, 23, 1);
116 my $f24 = substr($result, 24, 1);
117 my $f25 = substr($result, 25, 1);
118 my $f26 = substr($result, 26, 1);
119 my $f27 = substr($result, 27, 1);
120 my $f28 = substr($result, 28, 1);
121 my $f29 = substr($result, 29, 1);
122 my $f30 = substr($result, 30, 1);
123 my $f31 = substr($result, 31, 1);
124 my $f32 = substr($result, 32, 1);
125 my $f33 = substr($result, 33, 1);
126 my $f34 = substr($result, 34, 1);
127 my $f3537 = substr($result, 35, 3);
128 my $f38 = substr($result, 38, 1);
129 my $f39 = substr($result, 39, 1);
132 $f710 = "" if ($f710 =~ /^\s*$/);
133 $f1114 = "" if ($f1114 =~ /^\s*$/);
135 if ((!$f1) || ($f1 =~ m/ /)) {
187 output_html_with_http_headers
$input, $cookie, $template->output;