function hcaptcha_menu in hCaptcha 7
Implements hook_menu().
File
- ./
hcaptcha.module, line 13
Code
function hcaptcha_menu() {
$items['admin/config/people/captcha/hcaptcha'] = array(
'title' => 'hCaptcha',
'description' => 'Administer the hCaptcha web service.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'hcaptcha_admin_settings',
),
'access arguments' => array(
'administer hcaptcha',
),
'type' => MENU_LOCAL_TASK,
'file' => 'hcaptcha.admin.inc',
'weight' => 1,
);
return $items;
}