Bug 14585: Fixing up online help on main page
[koha.git] / cataloguing / value_builder / unimarc_field_225a.pl
blobc8fb38d6c5d6a1dec1eb85982a5813641e820923
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 =head1 SYNOPSIS
23 This plugin is used to map isbn/editor with collection.
24 It need :
25 in thesaurus, a category named EDITORS
26 in this category, datas must be entered like following :
27 isbn separator editor separator collection.
28 for example :
29 2204 -- Cerf -- Cogitatio fidei
30 2204 -- Cerf -- Le Magistere de l'Eglise
31 2204 -- Cerf -- Lectio divina
32 2204 -- Cerf -- Lire la Bible
33 2204 -- Cerf -- Pour lire
34 2204 -- Cerf -- Sources chretiennes
36 when the user clic on ... on 225a line, the popup shows the list of collections from the selected editor
37 if the biblio has no isbn, then the search if done on editor only
38 If the biblio ha an isbn, the search is done on isbn and editor. It's faster.
40 =cut
42 use strict;
43 #use warnings; FIXME - Bug 2505
44 use C4::Auth;
45 use CGI;
46 use C4::Context;
48 use C4::AuthoritiesMarc;
49 use C4::Output;
51 =head1 DESCRIPTION
53 plugin_parameters : other parameters added when the plugin is called by the dopop function
55 =cut
57 sub plugin_parameters {
58 my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
59 return "";
62 sub plugin_javascript {
63 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
64 my $function_name = $field_number;
65 my $res = "
66 <script type=\"text/javascript\">
67 function Focus$function_name(subfield_managed) {
68 return 1;
71 function Blur$function_name(subfield_managed) {
72 return 1;
75 function Clic$function_name(index) {
76 // find the 010a value and the 210c. it will be used in the popup to find possibles collections
77 var isbn_found = 0;
78 var editor_found = 0;
80 var inputs = document.getElementsByTagName('input');
82 for(var i=0 , len=inputs.length ; i \< len ; i++ ){
83 if(inputs[i].id.match(/^tag_010_subfield_a_.*/)){
84 isbn_found = inputs[i].value;
86 if(inputs[i].id.match(/^tag_210_subfield_c_.*/)){
87 editor_found = inputs[i].value;
89 if(editor_found && isbn_found){
90 break;
94 defaultvalue = document.getElementById(\"$field_number\").value;
95 window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_225a.pl&index=\"+index+\"&result=\"+defaultvalue+\"&editor_found=\"+editor_found,\"unimarc225a\",'width=500,height=400,toolbar=false,scrollbars=no');
98 </script>
101 return ( $function_name, $res );
104 sub plugin {
105 my ($input) = @_;
106 my $index = $input->param('index');
107 my $result = $input->param('result');
108 my $editor_found = $input->param('editor_found');
109 my $AuthoritySeparator = C4::Context->preference("AuthoritySeparator");
111 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
113 template_name =>
114 "cataloguing/value_builder/unimarc_field_225a.tt",
115 query => $input,
116 type => "intranet",
117 authnotrequired => 0,
118 flagsrequired => { editcatalogue => '*' },
119 debug => 1,
123 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
124 # if there is an isbn, complete search
125 my @collections;
127 my @value = ($editor_found,"","");
128 my @tags = ("mainentry","","");
129 my @and_or = ('and','','');
130 my @operator = ('is','','');
131 my @excluding = ('','','');
134 my ($results,$total) = SearchAuthorities( \@tags,\@and_or,
135 \@excluding, \@operator, \@value,
136 0, 20,"EDITORS", "HeadingAsc");
137 foreach my $editor (@$results){
138 my $authority = GetAuthority($editor->{authid});
139 foreach my $col ($authority->subfield('200','c')){
140 push @collections, $col;
144 @collections = sort @collections;
145 # my @collections = ( "test" );
146 my $collection = {
147 values => \@collections,
148 default => "$result",
151 $template->param(
152 index => $index,
153 collection => $collection
155 output_html_with_http_headers $input, $cookie, $template->output;