diff options
author | patdenice <patdenice@piwigo.org> | 2011-04-13 13:18:42 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2011-04-13 13:18:42 +0000 |
commit | 9345eca5daf56dd83808692f053467092e945449 (patch) | |
tree | 8dcdf566f4e2aed68bf78f024a594fc2659e8506 /admin/themes | |
parent | 15a759c4cafb8ed8526c33f445df6302ec79cfd0 (diff) |
merge r10354 from trunk to branch 2.2
feature:2264
new trigger to add prefilter on batch manager
git-svn-id: http://piwigo.org/svn/branches/2.2@10355 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/batch_manager_global.tpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/admin/themes/default/template/batch_manager_global.tpl b/admin/themes/default/template/batch_manager_global.tpl index 28b84869c..5c54eec1b 100644 --- a/admin/themes/default/template/batch_manager_global.tpl +++ b/admin/themes/default/template/batch_manager_global.tpl @@ -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}> |