function foo_captcha_help in CAPTCHA Pack 8
Same name and namespace in other branches
- 5 foo_captcha/foo_captcha.module \foo_captcha_help()
- 6 foo_captcha/foo_captcha.module \foo_captcha_help()
- 7 foo_captcha/foo_captcha.module \foo_captcha_help()
Implements hook_help().
File
- foo_captcha/
foo_captcha.module, line 11 - Contains general functionality of the module.
Code
function foo_captcha_help($path, $arg) {
switch ($path) {
case 'admin/config/people/captcha/foo_captcha':
return '<p>' . t('This is a very simple CAPTCHA, which requires users to enter "foo" in a textfield.') . '</p>';
}
}