abuse_help($section)
abuse/abuse.module, line 22
Implementation of hook_help().
<?php
function abuse_help($section) {
switch ($section) {
case 'admin/help#abuse':
case 'admin/modules#description':
return t('<p>The abuse module allows users and site moderators to report abusive content. When content is reported as abuse the person reporting can optionally select from a list of abuse categories and include a message to send to the site moderators. Content that has been reported as abuse can be automatically hidden from view after a configurable number of reports. A site moderator can assess the content that was submitted for review and allow or remove the content from the site and optionally warn the user that submitted the content. For particularly problematic users, the option to ban the user from the site is also available.</p>');
break;
}
}
?>