You are here

function _coder_review_comment_install_file_warning in Coder 7

1 string reference to '_coder_review_comment_install_file_warning'
_coder_review_comment_install_file_block_callback in coder_review/includes/coder_review_comment.inc
Define the rule callbacks for comment install file block, see do_coder_review_callback().

File

coder_review/includes/coder_review_comment.inc, line 175
This include file implements coder functionality for comments.

Code

function _coder_review_comment_install_file_warning() {
  return array(
    '#warning' => t('For .install files, the @file description should be of the format "Install, update and uninstall functions for the XXX module.".'),
    '#link' => 'http://drupal.org/coding-standards',
  );
}