function UrlGenerator::__construct
Same name in other branches
- 9 core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::__construct()
- 8.9.x core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::__construct()
- 11.x 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 87
Class
- UrlGenerator
- Generates URLs from route names and parameters.
Namespace
Drupal\Core\RoutingCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.