public function UrlGenerator::generate

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::generate()
  2. 8.x drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Generator/UrlGenerator.php \Symfony\Component\Routing\Generator\UrlGenerator::generate()

Generates a URL or path for a specific route based on the given parameters.

Parameters that reference placeholders in the route pattern will substitute them in the path or host. Extra params are added as query string to the URL.

When the passed reference type cannot be generated for the route because it requires a different host or scheme than the current one, the method will return a more comprehensive reference that includes the required params. For example, when you call this method with $referenceType = ABSOLUTE_PATH but the route requires the https scheme whereas the current scheme is http, it will instead return an ABSOLUTE_URL with the https scheme and the current host. This makes sure the generated URL matches the route in any case.

If there is no route with the given name, the generator must throw the RouteNotFoundException.

@api

Parameters

string $name The name of the route:

mixed $parameters An array of parameters:

Boolean|string $referenceType The type of reference to be generated (one of the constants):

Return value

string The generated URL

Throws

RouteNotFoundException If the named route doesn't exist

MissingMandatoryParametersException When some parameters are missing that are mandatory for the route

InvalidParameterException When a parameter value for a placeholder is not correct because it does not match the requirement

Overrides UrlGeneratorInterface::generate

1 method overrides UrlGenerator::generate()
ProviderBasedGenerator::generate in drupal/core/vendor/symfony-cmf/routing/Symfony/Cmf/Component/Routing/ProviderBasedGenerator.php
Generates a URL or path for a specific route based on the given parameters.

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Generator/UrlGenerator.php, line 131

Class

UrlGenerator
UrlGenerator can generate a URL or a path for any route in the RouteCollection based on the passed parameters.

Namespace

Symfony\Component\Routing\Generator

Code

public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) {
  if (null === ($route = $this->routes
    ->get($name))) {
    throw new RouteNotFoundException(sprintf('Unable to generate a URL for the named route "%s" as such route does not exist.', $name));
  }

  // the Route has a cache of its own and is not recompiled as long as it does not get modified
  $compiledRoute = $route
    ->compile();
  return $this
    ->doGenerate($compiledRoute
    ->getVariables(), $route
    ->getDefaults(), $route
    ->getRequirements(), $compiledRoute
    ->getTokens(), $parameters, $name, $referenceType, $compiledRoute
    ->getHostTokens());
}