public function RouteProvider::getRouteByName

Find the route using the provided route name (and parameters).

Parameters

string $name: The route name to fetch

array $parameters: The parameters as they are passed to the UrlGeneratorInterface::generate call.

Return value

\Symfony\Component\Routing\Route The found route.

Throws

\Symfony\Component\Routing\Exception\RouteNotFoundException Thrown if there is no route with that name in this repository.

Overrides RouteProviderInterface::getRouteByName

File

drupal/core/lib/Drupal/Core/Routing/RouteProvider.php, line 143
Contains Drupal\Core\Routing\RouteProvider.

Class

RouteProvider
A Route Provider front-end for all Drupal-stored routes.

Namespace

Drupal\Core\Routing

Code

public function getRouteByName($name, $parameters = array()) {
  $routes = $this
    ->getRoutesByNames(array(
    $name,
  ), $parameters);
  if (empty($routes)) {
    throw new RouteNotFoundException(sprintf('Route "%s" does not exist.', $name));
  }
  return reset($routes);
}