You are here

function coder_review_help in Coder 7.2

Same name and namespace in other branches
  1. 7 coder_review/coder_review.module \coder_review_help()

Implements hook_help().

1 call to coder_review_help()
coder_review_page_form in coder_review/coder_review.module
Implements hook_form().

File

coder_review/coder_review.module, line 34
Developer module to assist with coder reviews and API upgrade suggestions.

Code

function coder_review_help($page, $arg) {
  switch ($page) {
    case 'coder_review#disclaimer':
      return _t('Coder provides helpful hints trying to minimize false positives, but offers no guarantees. You are the final arbitrar. If in doubt, please read the Drupal documentation (see review links below and <a href="@api">api.drupal.org</a>).', array(
        '@api' => 'http://api.drupal.org',
      ));
  }
}