You are here

function riddler_help in Captcha Riddler 7

Same name and namespace in other branches
  1. 8 riddler.module \riddler_help()
  2. 5 riddler.module \riddler_help()
  3. 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;
  }
}