กล่าวอีกนัยหนึ่ง Drupl 8 มีค่าเท่ากับhook_menu_alter ()คืออะไร
Drupal 8 ยังคงใช้hook_menu ()แต่สำหรับสิ่งที่ฉันเห็นข้อมูลที่ส่งคืนโดย hook จะแตกต่างจาก hook ที่ส่งคืนใน 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;
}
}