1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<& /Elements/Tabs, tabs => $tabs, subtabs => $subtabs, current_toptab => 'Admin/', current_tab => $current_tab, current_subtab => $current_subtab&>
<hr>
<%INIT>
my $tabs = { Users => { title => 'Users',
path => 'Admin/Users/',
},
Groups => { title => 'Groups',
path => 'Admin/Groups/',
},
Queues => { title => 'Queues',
path => 'Admin/Queues/',
},
System => { 'title' => 'Global',
path => 'Admin/Global/',
},
Keywords => { title => 'Keywords',
path => 'Admin/Keywords/',
},
};
</%INIT>
<%ARGS>
$subtabs => undef
$current_tab => undef
$current_subtab => undef
</%ARGS>
|