function css_captcha_help in CAPTCHA Pack 6
Same name and namespace in other branches
- 8 css_captcha/css_captcha.module \css_captcha_help()
- 5 css_captcha/css_captcha.module \css_captcha_help()
- 7 css_captcha/css_captcha.module \css_captcha_help()
Implementation of hook_help().
File
- css_captcha/
css_captcha.module, line 10
Code
function css_captcha_help($path, $arg) {
switch ($path) {
case 'admin/user/captcha/css_captcha':
return '<p>' . t('The CSS CAPTCHA uses CSS tricks to obfuscate a random text code for spam bots. The characters of the code are scrambled in the HTML markup but are displayed in the correct order when rendered with a CSS capable browser.') . '</p>';
}
}