Skip to content

Instantly share code, notes, and snippets.

@mkorostoff
Created November 10, 2014 22:59
Show Gist options
  • Save mkorostoff/6030941f9ff36333f7f9 to your computer and use it in GitHub Desktop.
Save mkorostoff/6030941f9ff36333f7f9 to your computer and use it in GitHub Desktop.
<?php
//Drupal 7
print l('Hello world', 'node/1');
//prints <a href="/path/to/node/alias">Hello world</a>
<?php
//Drupal 8
$url = \Drupal::service('path.alias_manager')->getAliasByPath('node/1');
$url = Url::fromUri('base://' . $url);
print \Drupal::l('Hello world', $url);
//prints <a href="/path/to/node/alias">Hello world</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment