function badbehavior_help in Bad Behavior 6
Same name and namespace in other branches
- 5.2 badbehavior.module \badbehavior_help()
- 6.2 badbehavior.module \badbehavior_help()
- 7.2 badbehavior.module \badbehavior_help()
Implements hook_help().
File
- ./
badbehavior.module, line 8
Code
function badbehavior_help($path, $arg) {
$output = '';
switch ($path) {
case "admin/reports/badbehavior":
$output .= '<p>' . t("The Bad Behavior module examines HTTP requests of visits to your web site, and any suspicious requests are logged for later review. The suspicious visit is shown an error page with instructions on how to view the site without triggering the bad behavior error message.") . '</p>';
break;
}
return $output;
}