function webform_captcha_menu in Webform Captcha 7
Implements of hook_menu().
File
- ./
webform_captcha.module, line 37
Code
function webform_captcha_menu() {
$items = array();
$items['admin/config/people/captcha/captcha/webform'] = array(
'title' => 'Webform settings',
'description' => 'Settings specific to webform.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'webform_captcha_admin_settings',
),
'access arguments' => array(
'administer CAPTCHA settings',
),
'type' => MENU_LOCAL_TASK,
'weight' => 5,
);
return $items;
}