& /Admin/Elements/Header, Title => loc('Edit scrips') &> <& /Admin/Elements/SystemTabs &> <& /Elements/ListActions, actions => \@actions &> <& /Elements/TitleBoxStart, title => loc("Modify global scrips") &>
<%init> my (@actions); my $Scrips = new RT::Scrips ($session{'CurrentUser'}); $Scrips->LimitToGlobal(); # {{{ deal with modifying and deleting existing scrips my ($key ); foreach $key (keys %ARGS) { # {{{ if we're trying to delete the scrip if ($key =~ /^DeleteScrip-(\d+)/) { my $id = $1; my $scrip = new RT::Scrip($session{'CurrentUser'}); $scrip->Load($id); my ($retval, $msg) = $scrip->Delete; if ($retval) { push @actions, "Scrip deleted"; } else { push @actions, $msg; } } # }}} } # }}} %init> <%ARGS> %ARGS>