BUGFIX (unimarc specific) escaping ' in template variables in 4XX plugin
[koha.git] / cataloguing / value_builder / barcode.pl
1 #!/usr/bin/perl
2
3 # $Id: barcode.pl,v 1.1.2.2 2006/09/20 02:24:42 kados Exp $
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 require Exporter;
23 use C4::Context;
24
25 =head1
26
27 plugin_parameters : other parameters added when the plugin is called by the dopop function
28
29 =cut
30 sub plugin_parameters {
31 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
32 return "";
33 }
34
35 =head1
36
37 plugin_javascript : the javascript function called when the user enters the subfield.
38 contain 3 javascript functions :
39 * one called when the field is entered (OnFocus). Named FocusXXX
40 * one called when the field is leaved (onBlur). Named BlurXXX
41 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
42
43 returns :
44 * XXX
45 * a variable containing the 3 scripts.
46 the 3 scripts are inserted after the <input> in the html code
47
48 =cut
49 sub plugin_javascript {
50 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
51 my $function_name= "barcode".(int(rand(100000))+1);
52
53 # find today's date
54 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
55                                                                localtime(time);
56 $year +=1900;
57 $mon +=1;
58 if (length($mon)==1) {
59         $mon = "0".$mon;
60 }
61 if (length($mday)==1) {
62         $mday = "0".$mday;
63 }
64 if (length($hour)==1) {
65         $hour = "0".$hour;
66 }
67 if (length($min)==1) {
68         $min = "0".$min;
69 }
70 if (length($sec)==1) {
71         $hour = "0".$sec;
72 }
73
74 my $dbh = C4::Context->dbh;
75 my $date = "$year";
76
77 my $query = "select max(abs(barcode)) from items";
78 my $sth=$dbh->prepare($query);
79 $sth->execute();
80 my $nextnum;
81 while (my ($count)= $sth->fetchrow_array) {
82         $nextnum = $count;
83         warn "COUNT".$count;
84 }
85 $nextnum++;
86 my $res  = "
87 <script type=\"text/javascript\">
88 //<![CDATA[
89
90 function Blur$function_name(index) {
91 //need this?
92 }
93
94 function Focus$function_name(subfield_managed) {
95                 for (i=0 ; i<document.f.field_value.length ; i++) {
96                         if (document.f.tag[i].value == '952' && document.f.subfield[i].value == 'p') {
97                                 if (document.f.field_value[i].value == '') {
98                                         document.f.field_value[i].value = '$nextnum';
99                                 }
100                         }
101                 }
102 return 0;
103 }
104
105 function Clic$function_name(subfield_managed) {
106 }
107 //]]>
108 </script>
109 ";
110 return ($function_name,$res);
111 }
112
113 =head1
114
115 plugin : the true value_builded. The screen that is open in the popup window.
116
117 =cut
118
119 sub plugin {
120 my ($input) = @_;
121 return "";
122 }
123
124 1;