public function UrlGenerator::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Routing/UrlGenerator.php \Drupal\Core\Routing\UrlGenerator::__construct()
- 9 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.
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;
}