function riddler_help in Captcha Riddler 6
Same name and namespace in other branches
- 8 riddler.module \riddler_help()
- 5 riddler.module \riddler_help()
- 7 riddler.module \riddler_help()
Implementation of hook_help().
File
- ./riddler.module, line 17 
- Adds a question and answer type to the Captcha module.
Code
function riddler_help($path, $arg) {
  switch ($path) {
    case 'admin/modules#description':
      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;
  }
}