[Rt-commit] r2441 - in rt/branches/PLATANO-EXPERIMENTAL-CSS: .
html/Admin/Global/CustomFields
jesse at bestpractical.com
jesse at bestpractical.com
Mon Mar 14 03:01:54 EST 2005
Author: jesse
Date: Mon Mar 14 03:01:53 2005
New Revision: 2441
Modified:
rt/branches/PLATANO-EXPERIMENTAL-CSS/ (props changed)
rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Admin/Global/CustomFields/index.html
Log:
r8601 at hualien: jesse | 2005-03-14 02:42:41 -0500
r8489 at hualien: jesse | 2005-03-14 02:27:51 -0500
r5947 at hualien: jesse | 2005-02-24 16:46:11 -0500
Refactoring Custom Field admin UI for extensibility
Modified: rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Admin/Global/CustomFields/index.html
==============================================================================
--- rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Admin/Global/CustomFields/index.html (original)
+++ rt/branches/PLATANO-EXPERIMENTAL-CSS/html/Admin/Global/CustomFields/index.html Mon Mar 14 03:01:53 2005
@@ -56,28 +56,36 @@
</ul>
<%INIT>
-my $title = loc("Global custom field configuration");
+my $title = loc("Global custom field configuration");
+
+my $tabs = {
+
+ A => {
+ title => loc('Users'),
+ text => loc('Select custom fields for all users'),
+ path => 'Users.html',
+ },
+ B => {
+ title => loc('Groups'),
+ text => loc('Select custom fields for all user groups'),
+ path => 'Groups.html',
+ },
+
+ F => {
+ title => loc('Tickets'),
+ text => loc('Select custom fields for tickets in all queues'),
+ path => 'Queue-Tickets.html',
+ },
+
+ G => {
+ title => loc('Ticket Transactions'),
+ text =>
+ loc('Select custom fields for transactions on tickets in all queues'),
+ path => 'Queue-Transactions.html',
+ },
- my $tabs = {
-
- A => { title => loc('Users'),
- text => loc('Select custom fields for all users'),
- path => 'Users.html',
- },
- B => { title => loc('Groups'),
- text => loc('Select custom fields for all user groups'),
- path => 'Groups.html',
- },
-
- F => { title => loc('Tickets'),
- text => loc('Select custom fields for tickets in all queues'),
- path => 'Queue-Tickets.html',
- },
-
- G => { title => loc('Ticket Transactions'),
- text => loc('Select custom fields for transactions on tickets in all queues'),
- path => 'Queue-Transactions.html',
- },
-
};
+
+
+$m->comp('/Elements/Callback', tabs => $tabs);
</%INIT>
More information about the Rt-commit
mailing list