X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=rt%2Fshare%2Fhtml%2FPrefs%2FQuicksearch.html;h=2642aa550cf52069e403912ed4b0f1f46aea3ed9;hb=919e930aa9279b3c5cd12b593889cd6de79d67bf;hp=93d0a5f23c70f6605851db146d06a3f06e92772f;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/rt/share/html/Prefs/Quicksearch.html b/rt/share/html/Prefs/Quicksearch.html index 93d0a5f23..2642aa550 100644 --- a/rt/share/html/Prefs/Quicksearch.html +++ b/rt/share/html/Prefs/Quicksearch.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -46,10 +46,7 @@ %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> -<& /Prefs/Elements/Tabs, - current_tab => 'Prefs/MyRT.html', - current_subtab => 'Prefs/Quicksearch.html', - Title => $title +<& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>

<&|/l&>Select queues to be displayed on the "RT at a glance" page

@@ -60,22 +57,39 @@ % unless ($unwanted->{$queue->Name}) { checked="checked" % } -/><%$queue->Name%>: <%$queue->Description%> +/><%$queue->Name%><% $queue->Description ? ': '.$queue->Description : '' %> % } -<& /Elements/Submit, Caption => loc("Save Changes"), Label => loc('Save'), Name => 'Save'&> + +<& /Elements/Submit, + Caption => loc("Save Changes"), + Label => loc('Save'), + Name => 'Save', + Reset => 1, + CheckAll => 1, + ClearAll => 1, + CheckboxNameRegex => '/^Want-/', + &> <%INIT> my @actions; my $title = loc("Customize").' '.loc("Quick search"); -# The queue list is not loaded from cache, so it might be a bit inconsistent my $user = $session{'CurrentUser'}->UserObj; my $unwanted = $user->Preferences('QuickSearch', {}); my $Queues = RT::Queues->new($session{'CurrentUser'}); $Queues->UnLimit; -my @queues = grep {$_->CurrentUserHasRight('ShowTicket')} @{$Queues->ItemsArrayRef}; + +my $right = 'ShowTicket'; +$m->callback( + CallbackName => 'ModifyQueues', + Queues => \$Queues, + Right => \$right, + Unwanted => $unwanted, +); + +my @queues = grep { $right ? $_->CurrentUserHasRight($right) : 1 } @{$Queues->ItemsArrayRef}; if ($ARGS{'Save'}) { for my $queue (@queues) { @@ -89,9 +103,6 @@ if ($ARGS{'Save'}) { my ($ok, $msg) = $user->SetPreferences('QuickSearch', $unwanted); push @actions, $ok ? loc('Preferences saved.') : $msg; - - # Let QueueSummary rebuild the cache - delete $session{'quick_search_queues'}; }