Bug 13176 - Add links "My account" and "My checkouts" for logged in user to drop...
authorMarc Véron <veron@veron.ch>
Fri, 31 Oct 2014 06:19:32 +0000 (07:19 +0100)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Tue, 11 Nov 2014 12:48:06 +0000 (09:48 -0300)
This patch adds links to "My account" and "My checkouts" to drop down in staff client header.

To test:
Apply patch
Got to drop down of logged in user (top right)
See new links to "My account" and "My checkout" (above "Log out")
Test the links.

Signed-off-by: Magnus Enger <digitalutvikling@gmail.com>
Works as advertised. The options are not displayed when you are logged
in as the db/admin user.

Added classes "toplinks-myaccount" and "toplink-mycheckouts" to li tags to make it possible to hide them (per Kyle M $
Switching back to "Signd-off" (Hope this is OK becuause it is a tiny string addition)

Marc

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Auth.pm
koha-tmpl/intranet-tmpl/prog/en/includes/header.inc

index 16d3ec2..b808c66 100644 (file)
@@ -189,6 +189,7 @@ sub get_template_and_user {
 
         # user info
         $template->param( loggedinusername => $user );
+        $template->param( loggedinusernumber => $borrowernumber );
         $template->param( sessionID        => $sessionID );
 
         my ($total, $pubshelves, $barshelves) = C4::VirtualShelves::GetSomeShelfNames($borrowernumber, 'MASTHEAD');
index b1de549..e4caee8 100644 (file)
                         <a class="toplinks" href="/cgi-bin/koha/catalogue/search-history.pl">Search history</a>
                     </li>
                     [% END %]
+                    [% IF loggedinusernumber %]
+                        <li class ="toplinks-myaccount">
+                            <a class="toplinks" href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% loggedinusernumber %]">My account</a>
+                        </li>
+                        <li class="toplinks-mycheckouts">
+                            <a class="toplinks" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% loggedinusernumber %]">My checkouts</a>
+                        </li>
+                    [% END %]
                     <li>
                         <a id="logout" class="toplinks" href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log out</a>
                     </li>