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 );
50 return ( $cnt, \
@results );
53 sub marc_subfield_structure_exists
{
54 my ($tagfield, $tagsubfield, $frameworkcode) = @_;
55 my $dbh = C4
::Context
->dbh;
56 my $sql = "select tagfield from marc_subfield_structure where tagfield = ? and tagsubfield = ? and frameworkcode = ?";
57 my $rows = $dbh->selectall_arrayref($sql, {}, $tagfield, $tagsubfield, $frameworkcode);
62 my $tagfield = $input->param('tagfield');
63 my $tagsubfield = $input->param('tagsubfield');
64 my $frameworkcode = $input->param('frameworkcode');
65 my $pkfield = "tagfield";
66 my $offset = $input->param('offset');
67 my $script_name = "/cgi-bin/koha/admin/marc_subfields_structure.pl";
69 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
71 template_name
=> "admin/marc_subfields_structure.tmpl",
75 flagsrequired
=> { parameters
=> 1 },
80 my $op = $input->param('op');
85 script_name
=> $script_name,
86 tagfield
=> $tagfield,
87 frameworkcode
=> $frameworkcode,
89 ); # we show only the TMPL_VAR names $op
93 script_name
=> $script_name,
94 tagfield
=> $tagfield,
95 frameworkcode
=> $frameworkcode,
97 ); # we show only the TMPL_VAR names $op
100 ################## ADD_FORM ##################################
101 # called by default. Used to create form to add or modify a record
102 if ( $op eq 'add_form' ) {
104 my $dbh = C4
::Context
->dbh;
105 my $more_subfields = $input->param("more_subfields") + 1;
107 # builds kohafield tables
109 push @kohafields, "";
110 my $sth2 = $dbh->prepare("SHOW COLUMNS from biblio");
112 while ( ( my $field ) = $sth2->fetchrow_array ) {
113 push @kohafields, "biblio." . $field;
115 $sth2 = $dbh->prepare("SHOW COLUMNS from biblioitems");
117 while ( ( my $field ) = $sth2->fetchrow_array ) {
118 if ( $field eq 'notes' ) { $field = 'bnotes'; }
119 push @kohafields, "biblioitems." . $field;
121 $sth2 = $dbh->prepare("SHOW COLUMNS from items");
123 while ( ( my $field ) = $sth2->fetchrow_array ) {
124 push @kohafields, "items." . $field;
127 # build authorised value list
129 $sth2 = $dbh->prepare("select distinct category from authorised_values");
131 my @authorised_values;
132 push @authorised_values, "";
133 while ( ( my $category ) = $sth2->fetchrow_array ) {
134 push @authorised_values, $category;
136 push( @authorised_values, "branches" );
137 push( @authorised_values, "itemtypes" );
138 push( @authorised_values, "cn_source" );
140 # build thesaurus categories list
142 $sth2 = $dbh->prepare("select authtypecode from auth_types");
146 while ( ( my $authtypecode ) = $sth2->fetchrow_array ) {
147 push @authtypes, $authtypecode;
150 # build value_builder list
151 my @value_builder = ('');
153 # read value_builder directory.
154 # 2 cases here : on CVS install, $cgidir does not need a /cgi-bin
155 # on a standard install, /cgi-bin need to be added.
156 # test one, then the other
157 my $cgidir = C4
::Context
->intranetdir . "/cgi-bin";
158 unless ( opendir( DIR
, "$cgidir/cataloguing/value_builder" ) ) {
159 $cgidir = C4
::Context
->intranetdir;
160 opendir( DIR
, "$cgidir/cataloguing/value_builder" )
161 || die "can't opendir $cgidir/value_builder: $!";
163 while ( my $line = readdir(DIR
) ) {
164 if ( $line =~ /\.pl$/ ) {
165 push( @value_builder, $line );
168 @value_builder= sort {$a cmp $b} @value_builder;
174 "select * from marc_subfield_structure where tagfield=? and frameworkcode=?"
175 ); # and tagsubfield='$tagsubfield'");
176 $sth->execute( $tagfield, $frameworkcode );
179 while ( $data = $sth->fetchrow_hashref ) {
180 my %row_data; # get a fresh hash for the row data
181 $row_data{defaultvalue
} = $data->{defaultvalue
};
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 for ( my $j = 1 ; $j <= 1 ; $j++ ) {
277 my %row_data; # get a fresh hash for the row data
278 $row_data{'new_subfield'} = 1;
279 $row_data{'subfieldcode'} = '';
281 $row_data{tab
} = CGI
::scrolling_list
(
285 [ '-1', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '10' ],
298 '10' => 'items (10)',
304 $row_data{tagsubfield
} =
305 "<input type=\"text\" name=\"tagsubfield\" value=\""
306 . $data->{'tagsubfield'}
307 . "\" size=\"1\" id=\"tagsubfield\" maxlength=\"1\" />";
308 $row_data{liblibrarian
} = "";
309 $row_data{libopac
} = "";
310 $row_data{seealso
} = "";
311 $row_data{kohafield
} = CGI
::scrolling_list
(
312 -name
=> 'kohafield',
313 -id
=> "kohafield$j",
314 -values => \
@kohafields,
319 $row_data{hidden
} = "";
320 $row_data{repeatable
} = CGI
::checkbox
(
321 -name
=> "repeatable$j",
322 -id
=> "repeatable$j",
327 $row_data{mandatory
} = CGI
::checkbox
(
328 -name
=> "mandatory$j",
329 -id
=> "mandatory$j",
334 $row_data{isurl
} = CGI
::checkbox
(
341 $row_data{value_builder
} = CGI
::scrolling_list
(
342 -name
=> "value_builder",
343 -id
=> "value_builder$j",
344 -values => \
@value_builder,
345 -default => $data->{'value_builder'},
349 $row_data{authorised_value
} = CGI
::scrolling_list
(
350 -name
=> "authorised_value",
351 -id
=> "authorised_value$j",
352 -values => \
@authorised_values,
356 $row_data{authtypes
} = CGI
::scrolling_list
(
357 -name
=> "authtypecode",
358 -id
=> "authtypecode$j",
359 -values => \
@authtypes,
363 $row_data{link} = CGI
::escapeHTML
( $data->{'link'} );
365 push( @loop_data, \
%row_data );
367 $template->param( 'use_heading_flags_p' => 1 );
368 $template->param( 'heading_edit_subfields_p' => 1 );
370 action
=> "Edit subfields",
371 tagfield
=> $tagfield,
373 more_subfields
=> $more_subfields,
374 more_tag
=> $tagfield
377 # END $OP eq ADD_FORM
378 ################## ADD_VALIDATE ##################################
379 # called by add_form, used to insert/modify data in DB
381 elsif ( $op eq 'add_validate' ) {
382 my $dbh = C4
::Context
->dbh;
383 $template->param( tagfield
=> "$input->param('tagfield')" );
384 # my $sth = $dbh->prepare(
385 # "replace marc_subfield_structure (tagfield,tagsubfield,liblibrarian,libopac,repeatable,mandatory,kohafield,tab,seealso,authorised_value,authtypecode,value_builder,hidden,isurl,frameworkcode, link,defaultvalue)
386 # values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"
388 my $sth_insert = $dbh->prepare(qq{
389 insert into marc_subfield_structure
(tagfield
,tagsubfield
,liblibrarian
,libopac
,repeatable
,mandatory
,kohafield
,tab
,seealso
,authorised_value
,authtypecode
,value_builder
,hidden
,isurl
,frameworkcode
, link,defaultvalue
)
390 values (?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
,?
)
392 my $sth_update = $dbh->prepare(qq{
393 update marc_subfield_structure set tagfield
=?
, tagsubfield
=?
, liblibrarian
=?
, libopac
=?
, repeatable
=?
, mandatory
=?
, kohafield
=?
, tab
=?
, seealso
=?
, authorised_value
=?
, authtypecode
=?
, value_builder
=?
, hidden
=?
, isurl
=?
, frameworkcode
=?
, link=?
, defaultvalue
=?
394 where tagfield
=?
and tagsubfield
=?
and frameworkcode
=?
396 my @tagsubfield = $input->param('tagsubfield');
397 my @liblibrarian = $input->param('liblibrarian');
398 my @libopac = $input->param('libopac');
399 my @kohafield = $input->param('kohafield');
400 my @tab = $input->param('tab');
401 my @seealso = $input->param('seealso');
402 my @hidden = $input->param('hidden');
403 my @authorised_values = $input->param('authorised_value');
404 my @authtypecodes = $input->param('authtypecode');
405 my @value_builder = $input->param('value_builder');
406 my @link = $input->param('link');
407 my @defaultvalue = $input->param('defaultvalue');
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];
429 if (defined($liblibrarian) && $liblibrarian ne "") {
430 unless ( C4
::Context
->config('demo') eq 1 ) {
431 if (marc_subfield_structure_exists
($tagfield, $tagsubfield, $frameworkcode)) {
432 $sth_update->execute(
457 $sth_insert->execute(
483 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
486 # END $OP eq ADD_VALIDATE
487 ################## DELETE_CONFIRM ##################################
488 # called by default form, used to confirm deletion of data in DB
490 elsif ( $op eq 'delete_confirm' ) {
491 my $dbh = C4
::Context
->dbh;
494 "select * from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
497 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
498 my $data = $sth->fetchrow_hashref;
501 liblibrarian
=> $data->{'liblibrarian'},
502 tagsubfield
=> $data->{'tagsubfield'},
503 delete_link
=> $script_name,
504 tagfield
=> $tagfield,
505 tagsubfield
=> $tagsubfield,
506 frameworkcode
=> $frameworkcode,
509 # END $OP eq DELETE_CONFIRM
510 ################## DELETE_CONFIRMED ##################################
511 # called by delete_confirm, used to effectively confirm deletion of data in DB
513 elsif ( $op eq 'delete_confirmed' ) {
514 my $dbh = C4
::Context
->dbh;
515 unless ( C4
::Context
->config('demo') eq 1 ) {
518 "delete from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?"
520 $sth->execute( $tagfield, $tagsubfield, $frameworkcode );
524 "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=marc_subfields_structure.pl?tagfield=$tagfield&frameworkcode=$frameworkcode\"></html>";
526 $template->param( tagfield
=> $tagfield );
528 # END $OP eq DELETE_CONFIRMED
529 ################## DEFAULT ##################################
532 my ( $count, $results ) = string_search
( $tagfield, $frameworkcode );
534 for ( my $i = 0; $i < $count; $i++ ) {
535 my %row_data; # get a fresh hash for the row data
536 $row_data{tagfield
} = $results->[$i]{'tagfield'};
537 $row_data{tagsubfield
} = $results->[$i]{'tagsubfield'};
538 $row_data{liblibrarian
} = $results->[$i]{'liblibrarian'};
539 $row_data{kohafield
} = $results->[$i]{'kohafield'};
540 $row_data{repeatable
} = $results->[$i]{'repeatable'};
541 $row_data{mandatory
} = $results->[$i]{'mandatory'};
542 $row_data{tab
} = $results->[$i]{'tab'};
543 $row_data{seealso
} = $results->[$i]{'seealso'};
544 $row_data{authorised_value
} = $results->[$i]{'authorised_value'};
545 $row_data{authtypecode
} = $results->[$i]{'authtypecode'};
546 $row_data{value_builder
} = $results->[$i]{'value_builder'};
547 $row_data{hidden
} = $results->[$i]{'hidden'};
548 $row_data{isurl
} = $results->[$i]{'isurl'};
549 $row_data{link} = $results->[$i]{'link'};
551 if ( $row_data{tab
} eq -1 ) {
552 $row_data{subfield_ignored
} = 1;
555 push( @loop_data, \
%row_data );
557 $template->param( loop => \
@loop_data );
559 edit_tagfield
=> $tagfield,
560 edit_frameworkcode
=> $frameworkcode
563 } #---- END $OP eq DEFAULT
565 output_html_with_http_headers
$input, $cookie, $template->output;