You are here

function _coder_review_6x_menu_access_callback_warning in Coder 7

1 string reference to '_coder_review_6x_menu_access_callback_warning'
coder_review_6x_reviews in coder_review/includes/coder_review_6x.inc
Implements hook_reviews().

File

coder_review/includes/coder_review_6x.inc, line 1317
This include file implements coder functionality for 5.x -> 6.x upgrades.

Code

function _coder_review_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',
  );
}