mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 09:43:01 +02:00
feature 2693 added: automatically show link to caddie if caddie not empty
git-svn-id: http://piwigo.org/svn/branches/2.4@17008 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -219,6 +219,24 @@ if ($conf['activate_comments'])
|
||||
$template->assign('U_PENDING_COMMENTS', $link_start.'comments');
|
||||
}
|
||||
|
||||
// any photo in the caddie?
|
||||
$query = '
|
||||
SELECT COUNT(*)
|
||||
FROM '.CADDIE_TABLE.'
|
||||
WHERE user_id = '.$user['id'].'
|
||||
;';
|
||||
list($nb_photos_in_caddie) = pwg_db_fetch_row(pwg_query($query));
|
||||
|
||||
if ($nb_photos_in_caddie > 0)
|
||||
{
|
||||
$template->assign(
|
||||
array(
|
||||
'NB_PHOTOS_IN_CADDIE' => $nb_photos_in_caddie,
|
||||
'U_CADDIE' => $link_start.'batch_manager&cat=caddie',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Plugin menu |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
Reference in New Issue
Block a user