You are here

function highlight_menu in Highlight 6

Same name and namespace in other branches
  1. 5 highlight.module \highlight_menu()
  2. 7 highlight.module \highlight_menu()

Implementation of hook_menu

File

./highlight.module, line 33

Code

function highlight_menu() {
  $items['admin/settings/highlight'] = array(
    'title' => t('Highlight'),
    'description' => t('Configure the highlight module'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'highlight_admin_settings',
    ),
    'access arguments' => array(
      'administer highlight',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}