From c59795eb59691180acf42adb953c05779f672858 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Wed, 5 Aug 2015 16:37:02 +0100
Subject: [PATCH] Bug 14544: Make the intranet side independent of Page.pm

---
 C4/Output.pm                                       |  19 +-
 C4/Utils/DataTables/VirtualShelves.pm              |   7 +-
 C4/VirtualShelves/Page.pm                          |  19 --
 Koha/Virtualshelf.pm                               |  47 ++++
 .../prog/en/includes/virtualshelves-toolbar.inc    |  24 +-
 .../prog/en/modules/catalogue/detail.tt            |   4 +-
 .../prog/en/modules/virtualshelves/shelves.tt      | 271 +++++++++++----------
 .../virtualshelves/tables/shelves_results.tt       |   4 +-
 virtualshelves/addbybiblionumber.pl                |   7 +-
 virtualshelves/shelves.pl                          | 183 +++++++++++++-
 10 files changed, 399 insertions(+), 186 deletions(-)

diff --git a/C4/Output.pm b/C4/Output.pm
index 1dbdbee..9f83ae5 100644
--- a/C4/Output.pm
+++ b/C4/Output.pm
@@ -86,10 +86,12 @@ This function returns HTML, without any language dependency.
 =cut
 
 sub pagination_bar {
-	my $base_url = (@_ ? shift : $ENV{SCRIPT_NAME} . $ENV{QUERY_STRING}) or return;
+    my $base_url = (@_ ? shift : $ENV{SCRIPT_NAME} . $ENV{QUERY_STRING});
+    return unless defined $base_url;
     my $nb_pages       = (@_) ? shift : 1;
     my $current_page   = (@_) ? shift : undef;	# delay default until later
     my $startfrom_name = (@_) ? shift : 'page';
+    my $additional_parameters = shift || {};
 
     # how many pages to show before and after the current page?
     my $pages_around = 2;
@@ -106,6 +108,10 @@ sub pagination_bar {
 	$base_url =~ s/$delim$//;		# remove trailing delim
 
     my $url = $base_url . (($base_url =~ m/$delim/ or $base_url =~ m/\?/) ? '&amp;' : '?' ) . $startfrom_name . '=';
+    my $url_suffix;
+    while ( my ( $k, $v ) = each %$additional_parameters ) {
+        $url_suffix .= '&amp;' . $k . '=' . $v;
+    }
     my $pagination_bar = '';
 
     # navigation bar useful only if more than one page to display !
@@ -117,7 +123,9 @@ sub pagination_bar {
                 "\n" . '&nbsp;'
               . '<a href="'
               . $url
-              . '1" rel="start">'
+              . '1'
+              . $url_suffix
+              . '"rel="start">'
               . '&lt;&lt;' . '</a>';
         }
         else {
@@ -134,6 +142,7 @@ sub pagination_bar {
               . '<a href="'
               . $url
               . $previous
+              . $url_suffix
               . '" rel="prev">' . '&lt;' . '</a>';
         }
         else {
@@ -172,7 +181,9 @@ sub pagination_bar {
                         "\n" . '&nbsp;'
                       . '<a href="'
                       . $url
-                      . $page_number . '">'
+                      . $page_number
+                      . $url_suffix
+                      . '">'
                       . $page_number . '</a>';
                 }
                 $last_displayed_page = $page_number;
@@ -187,6 +198,7 @@ sub pagination_bar {
               . '&nbsp;<a href="'
               . $url
               . $next
+              . $url_suffix
               . '" rel="next">' . '&gt;' . '</a>';
         }
         else {
@@ -200,6 +212,7 @@ sub pagination_bar {
               . '&nbsp;<a href="'
               . $url
               . $nb_pages
+              . $url_suffix
               . '" rel="last">'
               . '&gt;&gt;' . '</a>';
         }
diff --git a/C4/Utils/DataTables/VirtualShelves.pm b/C4/Utils/DataTables/VirtualShelves.pm
index e331447..bfda353 100644
--- a/C4/Utils/DataTables/VirtualShelves.pm
+++ b/C4/Utils/DataTables/VirtualShelves.pm
@@ -5,7 +5,7 @@ use C4::Branch qw/onlymine/;
 use C4::Context;
 use C4::Members qw/GetMemberIssuesAndFines/;
 use C4::Utils::DataTables;
-use C4::VirtualShelves;
+use Koha::Virtualshelves;
 
 sub search {
     my ( $params ) = @_;
@@ -121,8 +121,9 @@ sub search {
     ( $iTotalRecords ) = $dbh->selectrow_array( $query, undef, @args );
 
     for my $shelf ( @$shelves ) {
-        $shelf->{can_manage_shelf} = C4::VirtualShelves::ShelfPossibleAction( $loggedinuser, $shelf->{shelfnumber}, 'manage' );
-        $shelf->{can_delete_shelf} = C4::VirtualShelves::ShelfPossibleAction( $loggedinuser, $shelf->{shelfnumber}, 'delete_shelf' );
+        my $s = Koha::Virtualshelves->find( $shelf->{shelfnumber} );
+        $shelf->{can_manage_shelf} = $s->can_be_managed( $loggedinuser );
+        $shelf->{can_delete_shelf} = $s->can_be_deleted( $loggedinuser );
     }
     return {
         iTotalRecords => $iTotalRecords,
diff --git a/C4/VirtualShelves/Page.pm b/C4/VirtualShelves/Page.pm
index f22e014..69a85c1 100644
--- a/C4/VirtualShelves/Page.pm
+++ b/C4/VirtualShelves/Page.pm
@@ -68,7 +68,6 @@ sub shelfpage {
     loggedinuser => $loggedinuser,
     OpacAllowPublicListCreation => C4::Context->preference('OpacAllowPublicListCreation'),
     );
-    my $edit;
     my $shelves;
     my @paramsloop;
     my $totitems;
@@ -209,7 +208,6 @@ sub shelfpage {
                 my $shelf = Koha::Virtualshelves->find( $shelfnumber );
                 my $member = GetMember( 'borrowernumber' => $shelf->owner );
                 my $ownername = defined($member) ? $member->{firstname} . " " . $member->{surname} : '';
-                $edit = 1;
                 $template->param(
                     edit                => 1,
                     display             => $displaymode,
@@ -231,9 +229,6 @@ sub shelfpage {
         #View a shelf
         if ( $shelfnumber = $query->param('viewshelf') ) {
             my $shelf = Koha::Virtualshelves->find( $shelfnumber );
-            $template->param(
-                'DisplayMultiPlaceHold' => C4::Context->preference('DisplayMultiPlaceHold'),
-            );
             if (C4::Context->preference('TagsEnabled')) {
                 $template->param(TagsEnabled => 1);
                     foreach (qw(TagsShowOnList TagsInputOnList)) {
@@ -494,20 +489,6 @@ sub shelfpage {
         csv_profiles                                                       => GetCsvProfilesLoop('marc')
     );
 
-    unless( $shelfnumber or $shelves or $edit ) {
-        # Only used for intranet
-        $template->param( op => 'list' );
-    }
-
-    if ($shelves or    # note: this part looks duplicative, but is intentional
-        $edit
-      ) {
-        $template->param( seflag => 1 );
-        #This hack is just another argument for refactoring this script one day
-        #At this point you are adding or editing a list; if you add, then you add a private list (by default) with permissions as below; if you edit, do not pass these permissions, they must come from the database
-        $template->param( allow_add => 0, allow_delete_own => 1, allow_delete_other => 0) unless $shelfnumber;
-    }
-
 #Next call updates the shelves for the Lists button.
 #May not always be needed (when nothing changed), but doesn't take much.
     my ($total, $pubshelves, $barshelves) = C4::VirtualShelves::GetSomeShelfNames($loggedinuser, 'MASTHEAD');
diff --git a/Koha/Virtualshelf.pm b/Koha/Virtualshelf.pm
index 14eb804..9142ec3 100644
--- a/Koha/Virtualshelf.pm
+++ b/Koha/Virtualshelf.pm
@@ -19,6 +19,9 @@ use Modern::Perl;
 
 use Carp;
 
+use C4::Auth;
+
+use Koha::Borrowers;
 use Koha::Database;
 use Koha::DateUtils qw( dt_from_string );
 use Koha::Exceptions;
@@ -200,6 +203,50 @@ sub remove_biblios {
     return $number_deleted;
 }
 
+sub can_be_viewed {
+    my ( $self, $borrowernumber ) = @_;
+}
+
+sub can_be_deleted {
+    my ( $self, $borrowernumber ) = @_;
+
+    return unless $borrowernumber;
+    return 1 if $self->owner == $borrowernumber;
+
+    my $patron = Koha::Borrowers->find( $borrowernumber );
+
+    return 1 if $self->category == $PUBLIC and C4::Auth::haspermission( $patron->userid, { shelves => 'delete_public_lists' } );
+
+    return;
+}
+
+sub can_be_managed {
+    my ( $self, $borrowernumber ) = @_;
+    return 1
+      if $borrowernumber and $self->owner == $borrowernumber;
+    return 0;
+}
+
+sub can_biblios_be_added {
+    my ( $self, $borrowernumber ) = @_;
+
+    return 1
+      if $borrowernumber
+      and ($self->owner == $borrowernumber
+        or $self->allow_add );
+    return 0;
+}
+
+sub can_biblios_be_deleted {
+    my ( $self, $borrowernumber ) = @_;
+
+    return 1
+      if $borrowernumber
+      and ($self->allow_delete_own
+        or $self->allow_delete_other );
+    return 0;
+}
+
 sub type {
     return 'Virtualshelve';
 }
diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc
index 1e00cc4..a46840c 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc
+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc
@@ -1,7 +1,7 @@
 <script type="text/javascript">
 //<![CDATA[
 
-[% IF ( viewshelf ) %]
+[% IF op == 'view' %]
 
     function sendList(){
         open(CGIBIN+'virtualshelves/sendshelf.pl?shelfid=[% shelfnumber %]','win_form','scrollbars=no,resizable=no,height=300,width=450,top=50,left=100');
@@ -13,7 +13,7 @@
             return false;
         });
         $("#deleteshelf").click(function(e){
-            if(confirmDelete(_("Are you sure you want to delete this list?"))){
+            if(confirm(_("Are you sure you want to delete this list?"))){
                 return true;
             } else {
                 e.preventDefault();
@@ -27,20 +27,16 @@
 </script>
 
 <div id="toolbar" class="btn-toolbar">
-    <div class="btn-group"><a id="newshelf" class="btn btn-small" href="/cgi-bin/koha/virtualshelves/shelves.pl?shelves=1"><i class="icon-plus"></i> New list</a></div>
+    <div class="btn-group"><a id="newshelf" class="btn btn-small" href="/cgi-bin/koha/virtualshelves/shelves.pl?op=add_form&amp;referer=[% op %]"><i class="icon-plus"></i> New list</a></div>
 
-    [% IF ( viewshelf ) %]
-        [% IF ( manageshelf ) %]
+    [% IF op == 'view' %]
+        [% IF can_manage %]
         <div class="btn-group">
             <button class="btn btn-small dropdown-toggle" data-toggle="dropdown"><i class="icon-pencil"></i> Edit <span class="caret"></span></button>
-                <ul class="dropdown-menu">
-                    <li><a href="/cgi-bin/koha/virtualshelves/shelves.pl?shelfnumber=[% shelfnumber %]&amp;op=modif&amp;display=viewshelf">Edit list</a></li>
-                    [% IF ( showprivateshelves ) %]
-                        <li><a id="deleteshelf" href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves&amp;shelves=1&amp;DEL-[% shelfnumber %]=1">Delete list</a></li>
-                    [% ELSE %]
-                        <li><a id="deleteshelf" href="/cgi-bin/koha/virtualshelves/shelves.pl?shelves=1&amp;DEL-[% shelfnumber %]=1">Delete list</a></li>
-                    [% END %]
-                </ul>
+            <ul class="dropdown-menu">
+                <li><a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=edit_form&amp;shelfnumber=[% shelf.shelfnumber %]&amp;referer=[% op %]">Edit list</a></li>
+                <li><a id="deleteshelf" href="/cgi-bin/koha/virtualshelves/shelves.pl?op=delete&amp;shelfnumber=[% shelf.shelfnumber %]">Delete list</a></li>
+            </ul>
         </div>
         [% END %]
 
@@ -56,6 +52,6 @@
                 </ul>
         </div>
         <div class="btn-group"><a class="btn btn-small" href="#" id="sendlist"><i class="icon-envelope"></i> Send list</a></div>
-        <div class="btn-group"><a class="btn btn-small" id="printlist" target="_blank" href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;print=1"><i class="icon-print"></i> Print list</a></div>
+        <div class="btn-group"><a class="btn btn-small" id="printlist" target="_blank" href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber %]&amp;print=1"><i class="icon-print"></i> Print list</a></div>
     [% END %]
 </div>
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
index 41730f5..0746ff6 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt
@@ -359,7 +359,7 @@ function verify_images() {
         [% IF ( GetShelves ) %]
             <span class="results_summary"><span class="label">Lists that include this title: </span>
             [% FOREACH GetShelve IN GetShelves %]
-                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% GetShelve.shelfnumber %]">[% GetShelve.shelfname %]</a>
+                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% GetShelve.shelfnumber %]">[% GetShelve.shelfname %]</a>
                 [% IF ( loop.last ) %][% ELSE %]|[% END %]
             [% END %]
             </span>
@@ -524,7 +524,7 @@ function verify_images() {
 	        <li><strong>Lists that include this title: </strong>
 	        <ul>
 	        [% FOREACH GetShelve IN GetShelves %]
-		        <li><a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% GetShelve.shelfnumber %]">[% GetShelve.shelfname %]</a></li>
+		        <li><a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% GetShelve.shelfnumber %]">[% GetShelve.shelfname %]</a></li>
 	        [% END %]
 	        </ul>
 	        </li>
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
index 4d1d5c2..4d4c823 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt
@@ -1,5 +1,9 @@
+[% USE Koha %]
+[% USE KohaDates %]
+[% SET PRIVATE = 1 %]
+[% SET PUBLIC = 2 %]
 [% INCLUDE 'doc-head-open.inc' %]
-<title>Koha &rsaquo; [% IF ( viewshelf ) %]Lists &rsaquo; Contents of [% shelfname | html %][% ELSE %]Lists[% END %][% IF ( shelves ) %] &rsaquo; Create new list[% END %][% IF ( edit ) %] &rsaquo; Edit list [% shelfname | html %][% END %]</title>
+<title>Koha &rsaquo; [% IF op == 'view' %]Lists &rsaquo; Contents of [% shelf.shelfname | html %][% ELSE %]Lists[% END %][% IF op == 'add_form' %] &rsaquo; Create new list[% END %][% IF op == 'edit_form' %] &rsaquo; Edit list [% shelf.shelfname | html %][% END %]</title>
 [% INCLUDE 'doc-head-close.inc' %]
 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
 [% INCLUDE 'datatables.inc' %]
@@ -14,7 +18,7 @@
 </script>
 [% END %]
 
-[% IF ( viewshelf ) %]
+[% IF op == 'view' %]
     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script>
 [% END %]
@@ -27,7 +31,11 @@ var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
 
 [% IF op == 'list' %]
 $(document).ready(function(){
-    var type = 1;
+    [% IF category == PUBLIC %]
+        var type = [% PUBLIC %];
+    [% ELSE %]
+        var type = [% PRIVATE %];
+    [% END %]
     var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, {
         'bServerSide': true,
         'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search",
@@ -81,13 +89,18 @@ $(document).ready(function(){
     dtListResults.fnAddFilters("filter", 750);
 
     var tabs = $("#tabs").tabs({
+        [% IF category == PUBLIC %]
+            active: 1,
+        [% ELSE %]
+            active: 0,
+        [% END %]
         activate: function(e, ui) {
             var active = tabs.tabs("option", "active" );
             if ( active == 0 ) {
-                type = 1; // private
+                type = [% PRIVATE %];
                 dtListResults.fnDraw();
             } else if ( active == 1 ) {
-                type = 2; // public
+                type = [% PUBLIC %];
                 dtListResults.fnDraw();
             }
         }
@@ -95,7 +108,7 @@ $(document).ready(function(){
 });
 [% END %]
 
-[% IF ( viewshelf ) %]
+[% IF op == 'view' %]
 $(document).ready(function(){
     [% IF ( itemsloop ) %]$('#searchheader').fixFloat();[% END %]
     $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\">"+_("Clear all")+"<\/a>");
@@ -173,14 +186,6 @@ $(document).ready(function(){
 });
 [% END %]
 
-	function confirmDelete(message){
-		if (window.confirm(message)) {
-		    location.href="/cgi-bin/koha/virtualshelves/shelves.pl?[% IF ( showprivateshelves ) %]display=privateshelves&[% END %]shelves=1&DEL-[% shelfnumber %]=1&shelfoff=[% shelfoff %]";
-		} else { 
-			return false;
-		}
-	}
-
     /**
      * This function checks if the adequate number of records are checked for merging
      */
@@ -272,35 +277,28 @@ function placeHold () {
 [% INCLUDE 'header.inc' %]
 [% INCLUDE 'cat-search.inc' %]
 
-[% BLOCK list_permissions %]
-    <li>
-        <label for="permissions">Permissions: </label>
-        <select name="allow_add" id="allow_add">
-            [% IF allow_add %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
-            [% IF allow_add %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
-        </select>
-        &nbsp;<span>anyone else to add entries.</span>
-    </li>
-    <li>
-        <label>&nbsp;</label>
-        <select name="allow_delete_own" id="allow_delete_own">
-            [% IF allow_delete_own %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
-            [% IF allow_delete_own %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
-        </select>
-        &nbsp;<span>anyone to remove his own contributed entries.</span>
-    </li>
-    <li>
-        <label>&nbsp;</label>
-        <select name="allow_delete_other" id="allow_delete_other">
-            [% IF allow_delete_other %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
-            [% IF allow_delete_other %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
-        </select>
-        &nbsp;<span>anyone to remove other contributed entries.</span>
-    </li>
-[% END %]
-<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a> [% IF ( category1 ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( category2 ) %] &rsaquo; [% IF ( viewshelf ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% ELSIF ( showprivateshelves ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves">Your lists</a> [% ELSE %] Your lists [% END %] [% ELSIF ( showpublicshelves ) %] &rsaquo; [% IF ( viewshelf || edit ) %] <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=publicshelves">Public lists</a> [% ELSE %] Public lists [% END %] [% END %]
+<div id="breadcrumbs">
+    <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
+    [% IF op != 'list' %]
+        <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
+    [% ELSE %]
+        Lists
+    [% END %]
+    [% IF shelf AND shelf.category == PRIVATE %] &rsaquo;
+        [% IF op == 'view' OR op == 'edit_form' %]
+            <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;category=[% PRIVATE %]">Your lists</a>
+        [% ELSE %]
+            Your lists
+        [% END %]
+    [% ELSIF shelf AND shelf.category == PUBLIC %] &rsaquo;
+        [% IF op == 'view' %]
+            <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;category=[% PUBLIC %]">Public lists</a>
+        [% ELSE %]
+            Public lists
+        [% END %]
+    [% END %]
 
-[% IF ( viewshelf ) %]&rsaquo; Contents of <i>[% shelfname | html %]</i>[% END %][% IF ( shelves ) %] &rsaquo; Create new list[% END %][% IF ( edit ) %] &rsaquo; Edit list <i>[% shelfname | html %]</i>[% END %]</div>
+[% IF op == 'view' %]&rsaquo; Contents of <i>[% shelf.shelfname | html %]</i>[% END %][% IF op == 'add_form' %] &rsaquo; Create new list[% END %][% IF op == 'edit_form' %] &rsaquo; Edit list <i>[% shelf.shelfname | html %]</i>[% END %]</div>
 
 <div id="doc2" class="yui-t7">
  <div id="bd">
@@ -323,8 +321,16 @@ function placeHold () {
             List inserted with success.
         [% CASE 'success_on_delete' %]
             List deleted with success.
-        [% CASE 'Koha::Exception::DuplicateObject' %]
+        [% CASE 'does_not_exist' %]
+            This list does not exist.
+        [% CASE 'unauthorized_on_update' %]
+            You do not have permission to update this list.
+        [% CASE 'unauthorized_on_delete' %]
+            You do not have permission to delete this list.
+        [% CASE 'Koha::Exceptions::Virtualshelves::DuplicateObject' %]
             An error occurred when inserting this list. The name already [% shelfname %] exists.
+        [% CASE 'DBIx::Class::Exception' %]
+            [% m.msg %]
         [% CASE %]
             [% m.code %]
         [% END %]
@@ -371,14 +377,14 @@ function placeHold () {
 [% END %]
 [% END %] 
 
-[% IF ( viewshelf ) %]
+[% IF op == 'view' %]
    <div class="yui-g">
-    [% IF ( itemsloop ) %]
+    [% IF itemsloop %]
 
-    <h3>Contents of <i>[% shelfname | html %]</i></h3>
+    <h3>Contents of <i>[% shelf.shelfname | html %]</i></h3>
     <div class="pages">[% pagination_bar %]</div>
     <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post" class="checkboxed">
-        <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
+        <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" />
         <input type="hidden" name="modifyshelfcontents" value="1" />
 
 [% IF direction == 'asc' %]
@@ -389,16 +395,16 @@ function placeHold () {
 [% END %]
 
 <div id="searchheader" class="noprint">
-    [% IF ( itemsloop ) %]
+    [% IF itemsloop %]
         <div id="selection_ops"><span class="checkall"></span> |
         <span class="clearall"></span>
 
         <span class="addto">| </span>
         &nbsp;
-        [% IF ( CAN_user_reserveforothers && DisplayMultiPlaceHold ) %]
+        [% IF CAN_user_reserveforothers && Koha.Preference('DisplayMultiPlaceHold') %]
             <div class="btn-group"><button class="btn btn-mini placehold"><i class="icon-hold"></i> Place hold</button></div>
         [% END %]
-        [% IF ( allowremovingitems ) %]
+        [% IF can_delete_biblios %]
             <div class="btn-group"><button type="submit" class="btn btn-mini list-remove"><i class="icon-remove-sign"></i> Remove selected</button></div>
         [% END %]
         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<div class="btn-group"><button type="submit" class="btn btn-mini merge-items"><i class="icon-merge"></i> Merge selected</button></div>[% END %]
@@ -412,7 +418,7 @@ function placeHold () {
 
                 [% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %]
                 <th>
-                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=title&amp;direction=[% IF sort != 'title' %]asc[% ELSE %][% new_direction %][% END %]">Title</a>
+                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelfnumber %]&amp;sort=title&amp;direction=[% IF sort != 'title' %]asc[% ELSE %][% new_direction %][% END %]">Title</a>
                     [% IF sort == 'title' %]
                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
                     [% ELSE %]
@@ -420,7 +426,7 @@ function placeHold () {
                     [% END %]
                 </th>
                 <th>
-                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=author&amp;direction=[% IF sort != 'author' %]asc[% ELSE %][% new_direction %][% END %]">Author</a>
+                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelfnumber %]&amp;sort=author&amp;direction=[% IF sort != 'author' %]asc[% ELSE %][% new_direction %][% END %]">Author</a>
                    [% IF sort == 'author' %]
                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
                    [% ELSE %]
@@ -429,7 +435,7 @@ function placeHold () {
                  </th>
                 <th>Date added</th>
                 <th>
-                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]&amp;sort=itemcallnumber&amp;direction=[% IF sort != 'itemcallnumber' %]asc[% ELSE %][% new_direction %][% END %]">Call number</a>
+                    <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelfnumber %]&amp;sort=itemcallnumber&amp;direction=[% IF sort != 'itemcallnumber' %]asc[% ELSE %][% new_direction %][% END %]">Call number</a>
                    [% IF sort == 'itemcallnumber' %]
                         <img src="[% interface %]/[% theme %]/img/[% direction %].gif" alt="[% direction %] sort" />
                    [% ELSE %]
@@ -481,10 +487,10 @@ function placeHold () {
                             | <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber %]">Edit items</a>
                         [% END %]
                     </p>
-			</td>
-			<td>[% itemsloo.author %]</td>
-			<td>[% itemsloo.dateadded %]</td>
-			<td>
+            </td>
+            <td>[% itemsloo.author %]</td>
+            <td>[% itemsloo.dateadded | $KohaDates%]</td>
+            <td>
                 <ul>
                 [% FOREACH result IN itemsloo.ITEM_RESULTS %]
                     <li>[% result.holdingbranch %] [% IF ( result.location_intranet ) %] ([% result.location_intranet %]) [% END %]
@@ -503,9 +509,9 @@ function placeHold () {
 
 	[% END %]
    </div>
-[% END %]<!-- /viewshelf -->
+[% END %]
 
-[% IF ( allowaddingitem ) %]
+[% IF can_add_biblios %]
 <div class="yui-g">
 <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
  <fieldset class="brief noprint">
@@ -514,7 +520,7 @@ function placeHold () {
             <li>
                 <label for="addbarcode">Barcode:</label>
                 <input name="addbarcode" type="text" id="addbarcode" size="14" />
-                <input type="hidden" name="viewshelf" value="[% shelfnumber %]" />
+                <input type="hidden" name="shelfnumber" value="[% shelfnumber %]" />
                 <input type="hidden" name="modifyshelfcontents" value="1" />
                 <input type="submit" value="Add" />
             </li>
@@ -522,88 +528,91 @@ function placeHold () {
  </fieldset>
 </form>
 </div>
-[% END %]<!-- /allowaddingitem -->
-
-[% IF ( debug ) %]
-  [% IF ( edit ) %]<div>Edit is on ([% shelfname | html %])</div>[% END %]
-  [% IF ( seflag ) %]<div>seflag is on ([% seflag %])</div>[% END %]
 [% END %]
 
-[% IF ( seflag ) %]
+[% IF op == 'add_form' OR op == 'edit_form' %]
 <div class="yui-ge">
     <div class="yui-u first">
     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated">
         <fieldset class="rows">
 
-    [% IF ( shelves ) %]
-        <legend>Create a new list</legend>
-        <input type="hidden" name="shelves" value="1" />
+        [% IF op == 'add_form' %]
+            <legend>Create a new list</legend>
+            <input type="hidden" name="op" value="add" />
+        [% ELSE %]
+            <legend>Edit list <i>[% shelf.shelfname | html %]</i></legend>
+            <input type="hidden" name="op" value="edit" />
+        [% END %]
+        <input type="hidden" name="referer" value="[% referer %]" />
+        <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber %]" />
         <ol>
-        <li><label class="required" for="addshelf">List name:</label><input id="addshelf" type="text" name="addshelf" size="25" required="required" class="required" />
-            <span class="required">Required</span>
-        </li>
-        <li><span class="label">Owner: </span><input type="hidden" name="owner" id="owner" value="[% loggedinuser %]" />[% loggedinusername %]</li>
-        <li><label for="sortfield" >Sort this list by: </label>
-        <select name="sortfield" id="sortfield">
-            <option value="title">Title</option>
-            <option value="author">Author</option>
-            <option value="copyrightdate">Copyrightdate</option>
-            <option value="itemcallnumber">Call number</option>
-        </select></li>
-        <li><label for="category">Category: </label>
-            <select name="category" id="category">
-                  <option value="1">Private</option>
-                  <option value="2">Public</option>
-                     </select></li>
-            [% INCLUDE list_permissions %]
-        </ol>
-    [% END %]
-
-    [% IF ( edit ) %]
-        <legend>Edit list <i>[% shelfname | html %]</i></legend>
-        <input type="hidden" name="display" value="[% display %]" />
-        <input type="hidden" name="op" value="modifsave" />
-        [% IF ( showprivateshelves ) %]<input type="hidden" name="display" value="privateshelves" />[% END %]
-        <input type="hidden" name="shelfnumber" value="[% shelfnumber %]" />
-		<ol>
-            <li><label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelfname |html %]" required="required" class="required" />
+            <li>
+                <label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelf.shelfname |html %]" required="required" class="required" />
             <span class="required">Required</span>
-        </li>
-		<li><label for="owner">Owner: </label><input type="hidden" id="owner" name="owner" value="[% IF ( owner ) %][% ownername %][% ELSE %][% loggedinusername %][% END %]" />[% IF ( owner ) %][% ownername %][% ELSE %][% loggedinusername %][% END %]</li>
-		<li><label for="sortfield" >Sort this list by: </label>
-		<select name="sortfield">
-        [% IF ( sortfield == "title" ) %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
-        [% IF ( sortfield == "author" ) %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
-        [% IF ( sortfield == "copyrightdate" ) %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
-        [% IF ( sortfield == "itemcallnumber" ) %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
-		</select></li>
-		<li><label for="category">Category: </label>
-			<select id="category" name="category">
-			[% IF ( category1 ) %]
-				<option value="1" selected="selected">Private</option>
-			[% ELSE %]
-				<option value="1">Private</option>
-			[% END %]
-			[% IF ( category2 ) %]
-				<option value="2" selected="selected">Public</option>
-			[% ELSE %]
-				<option value="2">Public</option>
-			[% END %]
-                       </select></li>
-            [% INCLUDE list_permissions %]
-            </ol>
-	[% END %]
+            </li>
+            <li>
+                <span class="label">Owner: </span>
+                [% IF op == 'add_form' %]
+                    <input type="hidden" name="owner" id="owner" value="[% loggedinusernumber %]" />[% loggedinusername %]</li>
+                [% ELSE %]
+                    [% IF owner %]
+                        <input type="hidden" id="owner" name="owner" value="[% owner.borrowernumber %]" />[% owner.firstname _ ' ' _ owner.surname %]
+                    [% ELSE %]
+                        <input type="hidden" id="owner" name="owner" value="[% loggedinusernumber %]" />[% loggedinusername %]
+                    [% END %]
+                [% END %]
+            </li>
+            <li><label for="sortfield" >Sort this list by: </label>
+            <select name="sortfield">
+            [% IF shelf.sortfield == "title" %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
+            [% IF shelf.sortfield == "author" %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
+            [% IF shelf.sortfield == "copyrightdate" %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
+            [% IF shelf.sortfield == "itemcallnumber" %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
+            </select></li>
+            <li><label for="category">Category: </label>
+                <select id="category" name="category">
+                [% IF shelf.category == PRIVATE %]
+                    <option value="1" selected="selected">Private</option>
+                [% ELSE %]
+                    <option value="1">Private</option>
+                [% END %]
+                [% IF shelf.category == PUBLIC %]
+                    <option value="2" selected="selected">Public</option>
+                [% ELSE %]
+                    <option value="2">Public</option>
+                [% END %]
+                           </select></li>
 
-		</fieldset>
+            [% FOR permission IN ['allow_add', 'allow_delete_own', 'allow_delete_other'] %]
+                <li>
+                    [% IF loop.first %]
+                        <label for="permissions">Permissions: </label>
+                    [% ELSE %]
+                        <label>&nbsp;</label>
+                    [% END %]
+                    <select name="[% permission %]" id="[% permission %]">
+                        [% IF shelf.$permission %]<option value="0">Do not allow</option>[% ELSE %]<option value="0" selected="selected">Do not allow</option>[% END %]
+                        [% IF shelf.$permission %]<option value="1" selected="selected">Allow</option>[% ELSE %]<option value="1">Allow</option>[% END %]
+                    </select>
+                    [% SWITCH permission %]
+                        [% CASE 'allow_add' %]&nbsp;<span>anyone else to add entries.</span>
+                        [% CASE 'allow_delete_own' %]&nbsp;<span>anyone to remove his own contributed entries.</span>
+                        [% CASE 'allow_delete_other' %]&nbsp;<span>anyone to remove other contributed entries.</span>
+                    [% END %]
+                </li>
+            [% END %]
+        </ol>
+    </fieldset>
 
-    <fieldset class="action"><input type="submit" value="Save" class="submit" />
-        [% IF ( showprivateshelves ) %]
-            <a href="/cgi-bin/koha/virtualshelves/shelves.pl?display=privateshelves" class="cancel">Cancel</a>
-        [% ELSE %]
-            [% IF ( display == "viewshelf" ) %]
-               <a href="/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% shelfnumber %]" class="cancel">Cancel</a>
+    <fieldset class="action">
+        <input type="submit" value="Save" class="submit" />
+        [% IF referer == 'view' %]
+           <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber %]" class="cancel">Cancel</a>
+       [% ELSE %]
+            [% IF category == PUBLIC %]
+                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;category=[% PUBLIC %]" class="cancel">Cancel</a>
             [% ELSE %]
-                <a href="/cgi-bin/koha/virtualshelves/shelves.pl" class="cancel">Cancel</a>
+                <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;category=[% PRIVATE %]" class="cancel">Cancel</a>
             [% END %]
         [% END %]
     </fieldset>
@@ -618,7 +627,7 @@ function placeHold () {
         </div>
     </div>
 </div>
-[% END %]<!-- /seflag -->
+[% END %]
 
 [% IF op == 'list' %]
     <h2>Lists</h2>
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/tables/shelves_results.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/tables/shelves_results.tt
index 65a7459..28a2ad8 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/tables/shelves_results.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/tables/shelves_results.tt
@@ -9,7 +9,7 @@
                 "dt_type":
                     "[% data.type %]",
                 "dt_shelfname":
-                    "<a href='/cgi-bin/koha/virtualshelves/shelves.pl?viewshelf=[% data.shelfnumber %]'>[% data.shelfname | html%]</a>",
+                    "<a href='/cgi-bin/koha/virtualshelves/shelves.pl?op=view&shelfnumber=[% data.shelfnumber %]'>[% data.shelfname | html%]</a>",
                 "dt_count":
                     "[% data.count %] item(s)",
                 "dt_owner":
@@ -29,7 +29,7 @@
 
 [% BLOCK action_form -%]
     [%- IF can_manage_shelf -%]
-<form action='shelves.pl' method='get'><input type='hidden' name='shelfnumber' value='[% shelfnumber %]' /><input type='hidden' name='op' value='modif' /><input type='submit' class='editshelf' value='Edit' /></form>[% IF can_manage_shelf OR can_delete_shelf %]<form action='shelves.pl' method='post'><input type='hidden' name='shelfoff' value='[% shelfoff %]' /><input type='hidden' name='shelves' value='1' /><input type='hidden' name='DEL-[% shelfnumber %]' value='1' /><input type='hidden' name='CONFIRM-[% shelfnumber %]' value='1' />[% IF type == 1 %]<input type='hidden' name='display' value='privateshelves' />[% ELSE %]<input type='hidden' name='display' value='publicshelves' />[% END %]<input type='submit' class='deleteshelf' onclick='return confirmDelete(MSG_CONFIRM_DELETE_LIST)' value='Delete' /></form>[% END %]
+<form action='shelves.pl' method='get'><input type='hidden' name='shelfnumber' value='[% shelfnumber %]' /><input type='hidden' name='op' value='edit_form' /><input type='hidden' name='category' value='[% type %]' /><input type='submit' class='editshelf' value='Edit' /></form>[% IF can_manage_shelf OR can_delete_shelf %]<form action='shelves.pl' method='post'><input type='hidden' name='shelfoff' value='[% shelfoff %]' /><input type='hidden' name='op' value='delete' /><input type='hidden', name='shelfnumber', value='[% shelfnumber %] /><input type='hidden' name='category' value='[% type %]' /><input type='submit' class='deleteshelf' onclick='return confirmDelete(MSG_CONFIRM_DELETE_LIST)' value='Delete' /></form>[% END %]
     [%- ELSE -%]
         None
     [%- END -%]
diff --git a/virtualshelves/addbybiblionumber.pl b/virtualshelves/addbybiblionumber.pl
index 37d300e..e6a1630 100755
--- a/virtualshelves/addbybiblionumber.pl
+++ b/virtualshelves/addbybiblionumber.pl
@@ -155,7 +155,8 @@ sub HandleNewVirtualShelf {
 }
 
 sub HandleShelfNumber {
-    if($authorized= ShelfPossibleAction($loggedinuser, $shelfnumber, 'add')) {
+    my $shelf = Koha::Virtualshelves->find( $shelfnumber );
+    if($authorized = $shelf->can_biblios_be_added( $loggedinuser ) ) {
     AddBibliosToShelf($shelfnumber, @biblionumber);
     #Close this page and return
     print $query->header;
@@ -167,9 +168,9 @@ sub HandleShelfNumber {
 }
 
 sub HandleSelectedShelf {
-    if($authorized= ShelfPossibleAction( $loggedinuser, $shelfnumber, 'add')){
+    my $shelf = Koha::Virtualshelves->find( $shelfnumber );
+    if($authorized = $shelf->can_biblios_be_added( $loggedinuser ) ) {
         #confirm adding to specific shelf
-        my $shelf = Koha::Virtualshelves->find( $shelfnumber );
         $template->param(
         singleshelf               => 1,
         shelfnumber               => $shelf->shelfnumber,
diff --git a/virtualshelves/shelves.pl b/virtualshelves/shelves.pl
index 43ae72a..a6ec404 100755
--- a/virtualshelves/shelves.pl
+++ b/virtualshelves/shelves.pl
@@ -1,7 +1,6 @@
 #!/usr/bin/perl
 
-#
-# Copyright 2000-2002 Katipo Communications
+# Copyright 2015 Koha Team
 #
 # This file is part of Koha.
 #
@@ -18,22 +17,188 @@
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-use warnings;
+use Modern::Perl;
 use CGI qw ( -utf8 );
-use C4::VirtualShelves::Page;
+use C4::VirtualShelves;
 use C4::Auth;
+use C4::Biblio;
+use C4::Koha;
+use C4::Items;
+use C4::Members;
+use C4::Output;
+use C4::XSLT;
+use Koha::Virtualshelves;
 
 my $query = new CGI;
 
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
-    {
-        template_name   => "virtualshelves/shelves.tt",
+    {   template_name   => "virtualshelves/shelves.tt",
         query           => $query,
         type            => "intranet",
         authnotrequired => 0,
         flagsrequired   => { catalogue => 1 },
     }
 );
-$template->param( print => $query->param('print') );
-shelfpage('intranet', $query, $template, $loggedinuser, $cookie);
+
+my $op       = $query->param('op')       || 'list';
+my $referer  = $query->param('referer')  || $op;
+my $category = $query->param('category') || 1;
+my ( $shelf, $shelfnumber, @messages );
+
+if ( $op eq 'add_form' ) {
+    # Nothing to do
+} elsif ( $op eq 'edit_form' ) {
+    $shelfnumber = $query->param('shelfnumber');
+    $shelf       = Koha::Virtualshelves->find($shelfnumber);
+
+    $category = $shelf->category;
+    my $patron = GetMember( 'borrowernumber' => $shelf->owner );
+    $template->param( owner => $patron, );
+    unless ( $shelf->can_be_edited( $loggedinuser ) ) {
+        push @messages, { type => 'error', code => 'unauthorized_on_update' };
+        $op = 'list';
+    }
+} elsif ( $op eq 'add' ) {
+    eval {
+        $shelf = Koha::Virtualshelf->new(
+            {   shelfname          => $query->param('shelfname'),
+                sortfield          => $query->param('sortfield'),
+                category           => $query->param('category'),
+                allow_add          => $query->param('allow_add'),
+                allow_delete_own   => $query->param('allow_delete_own'),
+                allow_delete_other => $query->param('allow_delete_other'),
+                owner              => $query->param('owner'),
+            }
+        );
+        $shelf->store;
+        $shelfnumber = $shelf->shelfnumber;
+    };
+    if ($@) {
+        push @messages, { type => 'error', code => ref($@), msg => $@ };
+    } elsif ( not $shelf ) {
+        push @messages, { type => 'error', code => 'error_on_insert' };
+    } else {
+        push @messages, { type => 'message', code => 'success_on_insert' };
+        $op = 'view';
+    }
+} elsif ( $op eq 'edit' ) {
+    $shelfnumber = $query->param('shelfnumber');
+    $shelf       = Koha::Virtualshelves->find($shelfnumber);
+    $op = $referer;
+    if ( $shelf->can_be_managed( $loggedinuser ) ) {
+        $shelf->shelfname( $query->param('shelfname') );
+        $shelf->sortfield( $query->param('sortfield') );
+        $shelf->allow_add( $query->param('allow_add') );
+        $shelf->allow_delete_own( $query->param('allow_delete_own') );
+        $shelf->allow_delete_other( $query->param('allow_delete_other') );
+        $shelf->category( $query->param('category') );
+        eval { $shelf->store };
+
+        if ($@) {
+            push @messages, { type => 'error', code => 'error_on_update' };
+            $op = 'edit_form';
+        } else {
+            push @messages, { type => 'message', code => 'success_on_update' };
+        }
+    } else {
+        push @messages, { type => 'error', code => 'unauthorized_on_update' };
+    }
+} elsif ( $op eq 'delete' ) {
+    $shelfnumber = $query->param('shelfnumber');
+    $shelf       = Koha::Virtualshelves->find($shelfnumber);
+    if ($shelf) {
+        if ( $shelf->can_be_deleted( $loggedinuser ) ) {
+            eval { $shelf->delete; };
+            if ($@) {
+                push @messages, { type => 'error', code => ref($@), msg => $@ };
+            } else {
+                push @messages, { type => 'message', code => 'success_on_delete' };
+            }
+        } else {
+            push @messages, { type => 'error', code => 'unauthorized_on_delete' };
+        }
+    } else {
+        push @messages, { type => 'error', code => 'does_not_exist' };
+    }
+    $op = $referer;
+}
+
+if ( $op eq 'view' ) {
+    $shelfnumber ||= $query->param('shelfnumber');
+    $shelf = Koha::Virtualshelves->find($shelfnumber);
+    my $sortfield = $query->param('sort')      || $shelf->sortfield;    # Passed in sorting overrides default sorting
+    my $direction = $query->param('direction') || 'asc';
+    my ( $shelflimit, $shelfoffset, $itemoff );
+    unless ( $query->param('print') ) {
+        $shelflimit = C4::Context->preference('numSearchResults') || 20;
+        $itemoff = ( $query->param('itemoff') ? $query->param('itemoff') : 1 );
+        $shelfoffset = ( $itemoff - 1 ) * $shelflimit;    # Sets the offset to begin retrieving items at
+    }
+    my ( $items, $totitems ) = GetShelfContents( $shelfnumber, $shelflimit, $shelfoffset, $sortfield, $direction );
+
+    my $borrower = GetMember( borrowernumber => $loggedinuser );
+
+    for my $this_item (@$items) {
+        my $biblionumber = $this_item->{biblionumber};
+        my $record       = GetMarcBiblio($biblionumber);
+
+        if ( C4::Context->preference("XSLTResultsDisplay") ) {
+            $this_item->{XSLTBloc} = XSLTParse4Display( $biblionumber, $record, "XSLTResultsDisplay" );
+        }
+
+        my $marcflavour = C4::Context->preference("marcflavour");
+        $this_item->{'imageurl'}        = getitemtypeinfo( $this_item->{'itemtype'}, 'intranet' )->{'imageurl'};
+        $this_item->{'coins'}           = GetCOinSBiblio($record);
+        $this_item->{'subtitle'}        = GetRecordValue( 'subtitle', $record, GetFrameworkCode( $this_item->{'biblionumber'} ) );
+        $this_item->{'normalized_upc'}  = GetNormalizedUPC( $record, $marcflavour );
+        $this_item->{'normalized_ean'}  = GetNormalizedEAN( $record, $marcflavour );
+        $this_item->{'normalized_oclc'} = GetNormalizedOCLCNumber( $record, $marcflavour );
+        $this_item->{'normalized_isbn'} = GetNormalizedISBN( undef, $record, $marcflavour );
+
+        unless ( defined $this_item->{size} ) {
+
+            #TT has problems with size
+            $this_item->{size} = q||;
+        }
+
+        # Getting items infos for location display
+        my @items_infos = &GetItemsLocationInfo( $this_item->{'biblionumber'} );
+        $this_item->{'ITEM_RESULTS'} = \@items_infos;
+    }
+
+    # Build drop-down list for 'Add To:' menu...
+    my ( $totalref, $pubshelves, $barshelves ) = C4::VirtualShelves::GetSomeShelfNames( $loggedinuser, 'COMBO', 1 );
+    $template->param(
+        addbarshelves      => $totalref->{bartotal},
+        addbarshelvesloop  => $barshelves,
+        addpubshelves      => $totalref->{pubtotal},
+        addpubshelvesloop  => $pubshelves,
+        can_manage_shelf   => $shelf->can_be_managed($loggedinuser),
+        can_delete_shelf   => $shelf->can_be_deleted($loggedinuser),
+        can_delete_biblios => $shelf->can_biblios_be_deleted($loggedinuser),
+        can_add_biblios    => $shelf->can_biblios_be_added($loggedinuser),
+        sortfield          => $sortfield,
+        itemsloop          => $items,
+        sortfield          => $sortfield,
+        direction          => $direction,
+    );
+    if ($shelflimit) {
+        $template->param(
+            pagination_bar => pagination_bar(
+                q||, ( int( $totitems / $shelflimit ) ) + ( ( $totitems % $shelflimit ) > 0 ? 1 : 0 ),
+                $itemoff, "itemoff", { op => 'view', shelfnumber => $shelf->shelfnumber, sortfield => $sortfield, direction => $direction, }
+            ),
+        );
+    }
+}
+
+$template->param(
+    op       => $op,
+    referer  => $referer,
+    shelf    => $shelf,
+    messages => \@messages,
+    category => $category,
+    print    => $query->param('print') || 0,
+);
+
+output_html_with_http_headers $query, $cookie, $template->output;
-- 
2.1.0