You are here

function word_list_captcha_help in CAPTCHA Pack 8

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

Implements hook_help().

File

text_captcha/modules/word_list_captcha/word_list_captcha.module, line 14
Contains general functionality for the module.

Code

function word_list_captcha_help($path, $arg) {
  switch ($path) {
    case 'admin/config/people/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>';
  }
}