X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;ds=sidebyside;f=authorities%2Fdetail.pl;h=1ba280d38a202630d1708732fdd1d29584cbf2f8;hb=66aacace086f16d2eca860cc6c2aa164866d0488;hp=57e07373ecb8906882aeb8693c81a5e26d76408b;hpb=ab44e3009ae0ea6f44169755a05c5dc6aded61ac;p=koha.git diff --git a/authorities/detail.pl b/authorities/detail.pl index 57e07373ec..1ba280d38a 100755 --- a/authorities/detail.pl +++ b/authorities/detail.pl @@ -4,18 +4,18 @@ # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . =head1 NAME @@ -44,13 +44,16 @@ use C4::AuthoritiesMarc; use C4::Auth; use C4::Context; use C4::Output; -use CGI; +use CGI qw ( -utf8 ); use MARC::Record; use C4::Koha; +use Koha::Authorities; + +use Koha::Authority::Types; our ($tagslib); -sub build_tabs ($$$$$) { +sub build_tabs { my ( $template, $record, $dbh, $encoding,$input ) = @_; # fill arrays @@ -106,7 +109,7 @@ sub build_tabs ($$$$$) { my @subf=$field->subfields; # loop through each subfield for my $i (0..$#subf) { - $subf[$i][0] = "@" unless $subf[$i][0]; + $subf[$i][0] = "@" unless defined $subf[$i][0]; next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{tab} @@ -161,32 +164,24 @@ my $query=new CGI; my $dbh=C4::Context->dbh; # open template -my ($template, $loggedinuser, $cookie) - = get_template_and_user({template_name => "authorities/detail.tmpl", - query => $query, - type => "intranet", - authnotrequired => 0, - flagsrequired => {catalogue => 1}, - debug => 1, - }); +my ($template, $loggedinuser, $cookie) = get_template_and_user( + { + template_name => "authorities/detail.tt", + query => $query, + type => "intranet", + authnotrequired => 0, + flagsrequired => { catalogue => 1 }, + debug => 1, + } +); my $authid = $query->param('authid'); -# Using default authtypecode, so all fields are seen -my $authtypecode = ''; +my $authtypecode = Koha::Authorities->find($authid)->authtypecode; $tagslib = &GetTagsLabels(1,$authtypecode); # Build list of authtypes for showing them -my $authtypes = getauthtypes; -my @authtypesloop; - -foreach my $thisauthtype (sort { $authtypes->{$b} cmp $authtypes->{$a} } keys %$authtypes) { - my %row =(value => $thisauthtype, - selected => $thisauthtype eq $authtypecode, - authtypetext => $authtypes->{$thisauthtype}{'authtypetext'}, - ); - push @authtypesloop, \%row; -} +my $authority_types = Koha::Authority::Types->search({}, { order_by => ['authtypecode']}); my $record=GetAuthority($authid); @@ -194,33 +189,14 @@ if (not defined $record) { # authid invalid $template->param ( errauthid => $authid, unknownauthid => 1, - authtypesloop => \@authtypesloop ); + authority_types => $authority_types, ); output_html_with_http_headers $query, $cookie, $template->output; exit; } if (C4::Context->preference("AuthDisplayHierarchy")){ - my $trees=BuildUnimarcHierarchies($authid); - my @trees = split /;/,$trees ; - push @trees,$trees unless (@trees); - my @loophierarchies; - foreach my $tree (@trees){ - my @tree=split /,/,$tree; - push @tree,$tree unless (@tree); - my $cnt=0; - my @loophierarchy; - foreach my $element (@tree){ - my $elementdata = GetAuthority($element); - $record= $elementdata if ($authid==$element); - push @loophierarchy, BuildUnimarcHierarchy($elementdata,"child".$cnt, $authid); - $cnt++; - } - push @loophierarchies, { 'loopelement' =>\@loophierarchy}; - } - $template->param( - 'displayhierarchy' =>C4::Context->preference("AuthDisplayHierarchy"), - 'loophierarchies' =>\@loophierarchies, - ); + $template->{VARS}->{'displayhierarchy'} = C4::Context->preference("AuthDisplayHierarchy"); + $template->{VARS}->{'loophierarchies'} = GenerateHierarchy($authid); } my $count = CountUsage($authid); @@ -236,11 +212,15 @@ chop $biblio_fields; build_tabs ($template, $record, $dbh,"",$query); -$template->param(authid => $authid, - count => $count, - biblio_fields => $biblio_fields, - authtypetext => $authtypes->{$authtypecode}{'authtypetext'}, - authtypesloop => \@authtypesloop, - ); +$template->param( + authid => $authid, + count => $count, + biblio_fields => $biblio_fields, + authtypetext => $authority_types->find($authtypecode)->authtypetext, + authtypecode => $authtypecode, + authority_types => $authority_types, +); + +$template->{VARS}->{marcflavour} = C4::Context->preference("marcflavour"); output_html_with_http_headers $query, $cookie, $template->output;