Parameters 参数
$items: Associative array of menu router definitions returned from hook_menu().
Related topics 相关主题
File 文件
modules/ system/ , line 1292 模块/系统/system.api.php,第 1292 行 Hooks provided by Drupal core and the System module. Drupal 核心和系统模块提供的钩子。
Code 法典
function hook_menu_alter(&$items) {
// Example - disable the page at node/add
$items['node/add']['access callback'] = FALSE;
}