1 <script type="text/javascript">
3 // prepare DOM for YUI Toolbar
4 $(document).ready(function() {
5 $("#layoutsc").empty();
6 $("#templatesc").empty();
7 $("#profilesc").empty();
12 // YUI Toolbar Functions
13 function yuiToolbar() {
15 {text: _("Manage Layouts"), url: "/cgi-bin/koha/labels/label-manage.pl?label_element=layout" },
16 {text: _("New Layout"), url: "/cgi-bin/koha/labels/label-edit-layout.pl?op=new" }
20 {text: _("Manage Templates"), url: "/cgi-bin/koha/labels/label-manage.pl?label_element=template" },
21 {text: _("New Template"), url: "/cgi-bin/koha/labels/label-edit-template.pl?op=new" }
25 {text: _("Manage Profiles"), url: "/cgi-bin/koha/labels/label-manage.pl?label_element=profile" },
26 {text: _("New Profile"), url: "/cgi-bin/koha/labels/label-edit-profile.pl?op=new" }
30 {text: _("Manage Batches"), url: "/cgi-bin/koha/labels/label-manage.pl?label_element=batch" },
31 {text: _("New Batch"), url: "/cgi-bin/koha/labels/label-edit-batch.pl?op=new" }
34 new YAHOO.widget.Button({
42 new YAHOO.widget.Button({
44 label: _("Templates"),
47 container: "templatesc"
50 new YAHOO.widget.Button({
55 container: "profilesc"
58 new YAHOO.widget.Button({
70 <li id="layoutsc"><a id="layouts" href="#">Layouts</a></li>
71 <li id="templatesc"><a id="templates" href="#">Templates</a></li>
72 <li id="profilesc"><a id="profiles" href="#">Profiles</a></li>
73 <li id="batchesc"><a id="batches" href="#">Batches</a></li>