You are here

function hashtags_menu in Hashtags 7

Same name and namespace in other branches
  1. 7.2 hashtags.module \hashtags_menu()

Implements hook_menu().

File

./hashtags.module, line 41

Code

function hashtags_menu() {
  $items['admin/config/content/hashtags'] = array(
    'title' => 'Hashtags',
    'description' => 'Configure default behavior of hashtags, including in which vocabulary it\'ll be stored, outputing, showing field.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'hashtags_configuration_form',
    ),
    'access arguments' => array(
      'administer hashtags',
    ),
    'weight' => -10,
  );
  return $items;
}