function Url::fromRouteMatch

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRouteMatch()
  2. 10 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRouteMatch()
  3. 11.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRouteMatch()

Creates a new URL object from a route match.

Parameters

\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.

Return value

static

1 call to Url::fromRouteMatch()
PathMatcher::isFrontPage in core/lib/Drupal/Core/Path/PathMatcher.php
Checks if the current page is the front page.

File

core/lib/Drupal/Core/Url.php, line 165

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public static function fromRouteMatch(RouteMatchInterface $route_match) {
  if ($route_match->getRouteObject()) {
    return new static($route_match->getRouteName(), $route_match->getRawParameters()
      ->all());
  }
  else {
    throw new \InvalidArgumentException('Route required');
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.