import rt 3.6.4
[freeside.git] / rt / html / Admin / Groups / Modify.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2007 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/copyleft/gpl.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 <& /Admin/Elements/Header, Title => $title  &>
49
50 <& /Admin/Elements/GroupTabs, 
51     GroupObj => $Group, 
52     current_tab => $current_tab, 
53     Title => $title &>
54 <& /Elements/ListActions, actions => \@results &>
55
56
57
58 <form action="<%$RT::WebPath%>/Admin/Groups/Modify.html" method="post" enctype="multipart/form-data">
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>
71 <tr>
72 <td align="right">
73 <&|/l&>Description</&>:</td><td colspan="3"><input name="Description" value="<%$Group->Description%>" size="60" /></td>
74 </tr>
75 % my $CFs = $Group->CustomFields;
76 % while (my $CF = $CFs->Next) {
77 <tr valign="top"><td align="right">
78 <% $CF->Name %>:
79 </td><td>
80 <& /Elements/EditCustomField, CustomField => $CF, Object => $Group &>
81 </td></tr>
82 % }
83 <tr>
84 <td colspan="2">
85 <input type="hidden" class="hidden" name="SetEnabled" value="1" />
86 <input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked%> /> <&|/l&>Enabled (Unchecking this box disables this group)</&><br />
87 </tr>
88 <& /Elements/Callback, GroupObj => $Group, results => \@results, %ARGS &>
89 </table>
90 <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &>
91 </form>
92 <%INIT>
93
94 my $current_tab;
95 my  ($title, @results, $Disabled, $EnabledChecked);
96
97 my $Group = RT::Group->new($session{'CurrentUser'});
98
99 if ($Create) {
100     $current_tab = 'Admin/Groups/Modify.html?Create=1';
101     $title = loc("Create a new group");
102
103
104 else {
105     $current_tab = 'Admin/Groups/Modify.html?id='.$id;
106     if ($id eq 'new' ) {
107         
108         my ($create_id, $create_msg) = $Group->CreateUserDefinedGroup(Name =>
109     "$Name");
110         unless ($create_id) {
111             Abort (loc("Group could not be created: [_1]", $create_msg));
112      }
113         $id = $Group->Id;
114     }
115     else {
116         $Group->Load($id) || Abort('Could not load group');
117     }
118
119
120     if ($id) {
121         $title = loc("Modify the group [_1]", $Group->Name);
122
123     }   
124
125     # If the create failed
126     else {
127         $title = loc("Create a new group");
128         $Create = 1;
129     }    
130     
131 }
132
133 if ($id) {
134     
135     my @fields = qw(Description Name );
136     my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields,
137                                             Object => $Group,
138                                             ARGSRef => \%ARGS );
139     push (@results,@fieldresults);
140     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $Group );
141 }
142
143 #we're asking about enabled on the web page but really care about disabled.
144 if ($Enabled == 1) {
145     $Disabled = 0;
146 }       
147 else {
148     $Disabled = 1;
149 }
150 if  ( ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { 
151     my  ($code, $msg) = $Group->SetDisabled($Disabled);
152     push @results, loc('Enabled status [_1]', loc_fuzzy($msg));
153 }
154
155 unless ($Group->Disabled()) {
156     $EnabledChecked ="CHECKED";
157 }
158
159
160 </%INIT>
161
162
163 <%ARGS>
164 $Create => undef
165 $Name => undef
166 $Description => undef
167 $SetEnabled => undef
168 $Enabled => undef
169 $id => undef
170 </%ARGS>