You are here

function _coder_security_l_check_plain_warning in Coder 6.2

Same name and namespace in other branches
  1. 5.2 includes/coder_security.inc \_coder_security_l_check_plain_warning()
  2. 5 includes/coder_security.inc \_coder_security_l_check_plain_warning()
  3. 6 includes/coder_security.inc \_coder_security_l_check_plain_warning()
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 531
This include file implements coder functionality for Drupal Standards.

Code

function _coder_security_l_check_plain_warning() {
  return array(
    '#warning' => t('!l() already contains a !check_plain() call by default', array(
      '!l' => theme('drupalapi', 'l'),
      '!check_plain' => theme('drupalapi', 'check_plain'),
    )),
  );
}