[Rt-commit] r16474 - in rt/branches/3.999-DANGEROUS/share/html/Admin: Global

ruz at bestpractical.com ruz at bestpractical.com
Tue Oct 21 22:18:17 EDT 2008


Author: ruz
Date: Tue Oct 21 22:18:17 2008
New Revision: 16474

Modified:
   rt/branches/3.999-DANGEROUS/share/html/Admin/Elements/SystemTabs
   rt/branches/3.999-DANGEROUS/share/html/Admin/Global/index.html

Log:
* register new status schemas management interface in admin navigation menus

Modified: rt/branches/3.999-DANGEROUS/share/html/Admin/Elements/SystemTabs
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Admin/Elements/SystemTabs	(original)
+++ rt/branches/3.999-DANGEROUS/share/html/Admin/Elements/SystemTabs	Tue Oct 21 22:18:17 2008
@@ -59,6 +59,9 @@
                B => { title => _('Templates'),
                         path => 'Admin/Global/Templates.html',
                       },
+                C => { title => _('Status Schemas'),
+                        path => 'Admin/Global/StatusSchemas/index.html',
+                        },
               
                 F => { title => _('Custom Fields'),
                         path => 'Admin/Global/CustomFields/index.html',

Modified: rt/branches/3.999-DANGEROUS/share/html/Admin/Global/index.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/html/Admin/Global/index.html	(original)
+++ rt/branches/3.999-DANGEROUS/share/html/Admin/Global/index.html	Tue Oct 21 22:18:17 2008
@@ -52,36 +52,41 @@
 <& /Elements/ListMenu, items => $tabs &>
 </&>
 <%INIT>
-  my $tabs = {
-                
-               A => { title => _('Scrips'),
-                           text => _('Modify scrips which apply to all queues'),
-                           path => '/Admin/Global/Scrips.html',
-                         },
-               B => { title => _('Templates'),
-                        text => _('Edit system templates'),
-                        path => '/Admin/Global/Templates.html',
-                      },
-              
-                F => { title => _('Custom Fields'),
-                text => _('Modify global custom fields'),
-                        path => '/Admin/Global/CustomFields/index.html',
-                        },
-
-                G => { title => _('Group rights'),
-                                text => _('Modify global group rights'),
-                                path => '/Admin/Global/GroupRights.html',
-                      },
-                H => { title => _('User rights'),
-                                text => _('Modify global user rights'),
-                                path => '/Admin/Global/UserRights.html',
-                      },
-                I => { title => _('RT at a glance'),
-                                text => _('Modify the default "RT at a glance" view'),
-                                path => '/Admin/Global/MyRT.html',
-                      },
-
-
-
+my $tabs = {
+    A => {
+        title => _('Scrips'),
+        text  => _('Modify scrips which apply to all queues'),
+        path  => '/Admin/Global/Scrips.html',
+    },
+    B => {
+        title => _('Templates'),
+        text  => _('Edit system templates'),
+        path  => '/Admin/Global/Templates.html',
+    },
+    C => {
+        title => _('Status Schemas'),
+        text  => _('Modify system status schemas'),
+        path  => '/Admin/Global/StatusSchemas/index.html',
+    },
+    F => {
+        title => _('Custom Fields'),
+        text  => _('Modify global custom fields'),
+        path  => '/Admin/Global/CustomFields/index.html',
+    },
+    G => {
+        title => _('Group rights'),
+        text  => _('Modify global group rights'),
+        path  => '/Admin/Global/GroupRights.html',
+    },
+    H => {
+        title => _('User rights'),
+        text  => _('Modify global user rights'),
+        path  => '/Admin/Global/UserRights.html',
+    },
+    I => {
+        title => _('RT at a glance'),
+        text  => _('Modify the default "RT at a glance" view'),
+        path  => '/Admin/Global/MyRT.html',
+    },
 };
 </%INIT>


More information about the Rt-commit mailing list