diff options
author | mistic100 <mistic@piwigo.org> | 2011-06-09 20:34:48 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-06-09 20:34:48 +0000 |
commit | 7532e1a802beb74b32417cedefc9a000733c8004 (patch) | |
tree | 3f0bacd34b9921df9ddc07a88f2d9dd9109c73fb /admin | |
parent | 87e8bd9788a561ad045d149c549ed6d995983f1b (diff) |
feature:2330 ability to hide the "new" icon for recent photos
git-svn-id: http://piwigo.org/svn/trunk@11285 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/configuration.php | 1 | ||||
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index c03e4223b..5a5f97eee 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -78,6 +78,7 @@ $display_checkboxes = array( 'index_posted_date_icon', 'index_created_date_icon', 'index_slideshow_icon', + 'index_new_icon', 'picture_metadata_icon', 'picture_slideshow_icon', 'picture_favorite_icon', diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index f9d3cd576..ac40c6fbd 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -239,6 +239,13 @@ jQuery(document).ready(function () { <span class="property">{'display only recently posted photos'|@translate|@ucfirst|@string_format:$pwg->l10n('Activate icon "%s"')}</span> <input type="checkbox" name="menubar_filter_icon" {if ($display.menubar_filter_icon)}checked="checked"{/if}> </label> + </li> + + <li> + <label> + <span class="property">{'Activate icon "new" next to albums and pictures'|@translate}</span> + <input type="checkbox" name="index_new_icon" {if ($display.index_new_icon)}checked="checked"{/if}> + </label> </li> <li> |