updated release notes for 3.14.0 beta
[koha.git] / cataloguing / value_builder / marc21_field_005.pl
index 93fdc3e..2be76b5 100755 (executable)
@@ -1,7 +1,5 @@
-
 #!/usr/bin/perl
 
-
 # Copyright 2000-2002 Katipo Communications
 #
 # This file is part of Koha.
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
-
-require Exporter;
-use C4::Auth;
-use C4::Context;
-use C4::Output;
-use CGI;
-use C4::Search;
-use MARC::Record;
-use C4::Koha;
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
+use strict;
+#use warnings; FIXME - Bug 2505
+#use C4::Context;
 
 =head1
 
 plugin_parameters : other parameters added when the plugin is called by the dopop function
 
 =cut
+
 sub plugin_parameters {
-my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
-return "";
+    # my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
+    return "";
 }
 
 =head1
@@ -53,33 +46,16 @@ returns :
 the 3 scripts are inserted after the <input> in the html code
 
 =cut
+
 sub plugin_javascript {
-my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
-my $function_name= $field_number;
-
-# find today's date
-my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
-$year +=1900;
-$mon +=1;
-if (length($mon)==1) {
-       $mon = "0".$mon;
-}
-if (length($mday)==1) {
-       $mday = "0".$mday;
-}
-if (length($hour)==1) {
-        $hour = "0".$hour;
-}
-if (length($min)==1) {
-        $min = "0".$min;
-}
-if (length($sec)==1) {
-        $hour = "0".$sec;
-}
+    my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
+    my $function_name= $field_number;
 
+    # find today's date
+    my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
+    my $date = sprintf("%4d%02d%02d%02d%02d%04.1f",@a);
 
-my $date = "$year$mon$mday$hour$min$sec".".0";
-my $res  = "
+    my $res  = "
 <script type=\"text/javascript\">
 //<![CDATA[
 
@@ -97,7 +73,7 @@ function Clic$function_name(subfield_managed) {
 //]]>
 </script>
 ";
-return ($function_name,$res);
+    return ($function_name,$res);
 }
 
 =head1
@@ -107,8 +83,7 @@ plugin : the true value_builded. The screen that is open in the popup window.
 =cut
 
 sub plugin {
-my ($input) = @_;
-return "";
+    return "";
 }
 
 1;