Skip to content

Instantly share code, notes, and snippets.

@luksak
Last active June 5, 2018 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luksak/4b3743fafad6e59fb876ddfcf9a95a21 to your computer and use it in GitHub Desktop.
Save luksak/4b3743fafad6e59fb876ddfcf9a95a21 to your computer and use it in GitHub Desktop.
Fixing links to untranslated nodes
<?php
/*
* Implements hook_preprocess_HOOK().
*/
function THEME_preprocess_node(&$variables) {
$url = Url::fromRoute('entity.node.canonical', array('node' => $variables['node']->id()));
$variables['url'] = $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment