You are here

function _coder_style_xhtml_warning in Coder 6.2

Same name and namespace in other branches
  1. 5.2 includes/coder_style.inc \_coder_style_xhtml_warning()
  2. 5 includes/coder_style.inc \_coder_style_xhtml_warning()
  3. 6 includes/coder_style.inc \_coder_style_xhtml_warning()

Define the warning callbacks.

1 string reference to '_coder_style_xhtml_warning'
coder_style_reviews in includes/coder_style.inc
Implementation of hook_reviews().

File

includes/coder_style.inc, line 250
This include file implements coder functionality for Drupal Standards.

Code

function _coder_style_xhtml_warning() {
  return t('use lowercase html tags to comply with <a href="@xhtml">XHTML</a>', array(
    '@xhtml' => 'http://www.w3.org/TR/xhtml1/#h-4.2',
  ));
}