diff --git a/authorities/auth_finder.pl b/authorities/auth_finder.pl index c4e3a74664..1603fbbc31 100755 --- a/authorities/auth_finder.pl +++ b/authorities/auth_finder.pl @@ -23,10 +23,13 @@ use CGI qw ( -utf8 ); use C4::Output qw( output_html_with_http_headers ); use C4::Auth qw( get_template_and_user ); use C4::Context; +use C4::Languages; use Koha::SearchEngine::Search; use Koha::SearchEngine::QueryBuilder; use Koha::Authority::Types; +use Koha::Authorities; +use Koha::XSLT::Base; my $query = CGI->new; my $op = $query->param('op') || ''; @@ -132,6 +135,29 @@ if ( $op eq "do_search" ) { $to = ( ( $startfrom + 1 ) * $resultsperpage ); } + my $AuthorityXSLTResultsDisplay = C4::Context->preference('AuthorityXSLTResultsDisplay'); + if ( $results && $AuthorityXSLTResultsDisplay ) { + my $lang = C4::Languages::getlanguage(); + foreach my $result (@$results) { + my $authority = Koha::Authorities->find( $result->{authid} ); + next unless $authority; + + my $authtypecode = $authority->authtypecode; + my $xsl = $AuthorityXSLTResultsDisplay; + $xsl =~ s/\{langcode\}/$lang/g; + $xsl =~ s/\{authtypecode\}/$authtypecode/g; + + my $xslt_engine = Koha::XSLT::Base->new; + my $output = $xslt_engine->transform( { xml => $authority->marcxml, file => $xsl } ); + if ( $xslt_engine->err ) { + warn "XSL transformation failed ($xsl): " . $xslt_engine->err; + next; + } + + $result->{html} = $output; + } + } + $template->param( result => $results ) if $results; $template->param( orderby => $orderby, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt index 7987f0dbcd..3becbd9760 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist-auth.tt @@ -71,7 +71,13 @@ [% FOREACH resul IN result %] - [% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %] + + [% IF resul.html %] + [% resul.html | $raw %] + [% ELSE %] + [% PROCESS authresult summary=resul.summary authid=resul.authid auth_preview=1 %] + [% END %] + [% resul.summary.label | html %] [% IF resul.used > 0 %]