import rt 3.8.8
[freeside.git] / rt / html / Admin / 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 <& /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, 
81                               Object => $Group, 
82                               ($Create ? (NamePrefix => 'Object-RT::Group--CustomField-') 
83                                        : () )&>
84 </td></tr>
85 % }
86 <tr>
87 <td colspan="2">
88 <input type="hidden" class="hidden" name="SetEnabled" value="1" />
89 <input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked%> /> <&|/l&>Enabled (Unchecking this box disables this group)</&><br />
90 </td>
91 </tr>
92 <& /Elements/Callback, GroupObj => $Group, results => \@results, %ARGS &>
93 </table>
94 <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &>
95 </form>
96 <%INIT>
97
98 my $current_tab;
99 my  ($title, @results, $Disabled, $EnabledChecked);
100
101 my $Group = RT::Group->new($session{'CurrentUser'});
102
103 if ($Create) {
104     $current_tab = 'Admin/Groups/Modify.html?Create=1';
105     $title = loc("Create a new group");
106
107
108 else {
109     $current_tab = 'Admin/Groups/Modify.html?id='.$id;
110     if ($id eq 'new' ) {
111         
112         my ($create_id, $create_msg) = $Group->CreateUserDefinedGroup(Name =>
113     "$Name");
114         unless ($create_id) {
115             Abort (loc("Group could not be created: [_1]", $create_msg));
116      }
117         $id = $Group->Id;
118     }
119     else {
120         $Group->Load($id) || Abort('Could not load group');
121     }
122
123
124     if ($id) {
125         $title = loc("Modify the group [_1]", $Group->Name);
126
127     }   
128
129     # If the create failed
130     else {
131         $title = loc("Create a new group");
132         $Create = 1;
133     }    
134     
135 }
136
137 if ($id) {
138     
139     my @fields = qw(Description Name );
140     my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields,
141                                             Object => $Group,
142                                             ARGSRef => \%ARGS );
143     push (@results,@fieldresults);
144     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $Group );
145 }
146
147 #we're asking about enabled on the web page but really care about disabled.
148 if ($Enabled == 1) {
149     $Disabled = 0;
150 }       
151 else {
152     $Disabled = 1;
153 }
154 if  ( ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { 
155     my  ($code, $msg) = $Group->SetDisabled($Disabled);
156     push @results, loc('Enabled status [_1]', loc_fuzzy($msg));
157 }
158
159 unless ($Group->Disabled()) {
160     $EnabledChecked ="CHECKED";
161 }
162
163
164 </%INIT>
165
166
167 <%ARGS>
168 $Create => undef
169 $Name => undef
170 $Description => undef
171 $SetEnabled => undef
172 $Enabled => undef
173 $id => undef
174 </%ARGS>