import rt 3.8.10
[freeside.git] / rt / html / User / Groups / Modify.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC 
6 %#                                          <jesse@bestpractical.com>
7 %# 
8 %# (Except where explicitly superseded by other copyright notices)
9 %# 
10 %# 
11 %# LICENSE:
12 %# 
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %# 
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %# 
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %# 
29 %# 
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %# 
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %# 
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %# 
47 %# END BPS TAGGED BLOCK }}}
48 <& /Elements/Header, Title => $title &>
49
50 <& /User/Elements/GroupTabs, 
51     GroupObj => $Group, 
52     current_subtab => $current_tab, 
53     Title => $title &>
54
55 <& /Elements/ListActions, actions => \@results &>
56
57
58 <form action="<%$RT::WebPath%>/User/Groups/Modify.html" method="post">
59
60 %unless ($Group->Id) {
61 <input type="hidden" class="hidden" name="id" value="new" />
62 % } else {
63 <input type="hidden" class="hidden" name="id" value="<%$Group->Id%>" />
64 % }
65 <table>
66 <tr><td align="right">
67 <&|/l&>Name</&>:
68 </td>
69 <td><input name="Name" value="<%$Group->Name%>" /></td>
70 </tr><tr>
71 <td align="right">
72 <&|/l&>Description</&>:</td><td colspan="3"><input name="Description" value="<%$Group->Description%>" size="60" /></td>
73 </tr><tr>
74 <td colspan="2">
75 <input type="hidden" class="hidden" name="SetEnabled" value="1" />
76 <input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked%> /> <&|/l&>Enabled (Unchecking this box disables this group)</&><br />
77 </tr>
78 </table>
79 <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &>
80 </form>
81 <%INIT>
82
83 my $current_tab;
84 my  ($title, @results, $Disabled, $EnabledChecked);
85
86 my $Group = RT::Group->new($session{'CurrentUser'});
87
88 if ($Create) {
89     $current_tab = 'User/Groups/Modify.html?Create=1';
90     $title = loc("Create a new personal group");
91
92 else {
93     if ( $id eq 'new' ) {
94
95         my ( $id, $msg ) = $Group->CreatePersonalGroup(
96                              Name        => "$Name",
97                              PrincipalId => $session{'CurrentUser'}->PrincipalId
98         );
99         unless ($id) {
100             Abort( loc("Could not create group") );
101         }
102         $id = $Group->Id;
103     }
104     else {
105         $Group->Load($id) || Abort( loc('Could not load group') );
106     }
107
108     if ($id) {
109         $title = loc( "Modify the group [_1]", $Group->Name );
110
111     }
112
113     # If the create failed
114     else {
115         $title  = loc("Create a new personal group");
116         $Create = 1;
117     }
118
119     $current_tab = 'User/Groups/Modify.html?id=' . $Group->Id;
120 }
121
122 if ($id) {
123     
124     my @fields = qw(Description Name );
125     my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields,
126                                             Object => $Group,
127                                             ARGSRef => \%ARGS );
128     push (@results,@fieldresults);
129 }
130
131 #we're asking about enabled on the web page but really care about disabled.
132 if ($Enabled == 1) {
133     $Disabled = 0;
134 }       
135 else {
136     $Disabled = 1;
137 }
138 if  ( ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { 
139     my  ($code, $msg) = $Group->SetDisabled($Disabled);
140     push @results, loc('Enabled status [_1]', loc_fuzzy($msg));
141 }
142
143 unless ($Group->Disabled()) {
144     $EnabledChecked ="CHECKED";
145 }
146
147 </%INIT>
148
149
150 <%ARGS>
151 $Create => undef
152 $Name => undef
153 $Description => undef
154 $SetEnabled => undef
155 $Enabled => undef
156 $id => undef
157 </%ARGS>