feature:2264
new trigger to add prefilter on batch manager git-svn-id: http://piwigo.org/svn/trunk@10354 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
7494a41056
commit
fc37451675
2 changed files with 6 additions and 5 deletions
|
|
@ -55,11 +55,7 @@ if (isset($_POST['submitFilter']))
|
|||
|
||||
if (isset($_POST['filter_prefilter_use']))
|
||||
{
|
||||
$prefilters = array('caddie', 'last import', 'with no album', 'with no tag', 'with no virtual album', 'duplicates', 'all photos');
|
||||
if (in_array($_POST['filter_prefilter'], $prefilters))
|
||||
{
|
||||
$_SESSION['bulk_manager_filter']['prefilter'] = $_POST['filter_prefilter'];
|
||||
}
|
||||
$_SESSION['bulk_manager_filter']['prefilter'] = $_POST['filter_prefilter'];
|
||||
}
|
||||
|
||||
if (isset($_POST['filter_category_use']))
|
||||
|
|
@ -253,6 +249,8 @@ SELECT id
|
|||
array_from_query($query, 'id')
|
||||
);
|
||||
}
|
||||
|
||||
$filter_sets = trigger_event('bulk_manager_prefilter', $filter_sets, $_SESSION['bulk_manager_filter']['prefilter']);
|
||||
}
|
||||
|
||||
if (isset($_SESSION['bulk_manager_filter']['category']))
|
||||
|
|
|
|||
|
|
@ -339,6 +339,9 @@ jQuery(window).load(function() {
|
|||
<option value="with no tag" {if $filter.prefilter eq 'with no tag'}selected="selected"{/if}>{'with no tag'|@translate}</option>
|
||||
<option value="duplicates" {if $filter.prefilter eq 'duplicates'}selected="selected"{/if}>{'duplicates'|@translate}</option>
|
||||
<option value="all photos" {if $filter.prefilter eq 'all photos'}selected="selected"{/if}>{'All'|@translate}</option>
|
||||
{foreach from=$bulk_manager_plugins_prefilters item=plugin_prefilter}
|
||||
<option value="{$plugin_prefilter.ID}" {if $filter.prefilter eq $plugin_prefilter.ID}selected="selected"{/if}>{$plugin_prefilter.NAME}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</li>
|
||||
<li id="filter_category" {if !isset($filter.category)}style="display:none"{/if}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue