You are here

public function UrlGenerator::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::__construct()

Constructs a new generator object.

Parameters

\Drupal\Core\Routing\RouteProviderInterface $provider: The route provider to be searched for routes.

\Drupal\Core\PathProcessor\OutboundPathProcessorInterface $path_processor: The path processor to convert the system path to one suitable for urls.

\Drupal\Core\RouteProcessor\OutboundRouteProcessorInterface $route_processor: The route processor.

\Symfony\Component\HttpFoundation\RequestStack $request_stack: A request stack object.

string[] $filter_protocols: (optional) An array of protocols allowed for URL generation.

1 method overrides UrlGenerator::__construct()
NullGenerator::__construct in core/lib/Drupal/Core/Routing/NullGenerator.php
Override the parent constructor.

File

core/lib/Drupal/Core/Routing/UrlGenerator.php, line 88

Class

UrlGenerator
Generates URLs from route names and parameters.

Namespace

Drupal\Core\Routing

Code

public function __construct(RouteProviderInterface $provider, OutboundPathProcessorInterface $path_processor, OutboundRouteProcessorInterface $route_processor, RequestStack $request_stack, array $filter_protocols = [
  'http',
  'https',
]) {
  $this->provider = $provider;
  $this->context = new RequestContext();
  $this->pathProcessor = $path_processor;
  $this->routeProcessor = $route_processor;
  UrlHelper::setAllowedProtocols($filter_protocols);
  $this->requestStack = $request_stack;
}