function _coder_style_xhtml_warning in Coder 6
Same name and namespace in other branches
- 5.2 includes/coder_style.inc \_coder_style_xhtml_warning()
- 5 includes/coder_style.inc \_coder_style_xhtml_warning()
- 6.2 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 240 - 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',
));
}