3 # Converted to new plugin style (Bug 13437)
5 # Copyright 2000-2002 Katipo Communications
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
34 my $function_name = $params->{id
};
36 <script type=\"text/javascript\">
39 function Click$function_name(event) {
40 defaultvalue=document.getElementById(event.data.id).value;
41 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_006.pl&index=\"+ event.data.id +\"&result=\"+defaultvalue,\"tag_editor\",'width=1000,height=600,toolbar=false,scrollbars=yes');
53 my $input = $params->{cgi
};
54 my $index = $input->param('index');
55 my $result = $input->param('result');
57 my $dbh = C4
::Context
->dbh;
59 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
60 { template_name
=> "cataloguing/value_builder/marc21_field_006.tt",
64 flagsrequired
=> { editcatalogue
=> '*' },
68 $result = "a|||||r|||| 00| 0 " unless $result;
69 my $material_form_mapping = {
70 a
=> 'BKS', t
=> 'BKS',
71 c
=> 'MU', d
=> 'MU', i
=> 'MU', j
=> 'MU',
73 g
=> 'VM', k
=> 'VM', o
=> 'VM', r
=> 'VM',
78 my $material_code = substr(($result // ' '), 0, 1);
79 my $material_configuration = $material_form_mapping->{$material_code};
82 # Check if the xml, xsd exists and is validated
83 my $dir = C4
::Context
->config('intrahtdocs') . '/prog/' . $template->{lang
} . '/data/';
84 if (-r
$dir . 'marc21_field_006.xml') {
85 my $doc = XML
::LibXML
->new->parse_file($dir . 'marc21_field_006.xml');
86 if (-r
$dir . 'marc21_field_CF.xsd') {
87 my $xmlschema = XML
::LibXML
::Schema
->new(location
=> $dir . 'marc21_field_CF.xsd');
89 $xmlschema->validate( $doc );
91 $errorXml = 'Can\'t validate the xml data from ' . $dir . 'marc21_field_006.xml' if ($@
);
94 $errorXml = 'Can\'t read the xml file ' . $dir . 'marc21_field_006.xml';
96 $template->param(tagfield
=> '006',
99 errorXml
=> $errorXml,
100 material_configuration
=> $material_configuration,
102 output_html_with_http_headers
$input, $cookie, $template->output;
105 return { builder
=> $builder, launcher
=> $launcher };