Skip to content

Instantly share code, notes, and snippets.

@twfahey1
Created March 8, 2022 21:54
Show Gist options
  • Save twfahey1/002bb8858445d4365592e79ddda390a1 to your computer and use it in GitHub Desktop.
Save twfahey1/002bb8858445d4365592e79ddda390a1 to your computer and use it in GitHub Desktop.
Drupal - Get URL from node
<?php
use Drupal\Core\Url;
$url_options = [
'absolute' => TRUE,
'language' => \Drupal::languageManager()->getCurrentLanguage(),
];
$link = Url::fromRoute('entity.node.canonical', ['node' => $node->id()], $url_options)->toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment