[Rt-commit] r2262 - in rt/branches/3.4-RELEASE: .
html/Admin/Global/CustomFields
jesse at bestpractical.com
jesse at bestpractical.com
Thu Feb 24 17:51:55 EST 2005
Author: jesse
Date: Thu Feb 24 17:51:53 2005
New Revision: 2262
Modified:
rt/branches/3.4-RELEASE/ (props changed)
rt/branches/3.4-RELEASE/html/Admin/Global/CustomFields/index.html
Log:
r5947 at hualien: jesse | 2005-02-24 16:46:11 -0500
Refactoring Custom Field admin UI for extensibility
Modified: rt/branches/3.4-RELEASE/html/Admin/Global/CustomFields/index.html
==============================================================================
--- rt/branches/3.4-RELEASE/html/Admin/Global/CustomFields/index.html (original)
+++ rt/branches/3.4-RELEASE/html/Admin/Global/CustomFields/index.html Thu Feb 24 17:51: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