You are here

function css_captcha_help in CAPTCHA Pack 8

Same name and namespace in other branches
  1. 5 css_captcha/css_captcha.module \css_captcha_help()
  2. 6 css_captcha/css_captcha.module \css_captcha_help()
  3. 7 css_captcha/css_captcha.module \css_captcha_help()

Implements hook_help().

File

css_captcha/css_captcha.module, line 11
Load css captcha file to use some helper functions.

Code

function css_captcha_help($path, $arg) {
  switch ($path) {
    case 'admin/user/captcha/css_captcha':
      return '<p>' . t('The CSS CAPTCHA uses CSS tricks to obfuscate a random text code for spam bots. The characters of the code are scrambled in the HTML markup but are displayed in the correct order when rendered with a CSS capable browser.') . '</p>';
  }
}