function phrase_captcha_help in CAPTCHA Pack 8
Same name and namespace in other branches
- 5 text_captcha/phrase_captcha/phrase_captcha.module \phrase_captcha_help()
- 6 text_captcha/phrase_captcha/phrase_captcha.module \phrase_captcha_help()
- 7 text_captcha/phrase_captcha/phrase_captcha.module \phrase_captcha_help()
Implements hook_help().
File
- text_captcha/
modules/ phrase_captcha/ phrase_captcha.module, line 17 - Implementation of a phrase based CAPTCHA, for use with the CAPTCHA module.
Code
function phrase_captcha_help($path, $arg) {
switch ($path) {
case 'admin/config/people/captcha/phrase_captcha':
return '<p>' . t('This phrase based CAPTCHA presents a CAPTCHA phrase of a given number of words and asks to pick the right word (based on counting, alphabetical order, etc).') . '</p>';
}
}