You are here

function text_captcha_help in CAPTCHA 5.3

Same name and namespace in other branches
  1. 6 text_captcha/text_captcha.module \text_captcha_help()

Implementation of hook_help().

File

text_captcha/text_captcha.module, line 19
Implementation of a text based CAPTCHA.

Code

function text_captcha_help($section) {
  switch ($section) {
    case 'admin/user/captcha/text_captcha':
      return '<p>' . t('In this challenge the visitor is asked for the n<sup>th</sup> word of a given phrase.') . '</p>';
  }
  return $output;
}