Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

coder_help

Definition

coder_help($page, $arg)
contributions/coder/coder.module, line 33

Description

Implementation of hook_help().

Code

<?php
function coder_help($page, $arg) {
  switch ($page) {
    case 'coder#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':
      return t('coder [summary] [<styles>] [minor|major|critical] [active|core|all|default|<modules>] [no-<module>]');
  }
}
?>