feature 2737: improve tag administration screen

show for every tag
- the number of photos
- link to public index page
- link to batch manager edit

add an event for extended description multi language strings (used for autocompletion and shown in the tag admin screen) instead of hard coded in the core [lang=..

git-svn-id: http://piwigo.org/svn/trunk@17765 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2012-09-05 20:38:30 +00:00
parent 528c75ab35
commit dadd8f6307
5 changed files with 124 additions and 56 deletions
+7
View File
@@ -114,6 +114,13 @@ if (isset($_GET['cat']))
'category' => $_GET['cat']
);
}
if (substr_compare($_GET['cat'],'tag-',0,4)==0)
{
$_SESSION['bulk_manager_filter']=array();
$_SESSION['bulk_manager_filter']['tags'] = array(intval(substr($_GET['cat'],4)));
$_SESSION['bulk_manager_filter']['tag_mode'] = 'AND';
}
}
if (!isset($_SESSION['bulk_manager_filter']))