You are here

public function MetadataBubblingUrlGenerator::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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 50
Contains \Drupal\Core\Render\MetadataBubblingUrlGenerator.

Class

MetadataBubblingUrlGenerator
Decorator for the URL generator, which bubbles bubbleable URL metadata.

Namespace

Drupal\Core\Render

Code

public function __construct(UrlGeneratorInterface $url_generator, RendererInterface $renderer) {
  $this->urlGenerator = $url_generator;
  $this->renderer = $renderer;
}