You are here

function image_captcha_help in CAPTCHA 8

Same name and namespace in other branches
  1. 5.3 image_captcha/image_captcha.module \image_captcha_help()
  2. 6.2 image_captcha/image_captcha.module \image_captcha_help()
  3. 6 image_captcha/image_captcha.module \image_captcha_help()
  4. 7 image_captcha/image_captcha.module \image_captcha_help()

Implements hook_help().

File

image_captcha/image_captcha.module, line 27
Implements image CAPTCHA for use with the CAPTCHA module.

Code

function image_captcha_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'image_captcha.settings':
      $output = '<p>' . t('The image CAPTCHA is a popular challenge where a random textual code is obfuscated in an image. The image is generated on the fly for each request, which is rather CPU intensive for the server. Be careful with the size and computation related settings.') . '</p>';
      return $output;
  }
}