Skip to content

Instantly share code, notes, and snippets.

@jasonjflaherty
jasonjflaherty / drupal_8_php_cheat.md
Created February 25, 2021 15:56 — forked from raphaellarrinaga/drupal_8_php_cheat.md
[Drupal 8 php/config cheatsheet] #tags: drupal8, php, config, cheatsheet

Drupal 8 PHP cheatsheet

Get current node id

$node = \Drupal::routeMatch()->getParameter('node');
if ($node instanceof \Drupal\node\NodeInterface) {
  $nid = $node->id();
}