From 91c42259bea0f4771de0ee11623a932bd46848a8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Andr=C3=A9=20Santoni?= Date: Wed, 26 Aug 2009 01:44:31 +0200 Subject: [PATCH] This is a calatoguing plugin based on auth_finder but specific to one of our customers. Signed-off-by: Galen Charlton --- .../value_builder/unimarc_field_686a.pl | 92 +++++++++++++++++++ .../value_builder/unimarc_field_686a.tmpl | 77 ++++++++++++++++ 2 files changed, 169 insertions(+) create mode 100644 cataloguing/value_builder/unimarc_field_686a.pl create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_686a.tmpl diff --git a/cataloguing/value_builder/unimarc_field_686a.pl b/cataloguing/value_builder/unimarc_field_686a.pl new file mode 100644 index 0000000000..8d04df929e --- /dev/null +++ b/cataloguing/value_builder/unimarc_field_686a.pl @@ -0,0 +1,92 @@ +#!/usr/bin/perl + +# Copyright 2000-2002 Katipo Communications +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# 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 + +use strict; +use C4::Auth; +use CGI; +use C4::Context; + +use C4::Search; +use C4::Output; + +=head1 NAME + +plugin unimarc_field_686a + +=head1 SYNOPSIS + +This plug-in deals with unimarc field 686a ( + +=head1 DESCRIPTION + +=head1 FUNCTIONS + +=over 2 + +=cut + +sub plugin_javascript { +my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_; +my $function_name= $field_number; +my $res = " + +"; + +return ($function_name,$res); +} + +sub plugin { +my ($input) = @_; + my $index= $input->param('index'); + my $index2= $input->param('index2'); + $index2=-1 unless($index2); + my $result= $input->param('result'); + + my $dbh = C4::Context->dbh; + + my ($template, $loggedinuser, $cookie) + = get_template_and_user({template_name => "cataloguing/value_builder/unimarc_field_686a.tmpl", + query => $input, + type => "intranet", + authnotrequired => 0, + flagsrequired => {editcatalogue => 1}, + debug => 1, + }); + $template->param(index => $index, + index2 => $index2, + authtypecode => 'CLASSCD', + ); + output_html_with_http_headers $input, $cookie, $template->output; +} + +1; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_686a.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_686a.tmpl new file mode 100644 index 0000000000..8e91f15043 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_686a.tmpl @@ -0,0 +1,77 @@ + +UNIMARC_Field 686a builder + + + + +
+
+
+
+

Classification

+

Please select a value in the classification. This will copy the 686$a field value from the authority record to the 686$a field of the bibliographic record.

+
+ + + " /> + " /> +
  1. + Authority type + + " /> +
  2. +
  3. + + + + + + " /> +
  4. +
  5. + + + + + + " /> +
  6. +
  7. + + + + + + " /> +
  8. +
  9. + + +
+
Cancel
+
+
+
+
+
+
+ + -- 2.39.5