You are here

function google_captcha_permission in Google Captcha 7

Implements hook_permission().

File

./google_captcha.module, line 28
Verifies if user is a human without necessity to solve a CAPTCHA.

Code

function google_captcha_permission() {
  return array(
    'administer google_captcha' => array(
      'title' => t('Administer Google Captcha'),
      'description' => t('Administer Google captcha settings'),
    ),
  );
}