public function MetadataBubblingUrlGenerator::__construct in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Render/MetadataBubblingUrlGenerator.php \Drupal\Core\Render\MetadataBubblingUrlGenerator::__construct()
Constructs a new bubbling URL generator service.
Parameters
\Drupal\Core\Routing\UrlGeneratorInterface $url_generator: The non-bubbling URL generator.
\Drupal\Core\Render\RendererInterface $renderer: The renderer.
File
- core/
lib/ Drupal/ Core/ Render/ MetadataBubblingUrlGenerator.php, line 45
Class
- MetadataBubblingUrlGenerator
- Decorator for the URL generator, which bubbles bubbleable URL metadata.
Namespace
Drupal\Core\RenderCode
public function __construct(UrlGeneratorInterface $url_generator, RendererInterface $renderer) {
$this->urlGenerator = $url_generator;
$this->renderer = $renderer;
}