function phrase_captcha_help in CAPTCHA Pack 5
Same name and namespace in other branches
- 8 text_captcha/modules/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()
Implementation of hook_help().
File
- text_captcha/
phrase_captcha/ phrase_captcha.module, line 19
Code
function phrase_captcha_help($section) {
switch ($section) {
case 'admin/user/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>';
}
}