You are here

function foo_captcha_help in CAPTCHA Pack 6

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

Implementation of hook_help().

File

foo_captcha/foo_captcha.module, line 6

Code

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