diff options
Diffstat (limited to 'rt/share/html/Dashboards/Modify.html')
-rwxr-xr-x | rt/share/html/Dashboards/Modify.html | 70 |
1 files changed, 39 insertions, 31 deletions
diff --git a/rt/share/html/Dashboards/Modify.html b/rt/share/html/Dashboards/Modify.html index 11fc1791a..95cf318aa 100755 --- a/rt/share/html/Dashboards/Modify.html +++ b/rt/share/html/Dashboards/Modify.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC %# <sales@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -46,59 +46,55 @@ %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> -<& /Dashboards/Elements/Tabs, - current_subtab => $current_subtab, - Title => $title, - $Create ? () : (DashboardObj => $Dashboard), -&> +<& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> -<form action="<%RT->Config->Get('WebPath')%>/Dashboards/Modify.html" method="post" enctype="multipart/form-data" name="ModifyDashboard"> +<form action="<%RT->Config->Get('WebPath')%>/Dashboards/Modify.html" method="post" enctype="multipart/form-data" name="ModifyDashboard" id="ModifyDashboard"> %unless ($Dashboard->Id) { <input type="hidden" class="hidden" name="id" value="new" /> % } else { <input type="hidden" class="hidden" name="id" value="<%$Dashboard->Id%>" /> % } + +<&|/Widgets/TitleBox, title => loc('Basics') &> <table> -<tr><td align="right"> -<&|/l&>Name</&>: -</td> -<td><input name="Name" value="<%$Dashboard->Name%>" /></td> + <tr> + <td class="label"><&|/l&>Name</&>:</td> + <td class="value"><input name="Name" value="<%$Dashboard->Name%>" /></td> + </tr> + <tr> + <td class="label"><&|/l&>Privacy</&>:</td> + <td><& /Dashboards/Elements/SelectPrivacy, Name => "Privacy", Objects => \@privacies, Default => $Dashboard->Privacy &></td> </tr> -<tr><td align="right"> -<&|/l&>Privacy</&>: -</td><td> -<& /Dashboards/Elements/SelectPrivacy, Name => "Privacy", Objects => \@privacies, Default => $Dashboard->Privacy &> -</td></tr> </table> -% if ( $Create ) { -<& /Elements/Submit, Name => 'Save', Label => loc('Create') &> -% } else { -<& /Elements/Submit, Name => 'Save', Label => loc('Save Changes') &> -% } +</&> +<& /Elements/Submit, Name => 'Save', Label =>( $Create ? loc('Create') : loc('Save Changes') ) &> + % if ($Dashboard->Id && $can_delete) { <& /Elements/Submit, Name => 'Delete', Label => loc('Delete') &> % } </form> <%INIT> -my $current_subtab; my ($title, @results); my $tried_create = 0; # user went directly to Modify.html $Create = 1 if !$id; + +my $redirect_to ='/Dashboards/Modify.html'; + use RT::Dashboard; my $Dashboard = RT::Dashboard->new($session{'CurrentUser'}); -my @privacies = $Dashboard->_PrivacyObjects(($Create ? 'Create' : 'Modify') => 1); +my $method = $Create ? 'ObjectsForCreating' : 'ObjectsForModifying'; +my @privacies = $Dashboard->$method; Abort(loc("Permission denied")) if @privacies == 0; if ($Create) { - $current_subtab = 'Dashboards/Modify.html?Create=1'; $title = loc("Create a new dashboard"); } else { @@ -116,20 +112,22 @@ else { push @results, $msg; $id = $Dashboard->Id; + if (!$Dashboard->id || ! $Dashboard->CurrentUserCanSee) { + $redirect_to='/Dashboards/index.html'; + + } } else { my ($ok, $msg) = $Dashboard->LoadById($id); - $ok || Abort($msg); + $ok || Abort(loc("Couldn't load dashboard [_1]: [_2]", $id, $msg)); } if ($id) { $title = loc("Modify the dashboard [_1]", $Dashboard->Name); - $current_subtab = 'Dashboards/Modify.html?id=' . $id; } # If the create failed else { $Create = 1; - $current_subtab = 'Dashboards/Modify.html?Create=1'; $title = loc("Create a new dashboard"); } } @@ -147,16 +145,26 @@ if (!$Create && !$tried_create && $id && $ARGS{'Save'}) { } + my $can_delete = $Dashboard->CurrentUserCanDelete; if (!$Create && !$tried_create && $id && $ARGS{'Delete'}) { my ($ok, $msg) = $Dashboard->Delete(); - $ok || Abort(loc("Couldn't delete dashboard [_1]: [_2]", $id, $msg)); - - # put the user back into a useful place with a message - RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Dashboards/index.html?Deleted=$id"); + if (!$ok) { + Abort(loc("Couldn't delete dashboard [_1]: [_2]", $id, $msg)); + } + push @results, $msg; + $redirect_to = '/Dashboards/index.html'; } + +# This code does automatic redirection if any updates happen. +MaybeRedirectForResults( + Actions => \@results, + Path => $redirect_to, + Arguments => { id => $id }, +); + </%INIT> <%ARGS> |