You are here

function highlight_menu in Highlight 5

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

Implementation of hook_menu

File

./highlight.module, line 46

Code

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