coder_review_help($page, $arg)Implements hook_help().
sites/all/modules/coder/coder_review/coder_review.module, line 33
<?php
function coder_review_help($page, $arg) {
switch ($page) {
case 'coder_review#disclaimer':
return t('Coder provides helpful hints without false positives, but offers no guarantee for creating good code. You are the final arbitrar. If in doubt, read the Drupal documentation (see review links below and <a href="@api">api.drupal.org</a>).', array('@api' => 'http://api.drupal.org'));
case 'drush:coder_review':
return t('coder_review [summary] [@reviews] [minor|major|critical] [active|core|all|default|<modules>] [no-<module>]', array('@reviews' => implode('|', array_keys(_coder_review_reviews()))));
}
}
?>