You are here

function word_list_captcha_help in CAPTCHA Pack 5

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

Implementation of hook_help().

File

text_captcha/word_list_captcha/word_list_captcha.module, line 11

Code

function word_list_captcha_help($section) {
  switch ($section) {
    case 'admin/user/captcha/word_list_captcha':
      return '<p>' . t('The unrelated word CAPTCHA consists of a list of closely related words with one non-related word, which the user has to select. To generate this list, two word pools are needed: one for the related words and one for the non-related word.') . '</p>';
  }
}