Last active
June 5, 2018 09:47
-
-
Save luksak/4b3743fafad6e59fb876ddfcf9a95a21 to your computer and use it in GitHub Desktop.
Fixing links to untranslated nodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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