You are here

function _coder_comment_Id_warning in Coder 6.2

Same name and namespace in other branches
  1. 5.2 includes/coder_comment.inc \_coder_comment_Id_warning()
  2. 6 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 121
This include file implements coder functionality for comments.

Code

function _coder_comment_Id_warning() {
  return array(
    '#warning' => t('Commits to the Git repository do not require the CVS $Id' . '$ keyword in each file.'),
    '#link' => 'http://drupal.org/coding-standards',
  );
}