Bug 13234 [Follow-up] Make on-site checkouts visible in OPAC
[koha.git] / cataloguing / value_builder / dateaccessioned.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 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
10 # version.
11 #
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.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 no warnings 'redefine';
23
24 =head1
25
26 plugin_parameters : useless here
27
28 =cut
29
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  left   (onBlur ) named BlurXXX
41 * one called when the ... link is clicked (onClick) 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
50 sub plugin_javascript {
51         # my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
52         my $function_name = "dateaccessioned".(int(rand(100000))+1);
53
54     require C4::Dates;
55         my $date = C4::Dates->today('iso');
56
57         # find the tag/subfield mapped to items.dateaccessioned
58         my ($tag,$subfield) =  GetMarcFromKohaField("items.dateaccessioned","");
59         my $res  = <<END_OF_JS;
60 <script type="text/javascript">
61 //<![CDATA[
62 //  
63 // from: cataloguing/value_builder/dateaccessioned.pl
64
65 function Blur$function_name(index) {
66     //date validation could go here
67 }
68
69 function Focus$function_name(subfield_managed, id, force) {
70     //var summary = "";
71     //for (i=0 ; i<document.f.field_value.length ; i++) {
72     //  summary += i + ": " + document.f.tag[i].value + " " + document.f.subfield[i].value + ": " + document.f.field_value[i].value + "\\n"; 
73     //}
74     //alert("Got focus, subfieldmanaged: " + subfield_managed + "\\n" + summary);
75     set_to_today(id);
76     return 0;
77 }
78
79 function Clic$function_name(id) {
80     set_to_today(id, 1);
81     return 0;
82 }
83
84 function set_to_today(id, force) {
85     if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; }
86     if (\$("#" + id).val() == '' || \$("#" + id).val() == '0000-00-00' || force) {
87         \$("#" + id).val("$date");
88     }
89 }
90 //]]>
91 </script>
92 END_OF_JS
93         return ($function_name, $res);
94 }
95
96 =head1
97
98 plugin: useless here.
99
100 =cut
101
102 sub plugin {
103 #    my ($input) = @_;
104     return "";
105 }
106
107 1;