Réponses:
Le paramètre aura été converti de l'objet nid en objet nœud complet au moment où vous y aurez accès. Ainsi:
$node = \Drupal::routeMatch()->getParameter('node');
if ($node instanceof \Drupal\node\NodeInterface) {
// You can get nid and anything else you need from the node object.
$nid = $node->id();
}
Voir l' enregistrement de modification pour plus d'informations.
/taxonomy/term/{tid}
?
menu_get_object
?
{}
de votre route. Pour les termes de taxonomie, on appelle le paramètre taxonomy_term
route, définition de route /taxonomy/term/{taxonomy_term}
. Ici , vous pouvez l' obtenir comme ça, \Drupal::routeMatch()->getParameter('taxonomy_term')
.
Si vous utilisez ou créez un bloc personnalisé, vous devez suivre ce code pour obtenir l'id du nœud d'URL actuel.
// add libraries
use Drupal\Core\Cache\Cache;
// code to get nid
$node = \Drupal::routeMatch()->getParameter('node');
$node->id() // get current node id (current url node id)
// for cache
public function getCacheTags() {
//With this when your node change your block will rebuild
if ($node = \Drupal::routeMatch()->getParameter('node')) {
//if there is node add its cachetag
return Cache::mergeTags(parent::getCacheTags(), array('node:' . $node->id()));
} else {
//Return default tags instead.
return parent::getCacheTags();
}
}
public function getCacheContexts() {
//if you depends on \Drupal::routeMatch()
//you must set context of this block with 'route' context tag.
//Every new route this block will rebuild
return Cache::mergeContexts(parent::getCacheContexts(), array('route'));
}
Remarque sur la page d'aperçu du nœud, les éléments suivants ne fonctionnent pas:
$node = \Drupal::routeMatch()->getParameter('node');
$nid = $node->id();
Pour la page d'aperçu du nœud, vous devez charger le nœud de la manière suivante:
$node = \Drupal::routeMatch()->getParameter('node_preview');
$nid = $node->id();
Comment charger un objet noeud dans la page d'aperçu du noeud?