You are here

function foo_captcha_help in CAPTCHA Pack 8

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

Implements hook_help().

File

foo_captcha/foo_captcha.module, line 11
Contains general functionality of the module.

Code

function foo_captcha_help($path, $arg) {
  switch ($path) {
    case 'admin/config/people/captcha/foo_captcha':
      return '<p>' . t('This is a very simple CAPTCHA, which requires users to enter "foo" in a textfield.') . '</p>';
  }
}