다시 말해서, Drupl 8은 hook_menu_alter () 와 동등한 것은 무엇 입니까?
Drupal 8은 여전히 hook_menu ()을 사용 하지만, 내가 볼 수있는 것처럼 후크에서 반환되는 정보는 Drupal 7에서 반환 된 후크와 다릅니다. 예를 들어 user_menu () 에 제공된 정의 는 다음과 같습니다.
$items['user'] = array(
'title' => 'User account',
'title callback' => 'user_menu_title',
'weight' => -10,
'route_name' => 'user_page',
'menu_name' => 'account',
);
route_name 특성은 user.routing.yml 파일 의 항목에 연결 됩니다.
user_page:
pattern: '/user'
defaults:
_content: '\Drupal\user\Controller\UserController::userPage'
requirements:
_access: 'TRUE'
이것은 Symphony로 수행 한 것과 다르며, 모듈이 다른 사용자로부터 정의 된 경로를 변경하는 방법에 대해 혼란을줍니다.
여전히 호출하는 유일한 함수 hook_menu_alter()
는 menu_router_build () 이지만 해당 함수에는 여전히 사용되지 않는을 사용하고 있기 때문에 여전히 업데이트해야하는 코드가 포함되어 있습니다 drupal_alter()
.
// Alter the menu as defined in modules, keys are like user/%user.
drupal_alter('menu', $callbacks);
foreach ($callbacks as $path => $router_item) {
// If the menu item is a default local task and incorrectly references a
// route, remove it.
// @todo This may be removed later depending on the outcome of
// http://drupal.org/node/1889790
if (isset($router_item['type']) && $router_item['type'] == MENU_DEFAULT_LOCAL_TASK) {
unset($callbacks[$path]['route_name']);
}
// If the menu item references a route, normalize the route information
// into the old structure. Note that routes are keyed by name, not path,
// so the path of the route takes precedence.
if (isset($router_item['route_name'])) {
$router_item['page callback'] = 'USES_ROUTE';
$router_item['access callback'] = TRUE;
$new_path = _menu_router_translate_route($router_item['route_name']);
unset($callbacks[$path]);
$callbacks[$new_path] = $router_item;
}
}