function riddler_help in Captcha Riddler 7
Same name and namespace in other branches
- 8 riddler.module \riddler_help()
- 5 riddler.module \riddler_help()
- 6 riddler.module \riddler_help()
Implementation of hook_help().
File
- ./
riddler.module, line 16 - Adds a question and answer type to the Captcha module.
Code
function riddler_help($path, $arg) {
switch ($path) {
case 'admin/help#riddler':
return t('Requires anonymous users to answer a simple question to be answered forms are processed. A primitive but effective way to counter spam.');
break;
}
}