From 22fd670ad5293d457df12b489b5730388a04a35e Mon Sep 17 00:00:00 2001 From: patdenice Date: Fri, 15 Apr 2011 12:06:55 +0000 Subject: feature:2264 Modify triggers for prefilters: there is now two triggers. Order prefilters by alphabetic order. git-svn-id: http://piwigo.org/svn/trunk@10380 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/batch_manager_global.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'admin/batch_manager_global.php') diff --git a/admin/batch_manager_global.php b/admin/batch_manager_global.php index 93f8ffa6c..11cafe02d 100644 --- a/admin/batch_manager_global.php +++ b/admin/batch_manager_global.php @@ -404,8 +404,30 @@ $template->set_filenames(array('batch_manager_global' => 'batch_manager_global.t $base_url = get_root_url().'admin.php'; +$prefilters = array(); + +array_push($prefilters, + array('ID' => 'caddie', 'NAME' => l10n('caddie')), + array('ID' => 'last import', 'NAME' => l10n('last import')), + array('ID' => 'with no album', 'NAME' => l10n('with no album')), + array('ID' => 'with no tag', 'NAME' => l10n('with no tag')), + array('ID' => 'duplicates', 'NAME' => l10n('duplicates')), + array('ID' => 'all photos', 'NAME' => l10n('All')) +); + +if ($conf['enable_synchronization']) +{ + array_push($prefilters, + array('ID' => 'with no virtual album', 'NAME' => l10n('with no virtual album')) + ); +} + +$prefilters = trigger_event('get_batch_manager_prefilters', $prefilters); +usort($prefilters, 'UC_name_compare'); + $template->assign( array( + 'prefilters' => $prefilters, 'filter' => $_SESSION['bulk_manager_filter'], 'selection' => $collection, 'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')), -- cgit v1.2.3