Definition

abuse_help($section)
abuse/abuse.module, line 85

Description

Implementation of hook_help().

Code

<?php
function abuse_help($section) {
  switch ($section) {
    case 'admin/help#abuse':
    case 'admin/modules#description':
      return t('allow users to report abusive content');
      break;
  }
}
?>