Bug 9058 - Norwegian default for CalendarFirstDayOfWeek
[koha.git] / authorities / blinddetail-biblio-search.pl
blob6b3d122b8776e5c73792f69ec46b41ba0239f39d
1 #!/usr/bin/perl
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
10 # version.
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.
20 =head1 NAME
22 blinddetail-biblio-search.pl : script to show an authority in MARC format
24 =head1 SYNOPSIS
26 =cut
28 =head1 DESCRIPTION
30 This script needs an authid
32 It shows the authority in a (nice) MARC format depending on authority MARC
33 parameters tables.
35 =head1 FUNCTIONS
37 =cut
39 use strict;
40 use warnings;
42 use C4::AuthoritiesMarc;
43 use C4::Auth;
44 use C4::Context;
45 use C4::Output;
46 use CGI;
47 use MARC::Record;
48 use C4::Koha;
50 my $query = new CGI;
52 my $dbh = C4::Context->dbh;
54 my $authid = $query->param('authid');
55 my $index = $query->param('index');
56 my $tagid = $query->param('tagid');
57 my $relationship = $query->param('relationship');
58 my $authtypecode = &GetAuthTypeCode($authid);
59 my $tagslib = &GetTagsLabels( 1, $authtypecode );
61 my $auth_type = GetAuthType($authtypecode);
62 my $record;
63 if ($authid) {
64 $record = GetAuthority($authid);
67 # open template
68 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
70 template_name => "authorities/blinddetail-biblio-search.tmpl",
71 query => $query,
72 type => "intranet",
73 authnotrequired => 0,
74 flagsrequired => { editcatalogue => 'edit_catalogue' },
78 # fill arrays
79 my @subfield_loop;
80 if ($authid) {
81 my @fields = $record->field( $auth_type->{auth_tag_to_report} );
82 my $repet = ($query->param('repet') || 1) - 1;
83 my $field = $fields[$repet];
85 # Get all values for each distinct subfield
86 my %subfields;
87 for ( $field->subfields ) {
88 next if $_->[0] == "9"; # $9 will be set with authid value
89 my $letter = $_->[0];
90 next if defined $subfields{$letter};
91 my @values = $field->subfield($letter);
92 $subfields{$letter} = \@values;
95 # Add all subfields to the subfield_loop
96 for( keys %subfields ) {
97 my $letter = $_ || '@';
98 push( @subfield_loop, {marc_subfield => $letter, marc_values => $subfields{$_}} );
101 push( @subfield_loop, { marc_subfield => 'w', marc_values => $relationship } ) if ( $relationship );
103 else {
104 # authid is empty => the user want to empty the entry.
105 $template->param( "clear" => 1 );
108 # Extract the tag number from the index
109 my $tag_number = $index;
110 $tag_number =~ s/^tag_(\d*)_.*$/$1/;
112 $template->param(
113 authid => $authid ? $authid : "",
114 index => $index,
115 tagid => $tagid,
116 SUBFIELD_LOOP => \@subfield_loop,
117 tag_number => $tag_number,
120 output_html_with_http_headers $query, $cookie, $template->output;