You are here

function text_captcha_help in CAPTCHA 6

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

Implementation of hook_help().

File

text_captcha/text_captcha.module, line 14

Code

function text_captcha_help($path, $arg) {
  switch ($path) {
    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>';
  }
}