adding 'gettext' as this is requred by the translation utility
[koha.git] / cataloguing / value_builder / dateaccessioned.pl
1 #!/usr/bin/perl
2
3 # $Id: usmarc_field_952v.pl,v 1.1.2.2 2006/09/20 02:59:53 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
24 =head1
25
26 plugin_parameters : other parameters added when the plugin is called by the dopop function
27
28 =cut
29 sub plugin_parameters {
30         my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
31         return "";
32 }
33
34 =head1
35
36 plugin_javascript : the javascript function called when the user enters the subfield.
37 contain 3 javascript functions :
38 * one called when the field is entered (OnFocus). Named FocusXXX
39 * one called when the field is leaved (onBlur). Named BlurXXX
40 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
41
42 returns :
43 * XXX
44 * a variable containing the 3 scripts.
45 the 3 scripts are inserted after the <input> in the html code
46
47 =cut
48 sub plugin_javascript {
49         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
50         my $function_name= "dateaccessioned".(int(rand(100000))+1);
51
52         # find today's date
53         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
54                                                                localtime(time);
55         $year +=1900;
56         $mon +=1;
57         $pmon = sprintf("%0*d", "2",$mon);
58
59         $pmday = sprintf("%0*d", "2",$mday);
60         my $date = "$year-$pmon-$pmday";
61
62         # find the tag/subfield mapped to items.dateaccessioned
63         my ($tag,$subfield) =  GetMarcFromKohaField("items.dateaccessioned");
64         my $res  = "
65 <script type=\"text/javascript\">
66 //<![CDATA[
67 function Blur$function_name(index) {
68 //need this?
69 }
70
71 function Focus$function_name(subfield_managed) {
72         for (i=0 ; i<document.f.field_value.length ; i++) {
73                 if (document.f.tag[i].value == '$tag' && document.f.subfield[i].value == '$subfield') {
74                                                 if (document.f.field_value[i].value == '') {
75                                                         document.f.field_value[i].value = '$date';
76                                                 }
77                 }
78         }
79 return 0;
80 }
81
82 function Clic$function_name(subfield_managed) {
83 }
84 //]]>
85 </script>
86 ";
87         return ($function_name,$res);
88 }
89
90 =head1
91
92 plugin : the true value_builded. The screen that is open in the popup window.
93
94 =cut
95
96 sub plugin {
97 my ($input) = @_;
98 return "";
99 }
100
101 1;