Bugzilla – Attachment 88514 Details for
Bug 22694
Add a method for checking OpacHiddenItems exceptions in Koha::Patron::Category
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22694: Add Koha::Patron::Category->override_hidden_items
Bug-22694-Add-KohaPatronCategory-overridehiddenite.patch (text/plain), 1.56 KB, created by
Martin Renvoize (ashimema)
on 2019-04-23 14:50:32 UTC
(
hide
)
Description:
Bug 22694: Add Koha::Patron::Category->override_hidden_items
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-04-23 14:50:32 UTC
Size:
1.56 KB
patch
obsolete
>From fafb4387a00d234b2373da53d55da3c8b48ebeba Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 23 Apr 2019 15:49:28 +0100 >Subject: [PATCH] Bug 22694: Add Koha::Patron::Category->override_hidden_items > >This patch introduces a method to determine for a given category if >patrons belonging to it override OpacHiddenItems policies. > >To test: >- Apply the patches >- Run: > $ kshell > k$ prove t/db_dependent/Koha/Patron/Category.t >=> SUCCESS: Tests pass! >- Sign off :-D > >Signed-off-by: Bin Wen <bin.wen@inlibro.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/Patron/Category.pm | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > >diff --git a/Koha/Patron/Category.pm b/Koha/Patron/Category.pm >index 261b232d33..f102c6ee80 100644 >--- a/Koha/Patron/Category.pm >+++ b/Koha/Patron/Category.pm >@@ -18,6 +18,7 @@ package Koha::Patron::Category; > use Modern::Perl; > > use Carp; >+use List::MoreUtils qw(any); > > use C4::Members::Messaging; > >@@ -254,6 +255,24 @@ sub effective_change_password { > : C4::Context->preference('OpacPasswordChange'); > } > >+=head3 override_hidden_items >+ >+ if ( $patron->category->override_hidden_items ) { >+ ... >+ } >+ >+Returns a boolean that if patrons of this category are exempt from the OPACHiddenItems policies >+ >+TODO: Remove on bug 22547 >+ >+=cut >+ >+sub override_hidden_items { >+ my ($self) = @_; >+ return any { $_ eq $self->categorycode } >+ split( /\|/, C4::Context->preference('OpacHiddenItemsExceptions') ); >+} >+ > =head2 Internal methods > > =head3 type >-- >2.20.1
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 22694
:
87908
|
87909
|
88509
|
88510
|
88513
| 88514