feqture 1583 : show related tags block also when browsing non tag sections

git-svn-id: http://piwigo.org/svn/trunk@5752 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2010-04-10 09:47:19 +00:00
parent aaccf93392
commit b7e2107181
2 changed files with 51 additions and 23 deletions
+42 -20
View File
@@ -110,32 +110,54 @@ function initialize_menu()
//------------------------------------------------------------------------ tags
$block = $menu->get_block('mbTags');
if ( $block!=null and 'tags'==@$page['section'] and !empty($page['items']) )
if ( $block!=null and !empty($page['items']) )
{
$tags = get_common_tags(
$page['items'],
$conf['menubar_tag_cloud_items_number'],
$page['tag_ids']
);
$tags = add_level_to_tags($tags);
foreach ($tags as $tag)
if ('tags'==@$page['section'])
{
$block->data[] = array_merge(
$tag,
array(
'U_ADD' => make_index_url(
array(
'tags' => array_merge(
$page['tags'],
array($tag)
$tags = get_common_tags(
$page['items'],
$conf['menubar_tag_cloud_items_number'],
$page['tag_ids']
);
$tags = add_level_to_tags($tags);
foreach ($tags as $tag)
{
$block->data[] = array_merge(
$tag,
array(
'U_ADD' => make_index_url(
array(
'tags' => array_merge(
$page['tags'],
array($tag)
)
)
)
),
),
'URL' => make_index_url( array( 'tags' => array($tag) )
),
)
);
}
}
else
{
$selection = array_slice( $page['items'], $page['start'], $page['nb_image_page'] );
$tags = add_level_to_tags( get_common_tags($selection, 12) );
foreach ($tags as $tag)
{
$block->data[] =
array_merge( $tag,
array(
'URL' => make_index_url( array( 'tags' => array($tag) ) ),
)
);
}
}
if ( !empty($block->data) )
{
$block->template = 'menubar_tags.tpl';
}
$block->template = 'menubar_tags.tpl';
}
//----------------------------------------------------------- special categories