This commit was generated by cvs2svn to compensate for changes in r3874,
[freeside.git] / rt / html / Admin / Elements / UserTabs
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/Users/',
27     current_subtab => $current_tab,
28     Title => $Title &>
29 <%INIT>
30 my $tabs;
31 if ($id) {
32         $tabs->{'this'} = {
33                 title => eval { $UserObj->Name },
34                 path => "Admin/Users/Modify.html?id=".$id,
35                 current_subtab => $current_tab,
36                 subtabs => {
37                         A => { title => loc('Basics'),
38                                 path => "Admin/Users/Modify.html?id=".$id
39                         },
40                 }
41         }
42 }
43
44 if ( $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'AdminUsers') ) {
45         $tabs->{"A"} = {
46                 title => loc('Select user'),
47                 path => "Admin/Users/",
48         };
49         $tabs->{"B"} = {
50                 title => loc('New user'),
51                 path => "Admin/Users/Modify.html?Create=1",
52                 separator => 1,
53         };
54 }
55
56 # Now let callbacks add their extra tabs
57 $m->comp('/Elements/Callback', tabs => $tabs, %ARGS);
58
59 foreach my $tab ( sort keys %{$tabs->{'this'}->{'subtabs'}} ) {
60         if ( $tabs->{'this'}->{'subtabs'}->{$tab}->{'path'} eq $current_tab ) {
61                 $tabs->{'this'}->{"current_subtab"} = $current_tab; 
62                 $tabs->{'this'}->{'subtabs'}->{$tab}->{"current_subtab"} = $current_subtab; 
63                 $tabs->{'this'}->{'subtabs'}->{$tab}->{"subtabs"} = $subtabs; 
64         }
65 }
66
67 $current_tab = "Admin/Users/Modify.html?id=".$id if $id;
68
69 </%INIT>
70 <%ARGS>
71 $UserObj => undef
72 $id => undef
73 $current_tab => undef
74 $subtabs => undef
75 $current_subtab => undef
76 $Title => undef
77 </%ARGS>