You are here

function recaptcha_help in reCAPTCHA 6.2

Same name and namespace in other branches
  1. 8.3 recaptcha.module \recaptcha_help()
  2. 8 recaptcha.module \recaptcha_help()
  3. 8.2 recaptcha.module \recaptcha_help()
  4. 5.2 recaptcha.module \recaptcha_help()
  5. 6 recaptcha.module \recaptcha_help()
  6. 7.2 recaptcha.module \recaptcha_help()
  7. 7 recaptcha.module \recaptcha_help()

Implementation of hook_help().

File

./recaptcha.module, line 17

Code

function recaptcha_help($path, $arg) {
  switch ($path) {
    case 'admin/user/captcha/recaptcha':
      return t('Google <a href="@url">reCAPTCHA</a> is a free service to protect your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive CAPTCHAs to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease.', array(
        '@url' => 'https://www.google.com/recaptcha',
      ));
  }
}