import of rt 3.0.4
[freeside.git] / rt / html / Admin / Elements / SystemTabs
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Admin/Elements/Tabs, subtabs => $tabs, 
25     current_tab => 'Admin/Global/', 
26     current_subtab => $current_tab, 
27     Title => $Title &>
28
29 <%INIT>
30   my $tabs = {
31                 
32                A => { title => loc('Scrips'),
33                            path => 'Admin/Global/Scrips.html',
34                          },
35                B => { title => loc('Templates'),
36                         path => 'Admin/Global/Templates.html',
37                       },
38               
39                 F => { title => loc('Custom Fields'),
40                         path => 'Admin/Global/CustomFields.html',
41                         },
42
43                 G => { title => loc('Group Rights'),
44                                 path => 'Admin/Global/GroupRights.html',
45                       },
46                 H => { title => loc('User Rights'),
47                                 path => 'Admin/Global/UserRights.html',
48                       }
49
50 };
51
52   # Now let callbacks add their extra tabs
53   $m->comp('/Elements/Callback', tabs => $tabs, %ARGS);
54
55   foreach my $tab (sort keys %{$tabs}) {
56     if ($tabs->{$tab}->{'path'} eq $current_tab) {
57       $tabs->{$tab}->{"subtabs"} = $subtabs;
58       $tabs->{$tab}->{"current_subtab"} = $current_subtab;
59     }
60   }
61 </%INIT>
62
63   
64 <%ARGS>
65 $id => undef
66 $current_tab => undef
67 $subtabs => undef
68 $current_subtab => undef
69 $Title => undef
70 </%ARGS>