You are here

public function MetadataBubblingUrlGenerator::setContext in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Render/MetadataBubblingUrlGenerator.php \Drupal\Core\Render\MetadataBubblingUrlGenerator::setContext()

Sets the request context.

Parameters

RequestContext $context The context:

Overrides RequestContextAwareInterface::setContext

File

core/lib/Drupal/Core/Render/MetadataBubblingUrlGenerator.php, line 58
Contains \Drupal\Core\Render\MetadataBubblingUrlGenerator.

Class

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

Namespace

Drupal\Core\Render

Code

public function setContext(SymfonyRequestContext $context) {
  $this->urlGenerator
    ->setContext($context);
}