You are here

function recaptcha_permission in reCAPTCHA 8

Same name and namespace in other branches
  1. 7.2 recaptcha.module \recaptcha_permission()
  2. 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'),
    ),
  );
}