In altre parole, qual è l'equivalente di Drupl 8 di hook_menu_alter () ?
Drupal 8 utilizza ancora hook_menu () , ma per quello che posso vedere, le informazioni restituite dall'hook sono diverse da quelle che l'ho restituito in Drupal 7. Ad esempio, la definizione fornita in user_menu () per l'utente è la seguente.
$items['user'] = array(
'title' => 'User account',
'title callback' => 'user_menu_title',
'weight' => -10,
'route_name' => 'user_page',
'menu_name' => 'account',
);
La proprietà route_name si collega a una voce nel file user.routing.yml .
user_page:
pattern: '/user'
defaults:
_content: '\Drupal\user\Controller\UserController::userPage'
requirements:
_access: 'TRUE'
Questo è diverso da ciò che è stato fatto con Symphony e mi confonde su come un modulo può modificare il percorso definito da un altro utente.
L'unica funzione che sta ancora invocando hook_menu_alter()
è menu_router_build () , ma quella funzione contiene ancora codice che deve essere aggiornato, poiché sta ancora utilizzando ora deprecato 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;
}
}