function active_tags_popular_menu in Active Tags 6
Same name and namespace in other branches
- 6.2 active_tags_popular.module \active_tags_popular_menu()
Implementation of hook_menu().
File
- ./
active_tags_popular.module, line 39 - Adds popular terms to Active Tags widget
Code
function active_tags_popular_menu() {
$items['taxonomy/active-tags-popular'] = array(
'title' => 'Active Tags Popular',
'page callback' => 'active_tags_popular_callback',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
return $items;
}