You are here

function highlight_menu in Highlight 7

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

Implementation of hook_menu

File

./highlight.module, line 5

Code

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