function _coder_6x_menu_access_callback_warning in Coder 6.2
1 string reference to '_coder_6x_menu_access_callback_warning'
- coder_6x_reviews in includes/
coder_6x.inc - Implementation of hook_reviews().
File
- includes/
coder_6x.inc, line 601 - This include file implements coder functionality for 5.x -> 6.x upgrades.
Code
function _coder_6x_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',
);
}