]> git.uio.no Git - usit-rt.git/blob - share/html/Admin/Scrips/Modify.html
Putting 4.2.0 on top of 4.0.17
[usit-rt.git] / share / html / Admin / Scrips / Modify.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC
6 %#                                          <sales@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 => loc("Modify scrip #[_1]", $id) &>
49 <& /Elements/Tabs &>
50 <& /Elements/ListActions, actions => \@results &>
51
52 <form method="post" action="Modify.html" id="ModifyScrip" name="ModifyScrip">
53 <input type="hidden" class="hidden" name="id" value="<% $id %>" />
54
55 <&| /Widgets/TitleBox, title => loc('Basics') &>
56 <table>
57
58 <& Elements/EditBasics, %ARGS, Scrip => $scrip &>
59
60 % if ( not $disabled ) {
61 <tr><td class="label"><a href="Objects.html?id=<% $id %>"><&|/l&>Applies to</&></a>:</td>
62 <td class="value">\
63 % if ( $scrip->IsGlobal ) {
64 <a href="<% RT->Config->Get('WebPath') %>/Admin/Global/Scrips.html"><% loc('Global') %></a>
65 % } else {
66 % my $added_to = $scrip->AddedTo;
67 % my $found = 0;
68 % while ( my $queue = $added_to->Next ) {
69 % $m->out(', ') if $found++;
70 <a href="<% RT->Config->Get('WebPath') %>/Admin/Queues/Scrips.html?id=<% $queue->id %>">\
71 <% $queue->Name %></a>\
72 % last if $found == 10;
73 % }
74 % $m->out(', ...') if $found == 10;
75 % }
76 <td></tr>
77 % }
78
79 <tr><td class="label">&nbsp;</td><td>
80 <input type="hidden" class="hidden" name="SetEnabled" value="1" />
81 <input type="checkbox" class="checkbox" name="Enabled" id="Enabled" value="1" <% $EnabledChecked |n%> />
82 <label for="Enabled"><&|/l&>Enabled (Unchecking this box disables this scrip)</&></label>
83 </td></tr>
84
85 </table>
86 </&>
87
88 <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &>
89
90 % if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) {
91 <& Elements/EditCustomCode, %ARGS, Scrip => $scrip &>
92 <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &>
93 % }
94
95 </form>
96 <%ARGS>
97 $id     => undef
98 $Update => undef
99 </%ARGS>
100 <%INIT>
101 my $scrip = RT::Scrip->new( $session{'CurrentUser'} );
102 $scrip->Load( $id );
103 Abort(loc("Couldn't load scrip #[_1]", $id))
104     unless $scrip->id;
105
106 my $disabled = $scrip->Disabled;
107
108 if ( $Update ) {
109     my @attribs = qw(
110         Description
111         ScripAction ScripCondition
112         CustomPrepareCode CustomCommitCode CustomIsApplicableCode
113     );
114     push @attribs, "Template" if defined $ARGS{Template} and length $ARGS{Template};
115     if ($ARGS{"SetEnabled"}) {
116         push @attribs, "Disabled";
117         $ARGS{"Disabled"} = not $ARGS{"Enabled"};
118     }
119     my @results = UpdateRecordObject(
120         AttributesRef   => \@attribs,
121         Object          => $scrip,
122         ARGSRef         => \%ARGS
123     );
124     MaybeRedirectForResults(
125         Actions   => \@results,
126         Arguments => { id => $scrip->id },
127     );
128 }
129
130 my $EnabledChecked = qq[checked="checked"];
131 $EnabledChecked = '' if $disabled;
132
133 my @results;
134 my ($ok, $msg) = $scrip->CompileCheck;
135 push @results, $msg if !$ok;
136 </%INIT>