function badbehavior_help in Bad Behavior 7.2
Same name and namespace in other branches
- 5.2 badbehavior.module \badbehavior_help()
- 6.2 badbehavior.module \badbehavior_help()
- 6 badbehavior.module \badbehavior_help()
Implements hook_help().
File
- ./
badbehavior.module, line 13 - 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 messages.") . '</p>';
break;
}
return $output;
}