function recaptcha_permission in reCAPTCHA 7
Same name and namespace in other branches
- 8 recaptcha.module \recaptcha_permission()
- 7.2 recaptcha.module \recaptcha_permission()
Implements hook_permission().
File
- ./
recaptcha.module, line 58 - Uses the reCAPTCHA web service to improve the CAPTCHA system.
Code
function recaptcha_permission() {
return array(
'administer recaptcha' => array(
'title' => t('reCaptcha Administration'),
'description' => t('Administer reCaptcha settings'),
),
);
}