bug 4396: remove reerences to bi_notforloan
[koha_gimpoz] / koha-tmpl / intranet-tmpl / prog / en / includes / cat-toolbar.inc
index 130de3a..eda7985 100644 (file)
@@ -1,13 +1,31 @@
 <div id="toolbar">
        
        <script type="text/javascript">
-       
+       //<![CDATA[
+       <!-- TMPL_IF NAME="CAN_user_editcatalogue_edit_catalogue" -->
+       /* this function open a popup to search on z3950 server.  */
+       function PopupZ3950() {
+               var strQuery = GetZ3950Terms();
+               if(strQuery){
+                       window.open("/cgi-bin/koha/cataloguing/z3950_search.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"+strQuery,"z3950search",'width=740,height=450,location=yes,toolbar=no,scrollbars=yes,resize=yes');
+               } 
+       }
+
+       /* provide Z3950 search points */
+       function GetZ3950Terms(){
+               var strQuery="&frameworkcode=";
+               <!-- TMPL_LOOP NAME='z3950_search_params' -->
+                       strQuery += "&" + "<!-- TMPL_VAR NAME="name" -->" + "=" + "<!-- TMPL_VAR NAME="encvalue" -->";
+               <!-- /TMPL_LOOP -->
+               return strQuery;
+       }
+       <!-- /TMPL_IF -->
+       function addToCart() { addRecord('<!-- TMPL_VAR NAME="biblionumber" -->'); }
        function addToShelf() { window.open('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->','Add_to_virtualshelf','width=500,height=400,toolbar=false,scrollbars=yes');
        }
        function printBiblio() {window.open('/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->','Print_Biblio','width=700,height=500,toolbar=false,scrollbars=yes');
        }
 function confirm_deletion() {
-       
                var count = <!-- TMPL_VAR NAME="count" -->;
         var is_confirmed;
        if (count>0){
@@ -15,7 +33,7 @@ function confirm_deletion() {
                    } else{
                    is_confirmed= confirm(_('Are you sure you want to delete this record? '));
        }
-   
+
      if (is_confirmed) {
         if (count>0){
        //      window.location="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->";
@@ -23,79 +41,117 @@ function confirm_deletion() {
                        window.location="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->";
                }
        } else {
-// FIXME -- THIS doesn't work.  addbiblio is still the target url after this fcn call !        
-               window.location="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->";
                return false;
        }
 }
-       //<![CDATA[
-
+function confirm_items_deletion() {
+        var count = <!-- TMPL_VAR NAME="count" -->;
+        if(count > 0){
+            if(confirm(_('Are you sure you want to delete the ' + count + ' attached items? '))){
+                window.location="/cgi-bin/koha/cataloguing/additem.pl?op=delallitems&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->";
+            }else{
+                return false;
+            }
+               }
+}
        // prepare DOM for YUI Toolbar
 
         $(document).ready(function() {
            $("#edititems").parent().remove();
            $("#duplicatebiblio").parent().remove();
                $("#deletebiblio").parent().remove();
+               $("#newitem").parent().remove();
+               $("#newsub").parent().remove();
            $("#editmenuc").empty();
+               $("#newmenuc").empty();
                $("#addtoshelfc").empty();
                $("#printbiblioc").empty();
                $("#export").remove();
-               $("#addtoshelfc").before("<li id=\"savemenuc\"></li>");
+               $("#addtoshelfc").before("<li id=\"savemenuc\"><\/li>");
+               $("#z3950searchc").empty();
            yuiToolbar();
         });
 
        // YUI Toolbar Functions
 
        function yuiToolbar() {
+               var newmenu = [
+                       {text: _("New Record"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl" },
+                       {text: _("New Item"), url: "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->#additema" },
+                       {text: _("New Subscription"), url: "/cgi-bin/koha/serials/subscription-add.pl?biblionumber_for_new_subscription=<!-- TMPL_VAR NAME="biblionumber" -->"},
+               ];
+       
            var editmenu = [
-               { text: "Edit Record", url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=&amp;op=" },
-               { text: "Edit Items", url: "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" },
-               { text: "Edit as New (Duplicate)", url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=&amp;op=duplicate" },
-                       { text: "Delete Record", url: "/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->",<!-- TMPL_IF NAME="count" -->disabled: true, <!-- /TMPL_IF --> onclick: {fn: confirm_deletion }}
+               { text: _("Edit Record"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=&amp;op=" },
+               { text: _("Edit Items"), url: "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("Attach Item"), url: "/cgi-bin/koha/cataloguing/moveitem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("Edit as New (Duplicate)"), url: "/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=&amp;op=duplicate" },
+                       { text: _("Delete Record"), onclick: {fn: confirm_deletion }<!-- TMPL_IF NAME="count" -->,id:'disabled'<!-- /TMPL_IF --> },
+            { text: _("Delete all Items"), onclick: {fn: confirm_items_deletion } }
            ];
                
                var savemenu = [
-               { text: "MODS (XML)", url: "/cgi-bin/koha/catalogue/export.pl?format=mods&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
-               { text: "Dublin Core (XML)", url: "/cgi-bin/koha/catalogue/export.pl?format=dc&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
-               { text: "MARCXML", url: "/cgi-bin/koha/catalogue/export.pl?format=marcxml&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
-               { text: "MARC (non-Unicode/MARC-8)", url: "/cgi-bin/koha/catalogue/export.pl?format=marc8&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
-               { text: "MARC (Unicode/UTF-8)", url: "/cgi-bin/koha/catalogue/export.pl?format=utf8&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("MODS (XML)"), url: "/cgi-bin/koha/catalogue/export.pl?format=mods&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("Dublin Core (XML)"), url: "/cgi-bin/koha/catalogue/export.pl?format=dc&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("MARCXML"), url: "/cgi-bin/koha/catalogue/export.pl?format=marcxml&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("MARC (non-Unicode/MARC-8)"), url: "/cgi-bin/koha/catalogue/export.pl?format=marc8&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" },
+               { text: _("MARC (Unicode/UTF-8)"), url: "/cgi-bin/koha/catalogue/export.pl?format=utf8&op=export&bib=<!-- TMPL_VAR NAME="biblionumber" -->" }
+               ];
+
+               var addtomenu = [
+               { text: _("Cart"), onclick: { fn: addToCart } },
+               { text: _("List"),  onclick: { fn: addToShelf } }
                ];
 
            new YAHOO.widget.Button({
                type: "menu",
-               label: "Save",
+               label: _("Save"),
                name: "savemenubutton",
                menu: savemenu,
                container: "savemenuc"
            });
-           
+
                new YAHOO.widget.Button({
                type: "menu",
-               label: "Edit",
+               label: _("Edit"),
                name: "editmenubutton",
                menu: editmenu,
-               container: "editmenuc",
-                       
+               container: "editmenuc"
            });
-               
-               var addtoshelfButton = new YAHOO.widget.Button({
-                                            id: "addtoshelf", 
-                                            type: "button", 
-                                            label: "Add to Shelf", 
-                                            container: "addtoshelfc",
-                                                                                       onclick: {fn: addToShelf }
-                                        });
-                                                                               
+
+               new YAHOO.widget.Button({
+               type: "menu",
+               label: _("New"),
+               name: "newmenubutton",
+               menu: newmenu,
+               container: "newmenuc"
+           });
+
+               new YAHOO.widget.Button({
+               type: "menu",
+               label: _("Add to"),
+               name: "addtomenubutton",
+               menu: addtomenu,
+               container: "addtoshelfc"
+           });
+
+               new YAHOO.widget.Button({
+                       id: "z3950search", 
+                       type: "button", 
+                       label: _("Z39.50 Search"), 
+                       container: "z3950searchc",
+                       onclick: {fn:function(){PopupZ3950()}}
+               });
+
                var printbiblioButton = new YAHOO.widget.Button({
                                             id: "printbiblio", 
                                             type: "button", 
-                                            label: "Print"
+                                            label: _("Print")
                                             container: "printbiblioc",
                                                                                        onclick: {fn: printBiblio }
                                         });
 
-           var addbiblioButton = new YAHOO.widget.Button("addbiblio");
+           var newbiblioButton = new YAHOO.widget.Button("newbiblio");
            var placeholdButton = new YAHOO.widget.Button("placehold");
                
        }
@@ -103,17 +159,25 @@ function confirm_deletion() {
        //]]>
        </script>
        
-<ul class="toolbar">
+<form method="post" name="f" id="f" action="/cgi-bin/koha/cataloguing/addbiblio.pl" onsubmit="return Check();">
 
-       <li><a id="addbiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl">New</a></li>
-       
+<ul class="toolbar">
+       <!-- TMPL_IF NAME="CAN_user_editcatalogue_edit_catalogue" -->
+       <li id="newmenuc"><a id="newbiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl">New Record</a></li>
+       <li><a id="newitem" href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">New Item</a></li>
+       <li><a id="newsub" href="/cgi-bin/koha/serials/subscription-add.pl?biblionumber_for_new_subscription=<!-- TMPL_VAR NAME="biblionumber" -->">New Subscription</a></li>
        <li id="editmenuc"><a id="editbiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=<!--TMPL_VAR Name="current_framework" -->&amp;op=">Edit Record</a></li>
        <li><a id="edititems" href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Edit Items</a></li>
        <li><a id="duplicatebiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&amp;frameworkcode=<!--TMPL_VAR Name="current_framework" -->&amp;op=duplicate">Duplicate Record</a></li>
        <li><a id="deletebiblio" href="/cgi-bin/koha/cataloguing/addbiblio.pl?op=delete&amp;biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Delete</a></li>
-       
+       <!-- /TMPL_IF -->       
        <li id="addtoshelfc"><a id="addtoshelf" href="/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Add to shelf</a></li>
        <li id="printbiblioc"><a id="printbiblio" href="/cgi-bin/koha/catalogue/detailprint.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Print</a></li>
-        <!-- TMPL_UNLESS name="bi_notforloan" -->
-       <!-- TMPL_UNLESS NAME="norequests" --><li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a></li><!-- /TMPL_UNLESS --><!-- TMPL_UNLESS -->
-</ul></div>
+       <!-- TMPL_IF NAME="CAN_user_reserveforothers" -->
+       <!-- TMPL_UNLESS NAME="norequests" --><li><a id="placehold" href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Place Hold</a></li><!-- /TMPL_UNLESS -->
+       <!-- /TMPL_IF -->
+       <!-- TMPL_IF NAME="CAN_user_editcatalogue_edit_catalogue" --><li id="z3950searchc"><input type="button" id="z3950search" value="Z39.50 Search" onclick="PopupZ3950(); return false;" /></li><!-- /TMPL_IF -->
+    </ul>
+</form>
+</div>
+