function recaptcha_permission in reCAPTCHA 8
Same name and namespace in other branches
- 7.2 recaptcha.module \recaptcha_permission()
- 7 recaptcha.module \recaptcha_permission()
Implements hook_permission().
File
- ./
recaptcha.module, line 64 - 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'),
),
);
}