diff options
Diffstat (limited to '')
-rw-r--r-- | include/menubar.inc.php | 62 |
1 files changed, 42 insertions, 20 deletions
diff --git a/include/menubar.inc.php b/include/menubar.inc.php index 052f3d830..a5cc2ffed 100644 --- a/include/menubar.inc.php +++ b/include/menubar.inc.php @@ -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 |