You are here

function random_captcha_type_help in CAPTCHA Pack 5

Same name and namespace in other branches
  1. 8 random_captcha_type/random_captcha_type.module \random_captcha_type_help()
  2. 6 random_captcha_type/random_captcha_type.module \random_captcha_type_help()
  3. 7 random_captcha_type/random_captcha_type.module \random_captcha_type_help()

Implementation of hook_help().

File

random_captcha_type/random_captcha_type.module, line 11

Code

function random_captcha_type_help($section) {
  switch ($section) {
    case 'admin/user/captcha/random_captcha_type':
      return '<p>' . t('This CAPTCHA type is a "meta" CAPTCHA type, which randomly picks one of the selected CAPTCHA types.') . '</p>';
  }
}