Bug 16693: Remove reserve/renewscript.pl
[koha.git] / cataloguing / value_builder / marc21_field_006.pl
bloba773d9cb3da88c8bc05a79adb673937f97eb5f7e
1 #!/usr/bin/perl
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>.
22 use Modern::Perl;
23 use C4::Auth;
24 use CGI qw ( -utf8 );
25 use C4::Context;
27 use C4::Search;
28 use C4::Output;
30 use XML::LibXML;
32 my $builder = sub {
33 my ( $params ) = @_;
34 my $function_name = $params->{id};
35 my $res = "
36 <script type=\"text/javascript\">
37 //<![CDATA[
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');
44 //]]>
45 </script>
48 return $res;
51 my $launcher = sub {
52 my ( $params ) = @_;
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",
61 query => $input,
62 type => "intranet",
63 authnotrequired => 0,
64 flagsrequired => { editcatalogue => '*' },
65 debug => 1,
68 $result = "a|||||r|||| 00| 0 " unless $result;
70 my $errorXml = '';
71 # Check if the xml, xsd exists and is validated
72 my $dir = C4::Context->config('intrahtdocs') . '/prog/' . $template->{lang} . '/data/';
73 if (-r $dir . 'marc21_field_006.xml') {
74 my $doc = XML::LibXML->new->parse_file($dir . 'marc21_field_006.xml');
75 if (-r $dir . 'marc21_field_CF.xsd') {
76 my $xmlschema = XML::LibXML::Schema->new(location => $dir . 'marc21_field_CF.xsd');
77 eval {
78 $xmlschema->validate( $doc );
80 $errorXml = 'Can\'t validate the xml data from ' . $dir . 'marc21_field_006.xml' if ($@);
82 } else {
83 $errorXml = 'Can\'t read the xml file ' . $dir . 'marc21_field_006.xml';
85 $template->param(tagfield => '006',
86 index => $index,
87 result => $result,
88 errorXml => $errorXml,
90 output_html_with_http_headers $input, $cookie, $template->output;
93 return { builder => $builder, launcher => $launcher };