Bug 7567 - Added branchcode to opac_news
[koha.git] / cataloguing / value_builder / dateaccessioned.pl
blob5e834a453b0c3bec49ebf055a36a05742b86811d
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
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
10 # version.
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 use strict;
21 use warnings;
23 =head1
25 plugin_parameters : useless here
27 =cut
29 sub plugin_parameters {
30 # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
31 return "";
34 =head1
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 left (onBlur ) named BlurXXX
40 * one called when the ... link is clicked (onClick) named ClicXXX
42 returns :
43 * XXX
44 * a variable containing the 3 scripts.
45 the 3 scripts are inserted after the <input> in the html code
47 =cut
49 sub plugin_javascript {
50 # my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
51 my $function_name = "dateaccessioned".(int(rand(100000))+1);
53 require C4::Dates;
54 my $date = C4::Dates->today('iso');
56 # find the tag/subfield mapped to items.dateaccessioned
57 my ($tag,$subfield) = GetMarcFromKohaField("items.dateaccessioned","");
58 my $res = <<END_OF_JS;
59 <script type="text/javascript">
60 //<![CDATA[
61 //
62 // from: cataloguing/value_builder/dateaccessioned.pl
64 function Blur$function_name(index) {
65 //date validation could go here
68 function Focus$function_name(subfield_managed, id, force) {
69 //var summary = "";
70 //for (i=0 ; i<document.f.field_value.length ; i++) {
71 // summary += i + ": " + document.f.tag[i].value + " " + document.f.subfield[i].value + ": " + document.f.field_value[i].value + "\\n";
72 //}
73 //alert("Got focus, subfieldmanaged: " + subfield_managed + "\\n" + summary);
74 set_to_today(id);
75 return 0;
78 function Clic$function_name(id) {
79 set_to_today(id, 1);
80 return 0;
83 function set_to_today(id, force) {
84 if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; }
85 if (\$("#" + id).val() == '' || \$("#" + id).val() == '0000-00-00' || force) {
86 \$("#" + id).val("$date");
89 //]]>
90 </script>
91 END_OF_JS
92 return ($function_name, $res);
95 =head1
97 plugin: useless here.
99 =cut
101 sub plugin {
102 # my ($input) = @_;
103 return "";