import rt 3.0.12
[freeside.git] / rt / html / Admin / Global / UserRights.html
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/Header, Title => loc('Modify global user rights') &>
25 <& /Admin/Elements/SystemTabs, 
26     current_tab => 'Admin/Global/UserRights.html',
27     Title => loc('Modify global user rights') &>  
28 <& /Elements/ListActions, actions => \@results &>
29
30   <FORM METHOD=POST ACTION="UserRights.html">
31       
32 <& /Elements/TitleBoxStart, title => loc('Modify global user rights.') &>
33       
34 <TABLE>
35         
36 %       while (my $Member = $Users->Next()) {
37 % my $UserObj = $Member->MemberObj->Object();
38 % my $group = RT::Group->new($session{'CurrentUser'});
39 % $group->LoadACLEquivalenceGroup($Member->MemberObj);
40   <TR ALIGN=RIGHT> 
41         <TD VALIGN=TOP>
42             <% $UserObj->Name %>
43                   </TD>
44           <TD>
45             <& /Admin/Elements/SelectRights, PrincipalId => $group->PrincipalId,
46         Object => $RT::System  &>
47           </TD>
48         </TR>
49 % }
50 </TABLE>
51             
52       <& /Elements/TitleBoxEnd &>
53       <& /Elements/Submit, Label => loc('Modify User Rights'), Reset => 1 &>
54       
55   </FORM>
56   
57 <%INIT>
58  
59   #Update the acls.
60   my @results =  ProcessACLChanges(\%ARGS);
61
62 # {{{ Deal with setting up the display of current rights.
63
64
65 # Find out which users we want to display ACL selects for
66 my $Privileged = RT::Group->new($session{'CurrentUser'});
67 $Privileged->LoadSystemInternalGroup('Privileged');
68 my $Users = $Privileged->MembersObj();
69
70     
71   
72 # }}}
73     
74 </%INIT>
75
76 <%ARGS>
77 </%ARGS>