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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #use warnings; FIXME - Bug 2505
29 my ( $searchstring, $frameworkcode ) = @_;
30 my $dbh = C4
::Context
->dbh;
31 $searchstring =~ s/\'/\\\'/g;
32 my @data = split( ' ', $searchstring );
36 "Select * from marc_subfield_structure where (tagfield like ? and frameworkcode=?) order by tagfield"
38 $sth->execute( "$searchstring%", $frameworkcode );
43 while ( my $data = $sth->fetchrow_hashref ) {
44 push( @results, $data );
49 return ( $cnt, \
@results );
52 sub marc_subfield_structure_exists
{
53 my ($tagfield, $tagsubfield, $frameworkcode) = @_;
54 my $dbh = C4
::Context
->dbh;
55 my $sql = "select tagfield from marc_subfield_structure where tagfield = ? and tagsubfield = ? and frameworkcode = ?";
56 my $rows = $dbh->selectall_arrayref($sql, {}, $tagfield, $tagsubfield, $frameworkcode);
61 my $tagfield = $input->param('tagfield');
62 my $tagsubfield = $input->param('tagsubfield');
63 my $frameworkcode = $input->param('frameworkcode');
64 my $pkfield = "tagfield";
65 my $offset = $input->param('offset');
66 my $script_name = "/cgi-bin/koha/admin/marc_subfields_structure.pl";
68 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
70 template_name
=> "admin/marc_subfields_structure.tmpl",
74 flagsrequired
=> { parameters
=> 'parameters_remaining_permissions' },
79 my $op = $input->param('op');
84 script_name
=> $script_name,
85 tagfield
=> $tagfield,
86 frameworkcode
=> $frameworkcode,
88 ); # we show only the TMPL_VAR names $op
92 script_name
=> $script_name,
93 tagfield
=> $tagfield,
94 frameworkcode
=> $frameworkcode,
96 ); # we show only the TMPL_VAR names $op
99 ################## ADD_FORM ##################################
100 # called by default. Used to create form to add or modify a record
101 if ( $op eq 'add_form' ) {
103 my $dbh = C4
::Context
->dbh;
104 my $more_subfields = $input->param("more_subfields") + 1;
106 # builds kohafield tables
108 push @kohafields, "";
109 my $sth2 = $dbh->prepare("SHOW COLUMNS from biblio");
111 while ( ( my $field ) = $sth2->fetchrow_array ) {
112 push @kohafields, "biblio." . $field;
114 $sth2 = $dbh->prepare("SHOW COLUMNS from biblioitems");
116 while ( ( my $field ) = $sth2->fetchrow_array ) {
117 if ( $field eq 'notes' ) { $field = 'bnotes'; }
118 push @kohafields, "biblioitems." . $field;
120 $sth2 = $dbh->prepare("SHOW COLUMNS from items");
122 while ( ( my $field ) = $sth2->fetchrow_array ) {
123 push @kohafields, "items." . $field;
126 # build authorised value list
128 $sth2 = $dbh->prepare("select distinct category from authorised_values");
130 my @authorised_values;
131 push @authorised_values, "";
132 while ( ( my $category ) = $sth2->fetchrow_array ) {
133 push @authorised_values, $category;
135 push( @authorised_values, "branches" );
136 push( @authorised_values, "itemtypes" );
137 push( @authorised_values, "cn_source" );
139 # build thesaurus categories list
141 $sth2 = $dbh->prepare("select authtypecode from auth_types");
145 while ( ( my $authtypecode ) = $sth2->fetchrow_array ) {
146 push @authtypes, $authtypecode;
149 # build value_builder list
150 my @value_builder = ('');
152 # read value_builder directory.
153 # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
154 # on a standard install, /cgi-bin need to be added.
155 # test one, then the other
156 my $cgidir = C4
::Context
->intranetdir . "/cgi-bin";
157 unless ( opendir( DIR
, "$cgidir/cataloguing/value_builder" ) ) {
158 $cgidir = C4
::Context
->intranetdir;
159 opendir( DIR
, "$cgidir/cataloguing/value_builder" )
160 || die "can't opendir $cgidir/value_builder: $!";
162 while ( my $line = readdir(DIR
) ) {
163 if ( $line =~ /\.pl$/ ) {
164 push( @value_builder, $line );
167 @value_builder= sort {$a cmp $b} @value_builder;
173 "select * from marc_subfield_structure where tagfield=? and frameworkcode=?"
174 ); # and tagsubfield='$tagsubfield'");
175 $sth->execute( $tagfield, $frameworkcode );
178 while ( $data = $sth->fetchrow_hashref ) {
179 my %row_data; # get a fresh hash for the row data
180 $row_data{defaultvalue
} = $data->{defaultvalue
};
181 $row_data{maxlength
} = $data->{maxlength
};
182 $row_data{tab
} = CGI
::scrolling_list
(
186 [ '-1', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ],
199 '10' => 'items (10)',
201 -default => $data->{'tab'},
205 $row_data{tagsubfield
} =
206 $data->{'tagsubfield'}
207 . "<input type=\"hidden\" name=\"tagsubfield\" value=\""
208 . $data->{'tagsubfield'}
209 . "\" id=\"tagsubfield\" />";
210 $row_data{subfieldcode
} = $data->{'tagsubfield'} eq '@'?
'_':$data->{'tagsubfield'};
211 $row_data{urisubfieldcode
} = $row_data{subfieldcode
} eq '%' ?
'pct' : $row_data{subfieldcode
};
212 $row_data{liblibrarian
} = CGI
::escapeHTML
( $data->{'liblibrarian'} );
213 $row_data{libopac
} = CGI
::escapeHTML
( $data->{'libopac'} );
214 $row_data{seealso
} = CGI
::escapeHTML
( $data->{'seealso'} );
215 $row_data{kohafield
} = CGI
::scrolling_list
(
216 -name
=> "kohafield",
217 -id
=> "kohafield$i",
218 -values => \
@kohafields,
219 -default => "$data->{'kohafield'}",
223 $row_data{authorised_value
} = CGI
::scrolling_list
(
224 -name
=> "authorised_value",
225 -id
=> "authorised_value$i",
226 -values => \
@authorised_values,
227 -default => $data->{'authorised_value'},
231 $row_data{value_builder
} = CGI
::scrolling_list
(
232 -name
=> "value_builder",
233 -id
=> "value_builder$i",
234 -values => \
@value_builder,
235 -default => $data->{'value_builder'},
239 $row_data{authtypes
} = CGI
::scrolling_list
(
240 -name
=> "authtypecode",
241 -id
=> "authtypecode$i",
242 -values => \
@authtypes,
243 -default => $data->{'authtypecode'},
247 $row_data{repeatable
} = CGI
::checkbox
(
248 -name
=> "repeatable$i",
249 -checked
=> $data->{'repeatable'} ?
'checked' : '',
252 -id
=> "repeatable$i"
254 $row_data{mandatory
} = CGI
::checkbox
(
255 -name
=> "mandatory$i",
256 -checked
=> $data->{'mandatory'} ?
'checked' : '',
261 $row_data{hidden
} = CGI
::escapeHTML
( $data->{hidden
} );
262 $row_data{isurl
} = CGI
::checkbox
(
265 -checked
=> $data->{'isurl'} ?
'checked' : '',
270 $row_data{link} = CGI
::escapeHTML
( $data->{'link'} );
271 push( @loop_data, \
%row_data );
275 # add more_subfields empty lines for add if needed
276 my %row_data; # get a fresh hash for the row data
277 $row_data{'new_subfield'} = 1;
278 $row_data{'subfieldcode'} = '';
280 $row_data{tab
} = CGI
::scrolling_list
(
284 [ '-1', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ],
297 '10' => 'items (10)',
303 $row_data{tagsubfield
} =
304 "<input type=\"text\" name=\"tagsubfield\" value=\""
305 . $data->{'tagsubfield'}
306 . "\" size=\"1\" id=\"tagsubfield\" maxlength=\"1\" />";
307 $row_data{liblibrarian
} = "";
308 $row_data{libopac
} = "";
309 $row_data{seealso
} = "";
310 $row_data{kohafield
} = CGI
::scrolling_list
(
311 -name
=> 'kohafield',
312 -id
=> "kohafield$i",
313 -values => \
@kohafields,
318 $row_data{hidden
} = "";
319 $row_data{repeatable
} = CGI
::checkbox
(
320 -name
=> "repeatable$i",
321 -id
=> "repeatable$i",
326 $row_data{mandatory
} = CGI
::checkbox
(
327 -name
=> "mandatory$i",
328 -id
=> "mandatory$i",
333 $row_data{isurl
} = CGI
::checkbox
(
340 $row_data{value_builder
} = CGI
::scrolling_list
(
341 -name
=> "value_builder",
342 -id
=> "value_builder$i",
343 -values => \
@value_builder,
344 -default => $data->{'value_builder'},
348 $row_data{authorised_value
} = CGI
::scrolling_list
(
349 -name
=> "authorised_value",
350 -id
=> "authorised_value$i",
351 -values => \
@authorised_values,
355 $row_data{authtypes
} = CGI
::scrolling_list
(
356 -name
=> "authtypecode",
357 -id
=> "authtypecode$i",
358 -values => \
@authtypes,
362 $row_data{link} = CGI
::escapeHTML
( $data->{'link'} );
364 push( @loop_data, \
%row_data );
366 $template->param( 'use_heading_flags_p' => 1 );
367 $template->param( 'heading_edit_subfields_p' => 1 );
369 action
=> "Edit subfields",
370 tagfield
=> $tagfield,
372 more_subfields
=> $more_subfields,
373 more_tag
=> $tagfield
376 # END $OP eq ADD_FORM
377 ################## ADD_VALIDATE ##################################
378 # called by add_form, used to insert/modify data in DB
380 elsif ( $op eq 'add_validate' ) {
381 my $dbh = C4
::Context
->dbh;
382 $template->param( tagfield
=> "$input->param('tagfield')" );
383 # my $sth = $dbh->prepare(
384 # "replace marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl,frameworkcode, link,defaultvalue)
385 # values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
387 my $sth_insert = $dbh->prepare(qq{
388 insert into marc_subfield_structure
(tagfield
,tagsubfield
,liblibrarian
,libopac
,repeatable
,mandatory
,kohafield
,tab
,seealso
,authorised_value
,authtypecode
,value_builder
,hidden
,isurl
,frameworkcode
, link,defaultvalue
,maxlength
)
389 values (?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
)
391 my $sth_update = $dbh->prepare(qq{
392 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
=?
393 where tagfield
=?
and tagsubfield
=?
and frameworkcode
=?
395 my @tagsubfield = $input->param('tagsubfield');
396 my @liblibrarian = $input->param('liblibrarian');
397 my @libopac = $input->param('libopac');
398 my @kohafield = $input->param('kohafield');
399 my @tab = $input->param('tab');
400 my @seealso = $input->param('seealso');
401 my @hidden = $input->param('hidden');
402 my @authorised_values = $input->param('authorised_value');
403 my @authtypecodes = $input->param('authtypecode');
404 my @value_builder = $input->param('value_builder');
405 my @link = $input->param('link');
406 my @defaultvalue = $input->param('defaultvalue');
407 my @maxlength = $input->param('maxlength');
409 for ( my $i = 0 ; $i <= $#tagsubfield ; $i++ ) {
410 my $tagfield = $input->param('tagfield');
411 my $tagsubfield = $tagsubfield[$i];
412 $tagsubfield = "@" unless $tagsubfield ne '';
413 $tagsubfield = "@" if $tagsubfield eq '_';
414 my $liblibrarian = $liblibrarian[$i];
415 my $libopac = $libopac[$i];
416 my $repeatable = $input->param("repeatable$i") ?
1 : 0;
417 my $mandatory = $input->param("mandatory$i") ?
1 : 0;
418 my $kohafield = $kohafield[$i];
420 my $seealso = $seealso[$i];
421 my $authorised_value = $authorised_values[$i];
422 my $authtypecode = $authtypecodes[$i];
423 my $value_builder = $value_builder[$i];
424 my $hidden = $hidden[$i]; #input->param("hidden$i");
425 my $isurl = $input->param("isurl$i") ?
1 : 0;
426 my $link = $link[$i];
427 my $defaultvalue = $defaultvalue[$i];
428 my $maxlength = $maxlength[$i];
430 if (defined($liblibrarian) && $liblibrarian ne "") {
431 unless ( C4
::Context
->config('demo') eq 1 ) {
432 if (marc_subfield_structure_exists
($tagfield, $tagsubfield, $frameworkcode)) {
433 $sth_update->execute(
459 $sth_insert->execute(
486 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
489 # END $OP eq ADD_VALIDATE
490 ################## DELETE_CONFIRM ##################################
491 # called by default form, used to confirm deletion of data in DB
493 elsif ( $op eq 'delete_confirm' ) {
494 my $dbh = C4
::Context
->dbh;
497 "select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
500 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
501 my $data = $sth->fetchrow_hashref;
504 liblibrarian
=> $data->{'liblibrarian'},
505 tagsubfield
=> $data->{'tagsubfield'},
506 delete_link
=> $script_name,
507 tagfield
=> $tagfield,
508 tagsubfield
=> $tagsubfield,
509 frameworkcode
=> $frameworkcode,
512 # END $OP eq DELETE_CONFIRM
513 ################## DELETE_CONFIRMED ##################################
514 # called by delete_confirm, used to effectively confirm deletion of data in DB
516 elsif ( $op eq 'delete_confirmed' ) {
517 my $dbh = C4
::Context
->dbh;
518 unless ( C4
::Context
->config('demo') eq 1 ) {
521 "delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
523 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
527 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
529 $template->param( tagfield
=> $tagfield );
531 # END $OP eq DELETE_CONFIRMED
532 ################## DEFAULT ##################################
535 my ( $count, $results ) = string_search
( $tagfield, $frameworkcode );
537 for ( my $i = 0; $i < $count; $i++ ) {
538 my %row_data; # get a fresh hash for the row data
539 $row_data{tagfield
} = $results->[$i]{'tagfield'};
540 $row_data{tagsubfield
} = $results->[$i]{'tagsubfield'};
541 $row_data{liblibrarian
} = $results->[$i]{'liblibrarian'};
542 $row_data{kohafield
} = $results->[$i]{'kohafield'};
543 $row_data{repeatable
} = $results->[$i]{'repeatable'};
544 $row_data{mandatory
} = $results->[$i]{'mandatory'};
545 $row_data{tab
} = $results->[$i]{'tab'};
546 $row_data{seealso
} = $results->[$i]{'seealso'};
547 $row_data{authorised_value
} = $results->[$i]{'authorised_value'};
548 $row_data{authtypecode
} = $results->[$i]{'authtypecode'};
549 $row_data{value_builder
} = $results->[$i]{'value_builder'};
550 $row_data{hidden
} = $results->[$i]{'hidden'};
551 $row_data{isurl
} = $results->[$i]{'isurl'};
552 $row_data{link} = $results->[$i]{'link'};
554 if ( $row_data{tab
} eq -1 ) {
555 $row_data{subfield_ignored
} = 1;
558 push( @loop_data, \
%row_data );
560 $template->param( loop => \
@loop_data );
562 edit_tagfield
=> $tagfield,
563 edit_frameworkcode
=> $frameworkcode
566 } #---- END $OP eq DEFAULT
568 output_html_with_http_headers
$input, $cookie, $template->output;