import Net::Whois::Raw into install/5.005 directory *sigh*
[freeside.git] / rt / html / User / 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 <& /User/Elements/Tabs, 
25     subtabs => $tabs, 
26     current_tab => 'User/Groups/', 
27     current_subtab => $current_subtab, 
28     Title => $Title &>
29
30 <%INIT>
31 my $tabs;
32 if ( $GroupObj and $GroupObj->id ) {
33     $tabs->{"this"} = {
34         title   => $GroupObj->Name,
35         path    => "User/Groups/Modify.html?id=" . $GroupObj->id,
36         subtabs => {
37             Basics => { title => loc('Basics'),
38                         path  => "User/Groups/Modify.html?id=" . $GroupObj->id
39             },
40
41             Members => { title => loc('Members'),
42                          path  => "User/Groups/Members.html?id=" . $GroupObj->id
43             },
44
45         } };
46         $tabs->{'this'}->{'current_subtab'} = $current_subtab;
47          $current_subtab = "User/Groups/Modify.html?id=" . $GroupObj->id,
48 }
49 $tabs->{"A"} = { title => loc('Select group'),
50                  path  => "User/Groups/index.html" };
51 $tabs->{"B"} = { title     => loc('New group'),
52                  path      => "User/Groups/Modify.html?Create=1",
53                  separator => 1 };
54
55 </%INIT>
56 <%ARGS>
57 $GroupObj => undef
58 $current_subtab => undef
59 $Title => undef
60 </%ARGS>