You are here

function foo_captcha_help in CAPTCHA Pack 5

Same name and namespace in other branches
  1. 8 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()

Implementation of hook_help().

File

foo_captcha/foo_captcha.module, line 6

Code

function foo_captcha_help($section) {
  switch ($section) {
    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>';
  }
}