import of rt 3.0.4
[freeside.git] / rt / html / Admin / Elements / GroupTabs
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, 
25     subtabs => $tabs, 
26     current_tab => 'Admin/Groups/', 
27     current_subtab => $current_tab, 
28     Title => $Title &>
29 <%INIT>
30 my $tabs;
31
32 if ( $GroupObj and $GroupObj->id ) {
33 $tabs->{"this"} = { class => "currentnav",                                                           
34                     path  => "Admin/Groups/Modify.html?id=" . $GroupObj->id,
35                     title => $GroupObj->Name,
36                     current_subtab => $current_subtab,
37         subtabs => {
38         C => { title => loc('Basics'),
39                path  => "Admin/Groups/Modify.html?id=" . $GroupObj->id },
40
41         D => { title => loc('Members'),
42                path  => "Admin/Groups/Members.html?id=" . $GroupObj->id },
43
44         F => { title => loc('Group Rights'),
45                path  => "Admin/Groups/GroupRights.html?id=" . $GroupObj->id, },
46         G => { title => loc('User Rights'),
47                path  => "Admin/Groups/UserRights.html?id=" . $GroupObj->id, },
48     }
49 }
50 }
51 $tabs->{"A"} = { title => loc('Select group'),
52                  path  => "Admin/Groups/", };
53 $tabs->{"B"} = { title     => loc('New group'),
54                  path      => "Admin/Groups/Modify.html?Create=1",
55                  separator => 1, };
56
57 # Now let callbacks add their extra tabs
58 $m->comp( '/Elements/Callback', tabs => $tabs, %ARGS );
59 foreach my $tab ( sort keys %{$tabs->{'this'}->{'subtabs'}} ) {  
60     if ( $tabs->{'this'}->{'subtabs'}->{$tab}->{'path'} eq $current_tab ) {
61         $tabs->{'this'}->{'subtabs'}->{$tab}->{"subtabs"}        = $subtabs; 
62         $tabs->{'this'}->{'subtabs'}->{$tab}->{"current_subtab"} = $current_subtab; 
63     }                                                                           
64 }   
65         $tabs->{'this'}->{"current_subtab"} = $current_tab; 
66         $current_tab = "Admin/Groups/Modify.html?id=".$GroupObj->id if $GroupObj;
67
68 </%INIT>
69 <%ARGS>
70 $GroupObj => undef
71 $subtabs => undef
72 $current_subtab => undef
73 $current_tab => undef
74 $Title => undef
75 </%ARGS>
76