Skip to content

Instantly share code, notes, and snippets.

@init90
Created September 29, 2016 09:59
Show Gist options
  • Save init90/7cc5b56dfe975f957724f19480afa602 to your computer and use it in GitHub Desktop.
Save init90/7cc5b56dfe975f957724f19480afa602 to your computer and use it in GitHub Desktop.
Drupal 8, create absolute URL.
$route = \Drupal::service('current_route_match');
$route_name = $route->getRouteName();
$invoice_id = $route->getRawParameter('invoice');
$invoice_url = \Drupal\Core\Url::fromRoute($route_name, ['invoice' => $invoice_id], ['absolute' => TRUE])->toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment