3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use Koha
::Authority
::Types
;
27 use Koha
::AuthorisedValueCategories
;
29 use List
::MoreUtils
qw( uniq );
32 my ( $searchstring, $frameworkcode ) = @_;
33 my $dbh = C4
::Context
->dbh;
34 $searchstring =~ s/\'/\\\'/g;
35 my @data = split( ' ', $searchstring );
39 "Select * from marc_subfield_structure where (tagfield like ? and frameworkcode=?) order by tagfield"
41 $sth->execute( "$searchstring%", $frameworkcode );
46 while ( my $data = $sth->fetchrow_hashref ) {
47 push( @results, $data );
52 return ( $cnt, \
@results );
55 sub marc_subfield_structure_exists
{
56 my ($tagfield, $tagsubfield, $frameworkcode) = @_;
57 my $dbh = C4
::Context
->dbh;
58 my $sql = "select tagfield from marc_subfield_structure where tagfield = ? and tagsubfield = ? and frameworkcode = ?";
59 my $rows = $dbh->selectall_arrayref($sql, {}, $tagfield, $tagsubfield, $frameworkcode);
64 my $tagfield = $input->param('tagfield');
65 my $tagsubfield = $input->param('tagsubfield');
66 my $frameworkcode = $input->param('frameworkcode');
67 my $pkfield = "tagfield";
68 my $offset = $input->param('offset');
69 $offset = 0 if not defined $offset or $offset < 0;
70 my $script_name = "/cgi-bin/koha/admin/marc_subfields_structure.pl";
72 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
74 template_name
=> "admin/marc_subfields_structure.tt",
78 flagsrequired
=> { parameters
=> 'manage_marc_frameworks' },
82 my $cache = Koha
::Caches
->get_instance();
84 my $op = $input->param('op') || "";
89 script_name
=> $script_name,
90 tagfield
=> $tagfield,
91 frameworkcode
=> $frameworkcode,
93 ); # we show only the TMPL_VAR names $op
97 script_name
=> $script_name,
98 tagfield
=> $tagfield,
99 frameworkcode
=> $frameworkcode,
101 ); # we show only the TMPL_VAR names $op
104 ################## ADD_FORM ##################################
105 # called by default. Used to create form to add or modify a record
106 if ( $op eq 'add_form' ) {
107 my $dbh = C4
::Context
->dbh;
109 # builds kohafield tables
111 push @kohafields, "";
112 my $sth2 = $dbh->prepare("SHOW COLUMNS from biblio");
114 while ( ( my $field ) = $sth2->fetchrow_array ) {
115 push @kohafields, "biblio." . $field;
117 $sth2 = $dbh->prepare("SHOW COLUMNS from biblioitems");
119 while ( ( my $field ) = $sth2->fetchrow_array ) {
120 if ( $field eq 'notes' ) { $field = 'bnotes'; }
121 push @kohafields, "biblioitems." . $field;
123 $sth2 = $dbh->prepare("SHOW COLUMNS from items");
125 while ( ( my $field ) = $sth2->fetchrow_array ) {
126 push @kohafields, "items." . $field;
129 # build authorised value list
131 $sth2 = $dbh->prepare("select distinct category from authorised_values");
133 my @av_cat = Koha
::AuthorisedValueCategories
->search;
134 my @authorised_values = map { $_->category_name } @av_cat;
136 # build thesaurus categories list
137 my @authtypes = uniq
( "", map { $_->authtypecode } Koha
::Authority
::Types
->search );
139 # build value_builder list
140 my @value_builder = ('');
142 # read value_builder directory.
143 # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
144 # on a standard install, /cgi-bin need to be added.
145 # test one, then the other
146 my $cgidir = C4
::Context
->config('intranetdir') . "/cgi-bin";
147 unless ( opendir( DIR
, "$cgidir/cataloguing/value_builder" ) ) {
148 $cgidir = C4
::Context
->config('intranetdir');
149 opendir( DIR
, "$cgidir/cataloguing/value_builder" )
150 || die "can't opendir $cgidir/value_builder: $!";
152 while ( my $line = readdir(DIR
) ) {
153 if ( $line =~ /\.pl$/ &&
154 $line !~ /EXAMPLE\.pl$/ ) { # documentation purposes
155 push( @value_builder, $line );
158 @value_builder= sort {$a cmp $b} @value_builder;
164 "select * from marc_subfield_structure where tagfield=? and frameworkcode=?"
165 ); # and tagsubfield='$tagsubfield'");
166 $sth->execute( $tagfield, $frameworkcode );
169 while ( my $data = $sth->fetchrow_hashref ) {
170 my %row_data; # get a fresh hash for the row data
171 $row_data{defaultvalue
} = $data->{defaultvalue
};
172 $row_data{maxlength
} = $data->{maxlength
};
173 $row_data{tab
} = $data->{tab
};
174 $row_data{tagsubfield
} = $data->{tagsubfield
};
175 $row_data{subfieldcode
} = $data->{'tagsubfield'};
176 $row_data{urisubfieldcode
} = $row_data{subfieldcode
} eq '%' ?
'pct' : $row_data{subfieldcode
};
177 $row_data{liblibrarian
} = $data->{'liblibrarian'};
178 $row_data{libopac
} = $data->{'libopac'};
179 $row_data{seealso
} = $data->{'seealso'};
180 $row_data{kohafields
} = \
@kohafields;
181 $row_data{kohafield
} = $data->{kohafield
};
182 $row_data{authorised_values
} = \
@authorised_values;
183 $row_data{authorised_value
} = $data->{authorised_value
};
184 $row_data{value_builders
} = \
@value_builder;
185 $row_data{value_builder
} = $data->{'value_builder'};
186 $row_data{authtypes
} = \
@authtypes;
187 $row_data{authtypecode
} = $data->{'authtypecode'};
188 $row_data{repeatable
} = $data->{repeatable
};
189 $row_data{mandatory
} = $data->{mandatory
};
190 $row_data{hidden
} = $data->{hidden
};
191 $row_data{isurl
} = $data->{isurl
};
193 $row_data{link} = $data->{'link'};
194 push( @loop_data, \
%row_data );
198 # Add a new row for the "New" tab
199 my %row_data; # get a fresh hash for the row data
200 $row_data{'new_subfield'} = 1;
201 $row_data{'subfieldcode'} = '';
202 $row_data{'maxlength'} = 9999;
203 $row_data{tab
} = -1; #ignore
204 $row_data{tagsubfield
} = "";
205 $row_data{liblibrarian
} = "";
206 $row_data{libopac
} = "";
207 $row_data{seealso
} = "";
208 $row_data{hidden
} = "";
209 $row_data{repeatable
} = 0;
210 $row_data{mandatory
} = 0;
211 $row_data{isurl
} = 0;
212 $row_data{kohafields
} = \
@kohafields;
213 $row_data{authorised_values
} = \
@authorised_values;
214 $row_data{value_builders
} = \
@value_builder;
215 $row_data{authtypes
} = \
@authtypes;
216 $row_data{link} = "";
218 push( @loop_data, \
%row_data );
220 $template->param( 'use_heading_flags_p' => 1 );
221 $template->param( 'heading_edit_subfields_p' => 1 );
223 action
=> "Edit subfields",
224 tagfield
=> $tagfield,
226 more_tag
=> $tagfield
229 # END $OP eq ADD_FORM
230 ################## ADD_VALIDATE ##################################
231 # called by add_form, used to insert/modify data in DB
233 elsif ( $op eq 'add_validate' ) {
234 my $dbh = C4
::Context
->dbh;
235 $template->param( tagfield
=> "$input->param('tagfield')" );
236 my $sth_update = $dbh->prepare(qq{
237 update marc_subfield_structure set tagfield
=?
, tagsubfield
=?
, liblibrarian
=?
, libopac
=?
, repeatable
=?
, mandatory
=?
, kohafield
=?
, tab
=?
, seealso
=?
, authorised_value
=?
, authtypecode
=?
, value_builder
=?
, hidden
=?
, isurl
=?
, frameworkcode
=?
, link=?
, defaultvalue
=?
, maxlength
=?
238 where tagfield
=?
and tagsubfield
=?
and frameworkcode
=?
240 my @tagsubfield = $input->multi_param('tagsubfield');
241 my @liblibrarian = $input->multi_param('liblibrarian');
242 my @libopac = $input->multi_param('libopac');
243 my @kohafield = $input->multi_param('kohafield');
244 my @tab = $input->multi_param('tab');
245 my @seealso = $input->multi_param('seealso');
246 my @hidden = $input->multi_param('hidden');
247 my @authorised_values = $input->multi_param('authorised_value');
248 my @authtypecodes = $input->multi_param('authtypecode');
249 my @value_builder = $input->multi_param('value_builder');
250 my @link = $input->multi_param('link');
251 my @defaultvalue = $input->multi_param('defaultvalue');
252 my @maxlength = $input->multi_param('maxlength');
254 for ( my $i = 0 ; $i <= $#tagsubfield ; $i++ ) {
255 my $tagfield = $input->param('tagfield');
256 my $tagsubfield = $tagsubfield[$i];
257 $tagsubfield = "@" unless $tagsubfield ne '';
258 my $liblibrarian = $liblibrarian[$i];
259 my $libopac = $libopac[$i];
260 my $repeatable = $input->param("repeatable$i") ?
1 : 0;
261 my $mandatory = $input->param("mandatory$i") ?
1 : 0;
262 my $kohafield = $kohafield[$i];
264 my $seealso = $seealso[$i];
265 my $authorised_value = $authorised_values[$i];
266 my $authtypecode = $authtypecodes[$i];
267 my $value_builder = $value_builder[$i];
268 my $hidden = $hidden[$i]; #input->param("hidden$i");
269 my $isurl = $input->param("isurl$i") ?
1 : 0;
270 my $link = $link[$i];
271 my $defaultvalue = $defaultvalue[$i];
272 my $maxlength = $maxlength[$i] ?
$maxlength[$i] : 9999;
274 if (defined($liblibrarian) && $liblibrarian ne "") {
275 if (marc_subfield_structure_exists
($tagfield, $tagsubfield, $frameworkcode)) {
276 $sth_update->execute(
302 if( $frameworkcode ne q{} ) {
303 # BZ 19096: Overwrite kohafield from Default when adding a new record
304 my $rec = Koha
::MarcSubfieldStructures
->find( q{}, $tagfield, $tagsubfield );
305 $kohafield = $rec->kohafield if $rec;
307 Koha
::MarcSubfieldStructure
->new(
309 tagfield
=> $tagfield,
310 tagsubfield
=> $tagsubfield,
311 liblibrarian
=> $liblibrarian,
313 repeatable
=> $repeatable,
314 mandatory
=> $mandatory,
315 kohafield
=> $kohafield,
318 authorised_value
=> $authorised_value,
319 authtypecode
=> $authtypecode,
320 value_builder
=> $value_builder,
323 frameworkcode
=> $frameworkcode,
325 defaultvalue
=> $defaultvalue,
326 maxlength
=> $maxlength,
333 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
334 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
335 $cache->clear_from_cache("default_value_for_mod_marc-");
336 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
338 print $input->redirect("/cgi-bin/koha/admin/marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode");
341 # END $OP eq ADD_VALIDATE
342 ################## DELETE_CONFIRM ##################################
343 # called by default form, used to confirm deletion of data in DB
345 elsif ( $op eq 'delete_confirm' ) {
346 my $dbh = C4
::Context
->dbh;
349 "select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
352 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
353 my $data = $sth->fetchrow_hashref;
356 liblibrarian
=> $data->{'liblibrarian'},
357 tagsubfield
=> $data->{'tagsubfield'},
358 delete_link
=> $script_name,
359 tagfield
=> $tagfield,
360 tagsubfield
=> $tagsubfield,
361 frameworkcode
=> $frameworkcode,
364 # END $OP eq DELETE_CONFIRM
365 ################## DELETE_CONFIRMED ##################################
366 # called by delete_confirm, used to effectively confirm deletion of data in DB
368 elsif ( $op eq 'delete_confirmed' ) {
369 my $dbh = C4
::Context
->dbh;
372 "delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
374 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
376 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
377 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
378 $cache->clear_from_cache("default_value_for_mod_marc-");
379 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
380 print $input->redirect("/cgi-bin/koha/admin/marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode");
383 # END $OP eq DELETE_CONFIRMED
384 ################## DEFAULT ##################################
387 my ( $count, $results ) = string_search
( $tagfield, $frameworkcode );
389 for ( my $i = 0; $i < $count; $i++ ) {
390 my %row_data; # get a fresh hash for the row data
391 $row_data{tagfield
} = $results->[$i]{'tagfield'};
392 $row_data{tagsubfield
} = $results->[$i]{'tagsubfield'};
393 $row_data{liblibrarian
} = $results->[$i]{'liblibrarian'};
394 $row_data{kohafield
} = $results->[$i]{'kohafield'};
395 $row_data{repeatable
} = $results->[$i]{'repeatable'};
396 $row_data{mandatory
} = $results->[$i]{'mandatory'};
397 $row_data{tab
} = $results->[$i]{'tab'};
398 $row_data{seealso
} = $results->[$i]{'seealso'};
399 $row_data{authorised_value
} = $results->[$i]{'authorised_value'};
400 $row_data{authtypecode
} = $results->[$i]{'authtypecode'};
401 $row_data{value_builder
} = $results->[$i]{'value_builder'};
402 $row_data{hidden
} = $results->[$i]{'hidden'};
403 $row_data{isurl
} = $results->[$i]{'isurl'};
404 $row_data{link} = $results->[$i]{'link'};
406 if ( $row_data{tab
} eq -1 ) {
407 $row_data{subfield_ignored
} = 1;
410 push( @loop_data, \
%row_data );
412 $template->param( loop => \
@loop_data );
414 edit_tagfield
=> $tagfield,
415 edit_frameworkcode
=> $frameworkcode
418 } #---- END $OP eq DEFAULT
420 output_html_with_http_headers
$input, $cookie, $template->output;