You are here

function lost_character_captcha_help in CAPTCHA Pack 5

Same name and namespace in other branches
  1. 8 text_captcha/modules/lost_character_captcha/lost_character_captcha.module \lost_character_captcha_help()
  2. 6 text_captcha/lost_character_captcha/lost_character_captcha.module \lost_character_captcha_help()
  3. 7 text_captcha/lost_character_captcha/lost_character_captcha.module \lost_character_captcha_help()

Implementation of hook_help().

File

text_captcha/lost_character_captcha/lost_character_captcha.module, line 11

Code

function lost_character_captcha_help($section) {
  switch ($section) {
    case 'admin/user/captcha/lost_character_captcha':
      return '<p>' . t('The challenge in this CAPTCHA is to determine the lost character(s) of a given word.') . '</p>';
  }
}