You are here

function content_taxonomy_activeselect_menu in Content Taxonomy 5

Implementation of hook_menu

File

./content_taxonomy_activeselect.module, line 187
Defines a widget type for content_taxonomy with activeselects

Code

function content_taxonomy_activeselect_menu($may_cache) {
  $access = user_access('access content');
  $items = array();
  if (!$may_cache) {
    $items[] = array(
      'path' => 'content_taxonomy/activeselect',
      'callback' => 'content_taxonomy_activeselect',
      'access' => $access,
      'type' => MENU_CALLBACK,
    );
  }
  return $items;
}