function _coder_style_xhtml_warning in Coder 5
Same name and namespace in other branches
- 5.2 includes/coder_style.inc \_coder_style_xhtml_warning()
- 6.2 includes/coder_style.inc \_coder_style_xhtml_warning()
- 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 - @file This include file implements coder functionality for Drupal Standards
File
- includes/
coder_style.inc, line 205 - 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',
));
}