You are here

function _coder_comment_Id_warning in Coder 6

Same name and namespace in other branches
  1. 5.2 includes/coder_comment.inc \_coder_comment_Id_warning()
  2. 6.2 includes/coder_comment.inc \_coder_comment_Id_warning()
1 string reference to '_coder_comment_Id_warning'
coder_comment_reviews in includes/coder_comment.inc
Implementation of hook_reviews().

File

includes/coder_comment.inc, line 135
This include file implements coder functionality for comments.

Code

function _coder_comment_Id_warning() {
  return array(
    '#warning' => t('Include the CVS keyword $Id' . '$ in each file.  This should be in the format <code>// $Id' . '$</code> or <code>// $Id' . '$</code>'),
    '#link' => 'http://drupal.org/coding-standards',
  );
}