function css_captcha_help in CAPTCHA Pack 7
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()
- 6 css_captcha/css_captcha.module \css_captcha_help()
Implements hook_help().
File
- css_captcha/
css_captcha.module, line 12
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>';
}
}