X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FAdmin%2FScrips%2FModify.html;fp=rt%2Fshare%2Fhtml%2FAdmin%2FScrips%2FModify.html;h=b6315ad5dac7e060f8e7bd40f38c57d07f28fa27;hb=1c538bfabc2cd31f27067505f0c3d1a46cba6ef0;hp=0000000000000000000000000000000000000000;hpb=4f5619288413a185e9933088d9dd8c5afbc55dfa;p=freeside.git diff --git a/rt/share/html/Admin/Scrips/Modify.html b/rt/share/html/Admin/Scrips/Modify.html new file mode 100644 index 000000000..b6315ad5d --- /dev/null +++ b/rt/share/html/Admin/Scrips/Modify.html @@ -0,0 +1,141 @@ +%# BEGIN BPS TAGGED BLOCK {{{ +%# +%# COPYRIGHT: +%# +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC +%# +%# +%# (Except where explicitly superseded by other copyright notices) +%# +%# +%# LICENSE: +%# +%# This work is made available to you under the terms of Version 2 of +%# the GNU General Public License. A copy of that license should have +%# been provided with this software, but in any event can be snarfed +%# from www.gnu.org. +%# +%# This work is distributed in the hope that it will be useful, but +%# WITHOUT ANY WARRANTY; without even the implied warranty of +%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +%# General Public License for more details. +%# +%# You should have received a copy of the GNU General Public License +%# along with this program; if not, write to the Free Software +%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +%# 02110-1301 or visit their web page on the internet at +%# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. +%# +%# +%# CONTRIBUTION SUBMISSION POLICY: +%# +%# (The following paragraph is not intended to limit the rights granted +%# to you to modify and distribute this software under the terms of +%# the GNU General Public License and is only of importance to you if +%# you choose to contribute your changes and enhancements to the +%# community by submitting them to Best Practical Solutions, LLC.) +%# +%# By intentionally submitting any modifications, corrections or +%# derivatives to this work, or any other work intended for use with +%# Request Tracker, to Best Practical Solutions, LLC, you confirm that +%# you are the copyright holder for those contributions and you grant +%# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, +%# royalty-free, perpetual, license to use, copy, create derivative +%# works based on those contributions, and sublicense and distribute +%# those contributions and any derivatives thereof. +%# +%# END BPS TAGGED BLOCK }}} +<& /Admin/Elements/Header, Title => loc("Modify scrip #[_1]", $id) &> +<& /Elements/Tabs &> +<& /Elements/ListActions, actions => \@results &> + +
+ + + +<&| /Widgets/TitleBox, title => loc('Basics') &> + + +<& Elements/EditBasics, %ARGS, Scrip => $scrip &> + +% if ( not $disabled ) { + + +% } + + + +
<&|/l&>Applies to:\ +% if ( $scrip->IsGlobal ) { +<% loc('Global') %> +% } else { +% my $added_to = $scrip->AddedTo; +% my $found = 0; +% while ( my $queue = $added_to->Next ) { +% $m->out(', ') if $found++; +\ +<% $queue->Name %>\ +% last if $found == 10; +% } +% $m->out(', ...') if $found == 10; +% } +
  + + /> + +
+ + +<& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &> + +% if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { +<& Elements/EditCustomCode, %ARGS, Scrip => $scrip &> +<& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &> +% } + +
+<%ARGS> +$id => undef +$Update => undef +$From => undef + +<%INIT> +my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); +$scrip->Load( $id ); +Abort(loc("Couldn't load scrip #[_1]", $id)) + unless $scrip->id; + +my $disabled = $scrip->Disabled; + +if ( $Update ) { + my @attribs = qw( + Description + ScripAction ScripCondition + CustomPrepareCode CustomCommitCode CustomIsApplicableCode + ); + push @attribs, "Template" if defined $ARGS{Template} and length $ARGS{Template}; + if ($ARGS{"SetEnabled"}) { + push @attribs, "Disabled"; + $ARGS{"Disabled"} = not $ARGS{"Enabled"}; + } + my @results = UpdateRecordObject( + AttributesRef => \@attribs, + Object => $scrip, + ARGSRef => \%ARGS + ); + MaybeRedirectForResults( + Actions => \@results, + Arguments => { + id => $scrip->id, + From => $From, + }, + ); +} + +my $EnabledChecked = qq[checked="checked"]; +$EnabledChecked = '' if $disabled; + +my @results; +my ($ok, $msg) = $scrip->CompileCheck; +push @results, $msg if !$ok; +