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