function foo_captcha_help in CAPTCHA Pack 7
Same name and namespace in other branches
- 8 foo_captcha/foo_captcha.module \foo_captcha_help()
- 5 foo_captcha/foo_captcha.module \foo_captcha_help()
- 6 foo_captcha/foo_captcha.module \foo_captcha_help()
Implements hook_help().
File
- foo_captcha/
foo_captcha.module, line 6
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>';
}
}