Bugzilla – Attachment 179021 Details for
Bug 18798
Use Koha.Preference in OPAC Reading Record
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18798: Use Koha.Preference in OPAC Reading Record
Bug-18798-Use-KohaPreference-in-OPAC-Reading-Recor.patch (text/plain), 4.65 KB, created by
Owen Leonard
on 2025-03-06 21:41:52 UTC
(
hide
)
Description:
Bug 18798: Use Koha.Preference in OPAC Reading Record
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2025-03-06 21:41:52 UTC
Size:
4.65 KB
patch
obsolete
>From 29255972391e772e7c6aaeb8a325af43d7c49819 Mon Sep 17 00:00:00 2001 >From: Aleisha Amohia <aleishaamohia@hotmail.com> >Date: Tue, 13 Jun 2017 22:15:13 +0000 >Subject: [PATCH] Bug 18798: Use Koha.Preference in OPAC Reading Record > >This patch uses the Koha.Preference plugin method for the following >sysprefs: > - OPACMySummaryHTML > - OPACAmazonCoverImages > - SyndeticsEnabled > - SyndeticsCoverImages > - SyndeticsClientCode > - GoogleJackets > - BakerTaylorEnabled > - BakerTaylorBookstoreURL > >To test confirm that enabling and disabling the above sysprefs does not >break anything. > >Sponsored-by: Catalyst IT >Signed-off-by: Owen Leonard <oleonard@myacpl.org> > >I'm not able to test Syndetics but everything else works correctly. >--- > .../bootstrap/en/modules/opac-readingrecord.tt | 10 +++++----- > opac/opac-readingrecord.pl | 14 +++----------- > 2 files changed, 8 insertions(+), 16 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt >index cb78b38bb0..a831e0ceca 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt >@@ -139,7 +139,7 @@ > </td> > <td> > [% SET normalized_isbn = biblio.normalized_isbn %] >- [% IF OPACAmazonCoverImages %] >+ [% IF Koha.Preference('OPACAmazonCoverImages') %] > [% IF normalized_isbn %] > <a href="http://www.amazon.com/gp/reader/[% normalized_isbn | uri %][% AmazonAssocTag | uri %]#reader-link" > ><img src="https://images-na.ssl-images-amazon.com/images/P/[% normalized_isbn | html %].01.THUMBZZZ.jpg" alt="" class="item-thumbnail" >@@ -149,7 +149,7 @@ > [% END %] > [% END %] > >- [% IF GoogleJackets %] >+ [% IF Koha.Preference( "GoogleJackets" ) %] > [% IF normalized_isbn %] > <div title="[% biblio.biblionumber |url %]" class="[% normalized_isbn | html %]" id="gbs-thumbnail[% loop.count | html %]"></div> > [% ELSE %] >@@ -157,13 +157,13 @@ > [% END %] > [% END %] > >- [% IF BakerTaylorEnabled || SyndeticsEnabled && SyndeticsCoverImages %] >+ [% IF Koha.Preference( "BakerTaylorEnabled" ) || Koha.Preference( "SyndeticsEnabled" ) && Koha.Preference( "SyndeticsCoverImages" ) %] > [% SET normalized_upc = biblio.normalized_upc %] > [% END %] >- [% IF BakerTaylorEnabled %] >+ [% IF Koha.Preference( "BakerTaylorEnabled" ) %] > [% bt_id = ( normalized_upc || normalized_isbn ) %] > [% IF ( bt_id ) %] >- <a href="https://[% BakerTaylorBookstoreURL | uri %][% bt_id | uri %]"><img alt="See Baker & Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" /></a> >+ <a href="https://[% Koha.Preference( "BakerTaylorBookstoreURL" ) | uri %][% bt_id | uri %]"><img alt="See Baker & Taylor" src="[% BakerTaylorImageURL | html %][% bt_id | html %]" /></a> > [% ELSE %] > <span class="no-image">No cover image available</span> > [% END %] >diff --git a/opac/opac-readingrecord.pl b/opac/opac-readingrecord.pl >index c08a8740e0..4fe1622bc1 100755 >--- a/opac/opac-readingrecord.pl >+++ b/opac/opac-readingrecord.pl >@@ -89,20 +89,12 @@ my $old_checkouts = [ > > if ( C4::Context->preference('BakerTaylorEnabled') ) { > $template->param( >- JacketImages => 1, >- BakerTaylorEnabled => 1, >- BakerTaylorImageURL => &image_url(), >- BakerTaylorLinkURL => &link_url(), >- BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'), >+ JacketImages => 1, >+ BakerTaylorImageURL => &image_url(), >+ BakerTaylorLinkURL => &link_url(), > ); > } > >-for (qw(AmazonCoverImages GoogleJackets)) { # BakerTaylorEnabled handled above >- C4::Context->preference($_) or next; >- $template->param( $_ => 1 ); >- $template->param( JacketImages => 1 ); >-} >- > my $saving_display = C4::Context->preference('OPACShowSavings'); > if ( $saving_display =~ /checkouthistory/ ) { > $template->param( savings => $patron->get_savings ); >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 18798
:
64272
|
64273
|
65955
|
82992
|
82994
|
83003
|
179021
|
179163