new feature : related categories are displayed under the picture
git-svn-id: http://piwigo.org/svn/trunk@568 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
3e09d2579f
commit
e22eb49fec
1 changed files with 30 additions and 3 deletions
33
picture.php
33
picture.php
|
@ -714,9 +714,36 @@ SELECT COUNT(rate) AS count
|
|||
'VALUE' => $value
|
||||
));
|
||||
}
|
||||
|
||||
//metadata
|
||||
|
||||
// related categories
|
||||
$query = '
|
||||
SELECT category_id
|
||||
FROM '.IMAGE_CATEGORY_TABLE.'
|
||||
WHERE image_id = '.$_GET['image_id'];
|
||||
if ($user['forbidden_categories'] != '')
|
||||
{
|
||||
$query.= '
|
||||
AND category_id NOT IN ('.$user['forbidden_categories'].')';
|
||||
}
|
||||
$query.= '
|
||||
;';
|
||||
$result = mysql_query($query);
|
||||
$categories = '';
|
||||
while ($row = mysql_fetch_array($result))
|
||||
{
|
||||
if ($categories != '')
|
||||
{
|
||||
$categories.= '<br />';
|
||||
}
|
||||
$cat_info = get_cat_info($row['category_id']);
|
||||
$categories .= get_cat_display_name($cat_info['name'], ' >');
|
||||
}
|
||||
$template->assign_block_vars(
|
||||
'info_line',
|
||||
array(
|
||||
'INFO' => $lang['categories'],
|
||||
'VALUE' => $categories
|
||||
));
|
||||
// metadata
|
||||
if ($metadata_showable and isset($_GET['show_metadata']))
|
||||
{
|
||||
include_once(PHPWG_ROOT_PATH.'/include/functions_metadata.inc.php');
|
||||
|
|
Loading…
Reference in a new issue