function highlight_menu in Highlight 5
Same name and namespace in other branches
- 6 highlight.module \highlight_menu()
- 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;
}