This commit was generated by cvs2svn to compensate for changes in r8690,
[freeside.git] / rt / share / 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->Config->Get('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 <% loc($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 % $m->callback( %ARGS, GroupObj => $Group, results => \@results );
93 </table>
94 % if ( $Create ) {
95 <& /Elements/Submit, Label => loc('Create'), Reset => 1 &>
96 % } else {
97 <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &>
98 % }
99 </form>
100 <%INIT>
101
102 my $current_tab;
103 my  ($title, @results, $Disabled, $EnabledChecked);
104
105 my $Group = RT::Group->new($session{'CurrentUser'});
106
107 if ($Create) {
108     $current_tab = 'Admin/Groups/Modify.html?Create=1';
109     $title = loc("Create a new group");
110
111
112 else {
113     $current_tab = 'Admin/Groups/Modify.html?id='.$id;
114     if ($id eq 'new' ) {
115         
116         my ($create_id, $create_msg) = $Group->CreateUserDefinedGroup(Name =>
117     "$Name");
118         unless ($create_id) {
119             Abort (loc("Group could not be created: [_1]", $create_msg));
120      }
121         $id = $Group->Id;
122     }
123     else {
124         $Group->Load($id) || Abort('Could not load group');
125     }
126
127
128     if ($id) {
129         $title = loc("Modify the group [_1]", $Group->Name);
130
131     }   
132
133     # If the create failed
134     else {
135         $title = loc("Create a new group");
136         $Create = 1;
137     }    
138     
139 }
140
141 if ($id) {
142     
143     my @fields = qw(Description Name );
144     my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields,
145                                             Object => $Group,
146                                             ARGSRef => \%ARGS );
147     push (@results,@fieldresults);
148     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $Group );
149 }
150
151 #we're asking about enabled on the web page but really care about disabled.
152 if (defined $Enabled && $Enabled == 1) {
153     $Disabled = 0;
154 }       
155 else {
156     $Disabled = 1;
157 }
158 if  ( ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { 
159     my  ($code, $msg) = $Group->SetDisabled($Disabled);
160     push @results, $msg;
161 }
162
163 unless ($Group->Disabled()) {
164     $EnabledChecked ='checked="checked"';
165 }
166
167
168 </%INIT>
169
170
171 <%ARGS>
172 $Create => undef
173 $Name => undef
174 $Description => undef
175 $SetEnabled => undef
176 $Enabled => undef
177 $id => '' unless defined $id
178 </%ARGS>