function webform_hints_menu in Webform Hints 6
Same name and namespace in other branches
- 7 webform_hints.module \webform_hints_menu()
Implementation of hook_menu().
File
- ./
webform_hints.module, line 28
Code
function webform_hints_menu() {
$items = array();
// Main configuration page of the Webform Hints module
$items['admin/settings/webform-hints'] = array(
'title' => 'Webform Hints',
'description' => 'Administer which of your Webforms will receive the hints effect.',
'file' => 'webform_hints.admin.inc',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'webform_hints_admin_settings',
),
'access arguments' => array(
'administer Webform Hints settings',
),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}