You are here

function _coder_security_menu_access_callback_warning in Coder 6.2

1 string reference to '_coder_security_menu_access_callback_warning'
coder_security_reviews in includes/coder_security.inc
Implementation of hook_reviews().

File

includes/coder_security.inc, line 574
This include file implements coder functionality for Drupal Standards.

Code

function _coder_security_menu_access_callback_warning() {
  return array(
    '#warning' => t("The value for the 'access callback' must always be a string which is the the name of the function - never a function call. It may also be assigned the value TRUE or FALSE if the callback is always (or never) accessible."),
    '#link' => 'http://drupal.org/node/109157',
  );
}