import rt 3.6.6
[freeside.git] / rt / html / Admin / Queues / 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 <& /Admin/Elements/QueueTabs, id => $QueueObj->id, 
50     QueueObj => $QueueObj,
51     current_tab => $current_tab, 
52     Title => $title &>
53 <& /Elements/ListActions, actions => \@results &>
54
55
56
57 <form action="<%$RT::WebPath%>/Admin/Queues/Modify.html" method="post">
58 %if ($Create ) { 
59 <input type="hidden" class="hidden" name="id" value="new" />
60 % } else {
61 <input type="hidden" class="hidden" name="id" value="<%$QueueObj->Id%>" />
62 % }
63
64 <table>
65 <tr><td align="right">
66 <&|/l&>Queue Name</&>: 
67 </td>
68 <td><input name="Name" value="<% ($Create) ? "" : $QueueObj->Name %>" /></td>
69 </tr><tr>
70 <td align="right">
71 <&|/l&>Description</&>:</td><td colspan="3"><input name="Description" value="<% ($Create) ? "" : $QueueObj->Description %>" size="60" /></td></tr>
72 <tr>
73 <td align="right">
74 <&|/l&>Reply Address</&>:
75 </td><td>
76 <input name="CorrespondAddress" value="<% ($Create) ? "" : $QueueObj->CorrespondAddress %>" />
77 <br /><span><em><&|/l , $RT::CorrespondAddress&>(If left blank, will default to [_1])</&></em></span>
78 </td>
79 <td align="right">
80
81 <&|/l&>Comment Address</&>: </td><td>
82 <input name="CommentAddress" value="<% ($Create) ? "" : $QueueObj->CommentAddress %>" />
83 <br /><span><em><&|/l , $RT::CommentAddress&>(If left blank, will default to [_1])</&></em></span>
84 </td>
85 </tr><tr>
86
87 <td align="right">
88 <&|/l&>Priority starts at</&>: 
89 </td><td><input name="InitialPriority" value="<% ($Create) ? "" : $QueueObj->InitialPriority %>" />
90 </td>
91 <td align="right">
92 <&|/l&>Over time, priority moves toward</&>:
93 </td><td><input name="FinalPriority" value="<% ($Create) ? "" : $QueueObj->FinalPriority %>" />
94 </td>
95 </tr>
96 <tr>
97 <td align="right">
98 <&|/l&>Requests should be due in</&>:
99 </td><td>
100 <input name="DefaultDueIn" value="<% ($Create) ? "" : $QueueObj->DefaultDueIn%>" /> <&|/l&>days</&>.
101 </td>
102 </tr>
103 <tr>
104 <td>
105 </td>
106 <td colspan="4"><input type="hidden" class="hidden" name="SetEnabled" value="1" />
107 <input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked%> /> <&|/l&>Enabled (Unchecking this box disables this queue)</&><br />
108 <& /Elements/Callback, QueueObj => $QueueObj, results => \@results, %ARGS &>
109 </td>
110 </tr>
111
112 </table>
113 <& /Elements/Submit, Label => loc('Save Changes') &>
114 </form>
115
116
117
118 <%INIT>
119 my $current_tab;
120 my $QueueObj = new RT::Queue($session{'CurrentUser'});
121 $QueueObj->Load($id);
122 my  ($title, @results, $Disabled, $EnabledChecked);
123 $EnabledChecked = "CHECKED";
124
125 if ($Create) {
126     $current_tab = 'Admin/Queues/Modify.html?Create=1';
127     $title = loc("Create a queue");
128 } else {
129     if ($id eq 'new') {
130        my ($val, $msg) =  $QueueObj->Create(Name => $Name);
131        delete $session{'create_in_queues'};
132        if ($val == 0 ) {
133            Abort("$msg");
134         }
135         else {
136                 push @results, $msg;
137         }    
138      }
139      else {
140         $QueueObj->Load($id) || $QueueObj->Load($Name) || Abort("Couldn't load queue '$Name'");
141     }
142         $title = loc('Editing Configuration for queue [_1]', $QueueObj->Name);
143     
144     $current_tab = 'Admin/Queues/Modify.html?id='.$QueueObj->id;
145 }
146 if ($QueueObj->Id()) {
147     delete $session{'create_in_queues'};
148 my @attribs= qw(Description CorrespondAddress CommentAddress Name 
149                 InitialPriority FinalPriority DefaultDueIn);
150
151   @results = UpdateRecordObject( AttributesRef => \@attribs, 
152                                     Object => $QueueObj, 
153                                     ARGSRef => \%ARGS);
154
155   #we're asking about enabled on the web page but really care about disabled.
156   if ($Enabled == 1) {
157       $Disabled = 0;
158   }     
159   else {
160       $Disabled = 1;
161   }
162   if  ( ($SetEnabled) and ( $Disabled != $QueueObj->Disabled) ) { 
163       my  ($code, $msg) = $QueueObj->SetDisabled($Disabled);
164       push @results, loc('Enabled status: [_1]', loc_fuzzy($msg));
165   }
166   
167   if ($QueueObj->Disabled()) {
168       $EnabledChecked ="";
169   }
170
171     my @linkresults;
172     $m->comp('/Elements/Callback', results => \@linkresults, 
173              RecordObj => $QueueObj, ARGSRef => \%ARGS, 
174              _CallbackName => 'ProcessLinks');
175     push @results, @linkresults;
176 }
177 </%INIT>
178
179
180 <%ARGS>
181 $id => undef
182 $result => undef
183 $Name => undef
184 $Create => undef
185 $Description => undef
186 $CorrespondAddress => undef
187 $CommentAddress => undef
188 $InitialPriority => undef
189 $FinalPriority => undef
190 $DefaultDueIn => undef
191 $SetEnabled => undef
192 $Enabled => undef
193 </%ARGS>