You are here

function active_tags_popular_menu in Active Tags 6.2

Same name and namespace in other branches
  1. 6 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;
}