[Koha-patches] [PATCH] Bug 1172: Added OPACPatronDetails system preference

Nicole Engard nengard at gmail.com
Tue Aug 25 18:03:59 CEST 2009


>From db81b87bae7472f2dc8e47d25ecb4a662002cd27 Mon Sep 17 00:00:00 2001
From: Nicole Engard <nengard at gmail.com>
Date: Tue, 25 Aug 2009 08:01:56 -0400
Subject: [PATCH] Bug 1172: Added OPACPatronDetails system preference
Content-Type: text/plain; charset="utf-8"

This patch allows library staff to disable the patron details
tab on the OPAC.
---
 C4/Auth.pm                                        |    1 +
 admin/systempreferences.pl                        |    1 +
 installer/data/mysql/en/mandatory/sysprefs.sql    |    1 +
 installer/data/mysql/updatedatabase.pl            |    8 ++++++++
 koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc |    2 ++
 5 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/C4/Auth.pm b/C4/Auth.pm
index 871c124..b3ed5c7 100644
--- a/C4/Auth.pm
+++ b/C4/Auth.pm
@@ -350,6 +350,7 @@ sub get_template_and_user {
             OpacMainUserBlock         => "" .
C4::Context->preference("OpacMainUserBlock"),
             OpacNav                   => "" .
C4::Context->preference("OpacNav"),
             OpacPasswordChange        =>
C4::Context->preference("OpacPasswordChange"),
+            OPACPatronDetails        =>
C4::Context->preference("OPACPatronDetails"),
             OpacTopissue              =>
C4::Context->preference("OpacTopissue"),
             RequestOnOpac             =>
C4::Context->preference("RequestOnOpac"),
             TemplateEncoding          => "".
C4::Context->preference("TemplateEncoding"),
diff --git a/admin/systempreferences.pl b/admin/systempreferences.pl
index 4c856da..b48f055 100755
--- a/admin/systempreferences.pl
+++ b/admin/systempreferences.pl
@@ -318,6 +318,7 @@ $tabsysprefs{OPACSearchForTitleIn}       = "OPAC";
 $tabsysprefs{OPACShelfBrowser}           = "OPAC";
 $tabsysprefs{OPACDisplayRequestPriority} = "OPAC";
 $tabsysprefs{OPACAllowHoldDateInFuture}  = "OPAC";
+$tabsysprefs{OPACPatronDetails}  = "OPAC";

 # OPAC
 $tabsysprefs{SearchMyLibraryFirst} = "OPAC";
diff --git a/installer/data/mysql/en/mandatory/sysprefs.sql
b/installer/data/mysql/en/mandatory/sysprefs.sql
index 49db7bb..52b3bd8 100644
--- a/installer/data/mysql/en/mandatory/sysprefs.sql
+++ b/installer/data/mysql/en/mandatory/sysprefs.sql
@@ -257,3 +257,4 @@ INSERT INTO `systempreferences` ( `variable` ,
`value` , `options` , `explanatio
 INSERT INTO `systempreferences` ( `variable` , `value` , `options` ,
`explanation` , `type` ) VALUES ( 'DisplayClearScreenButton', '0', '',
'If set to ON, a clear screen button will appear on the circulation
page.', 'YesNo');
 INSERT INTO systempreferences
(variable,value,options,explanation,type)VALUES('HidePatronName', '0',
'', 'If this is switched on, patron''s cardnumber will be shown
instead of their name on the holds and catalog screens', 'YesNo');
 INSERT INTO `systempreferences`
(variable,value,explanation,options,type) VALUES
('OPACSearchForTitleIn','<li class="yuimenuitem"><a target="_blank"
class="yuimenuitemlabel"
href="http://worldcat.org/search?q={TITLE}"">Other Libraries
(WorldCat)</a></li>\n<li class="yuimenuitem"><a
class="yuimenuitemlabel"
href="http://www.scholar.google.com/scholar?q={TITLE}"
target="_blank">Other Databases (Google Scholar)</a></li>\n<li
class="yuimenuitem"><a class="yuimenuitemlabel"
href="http://www.bookfinder.com/search/?author={AUTHOR}&amp;title={TITLE}&amp;st=xl&amp;ac=qr"
target="_blank">Online Stores (Bookfinder.com)</a></li>','Enter the
HTML that will appear in the \'Search for this title in\' box on the
detail page in the OPAC.  Enter {TITLE}, {AUTHOR}, or {ISBN} in place
of their respective variables in the URL. Leave blank to disable
\'More Searches\' menu.','70|10','Textarea')
+INSERT INTO `systempreferences`
(variable,value,explanation,options,type) VALUES
('OPACPatronDetails','1','If OFF the patron details tab in the OPAC is
disabled.','','YesNo');
diff --git a/installer/data/mysql/updatedatabase.pl
b/installer/data/mysql/updatedatabase.pl
index 7e82af5..b127a29 100755
--- a/installer/data/mysql/updatedatabase.pl
+++ b/installer/data/mysql/updatedatabase.pl
@@ -2602,6 +2602,14 @@ $DBversion = '3.01.00.XXX';
      SetVersion ($DBversion);
      print "Upgrade to $DBversion done (changed OPACSearchForTitleIn
per requests in bug 1934)\n";
      }
+
+$DBversion = '3.01.00.XXX';
+     if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+     $dbh->do("INSERT INTO `systempreferences`
(variable,value,explanation,options,type) VALUES
('OPACPatronDetails','1','If OFF the patron details tab in the OPAC is
disabled.','','YesNo');");
+     SetVersion ($DBversion);
+     print "Upgrade to $DBversion done (Bug 1172 : Add
OPACPatronDetails syspref)\n";
+     }
+

 =item DropAllForeignKeys($table)

diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc
b/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc
index 2efc1da..d8f4adc 100644
--- a/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc
+++ b/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc
@@ -3,7 +3,9 @@
 <ul>
   <!-- TMPL_IF NAME="userview" --><li class="active"><!-- TMPL_ELSE
--><li><!-- /TMPL_IF --><a href="/cgi-bin/koha/opac-user.pl">my
summary</a></li>
   <!-- TMPL_IF NAME="accountview" --><li class="active"><!--
TMPL_ELSE --><li><!-- /TMPL_IF --><a
href="/cgi-bin/koha/opac-account.pl">my fines</a></li>
+  <!-- TMPL_IF NAME="OPACPatronDetails" -->
   <!-- TMPL_IF NAME="userupdateview" --><li class="active"><!--
TMPL_ELSE --><li><!-- /TMPL_IF --><a
href="/cgi-bin/koha/opac-userupdate.pl">my personal details</a></li>
+    <!-- /TMPL_IF -->
   <!-- TMPL_IF NAME="TagsEnabled" -->
     <!-- TMPL_IF NAME="tagsview" --><li class="active"><!-- TMPL_ELSE
--><li><!-- /TMPL_IF --><a href="/cgi-bin/koha/opac-tags.pl">my
tags</a></li>
   <!-- /TMPL_IF -->
-- 
1.5.6.5
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0004-Bug-1172-Added-OPACPatronDetails-system-preference.patch
Type: application/octet-stream
Size: 5750 bytes
Desc: not available
URL: </pipermail/koha-patches/attachments/20090825/47c1b17d/attachment-0001.obj>


More information about the Koha-patches mailing list