function _coder_security_l_check_plain_warning in Coder 5.2
Same name and namespace in other branches
- 5 includes/coder_security.inc \_coder_security_l_check_plain_warning()
- 6.2 includes/coder_security.inc \_coder_security_l_check_plain_warning()
- 6 includes/coder_security.inc \_coder_security_l_check_plain_warning()
Define the warning callbacks.
1 string reference to '_coder_security_l_check_plain_warning'
- coder_security_reviews in includes/
coder_security.inc - Implementation of hook_reviews().
File
- includes/
coder_security.inc, line 75 - This include file implements coder functionality for Drupal Standards.
Code
function _coder_security_l_check_plain_warning() {
return t('!l() already contains a !check_plain() call by default', array(
'!l' => theme('drupalapi', 'l'),
'!check_plain' => theme('drupalapi', 'check_plain'),
));
}