You are here

function badbehavior_help in Bad Behavior 6.2

Same name and namespace in other branches
  1. 5.2 badbehavior.module \badbehavior_help()
  2. 6 badbehavior.module \badbehavior_help()
  3. 7.2 badbehavior.module \badbehavior_help()

Implements hook_help().

File

./badbehavior.module, line 14
Integrates Bad Behavior with Drupal

Code

function badbehavior_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/reports/badbehavior":
      $output .= '<p>' . t("The Bad Behavior module examines HTTP requests from visitors to your web site, and any suspicious requests are logged for later review. Suspicious visitors are shown an error page with instructions on how to view the site without triggering the bad behavior error message.") . '</p>';
      break;
  }
  return $output;
}