W3cubDocs

/Drupal 8

protected function Renderer::setCurrentRenderContext

protected Renderer::setCurrentRenderContext(RenderContext $context = NULL)

Sets the current render context.

Parameters

\Drupal\Core\Render\RenderContext|null $context: The render context. This can be NULL for instance when restoring the original render context, which is in fact NULL.

Return value

$this

File

core/lib/Drupal/Core/Render/Renderer.php, line 606

Class

Renderer
Turns a render array into a HTML string.

Namespace

Drupal\Core\Render

Code

protected function setCurrentRenderContext(RenderContext $context = NULL) {
  $request = $this->requestStack->getCurrentRequest();
  static::$contextCollection[$request] = $context;
  return $this;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Render!Renderer.php/function/Renderer::setCurrentRenderContext/8.1.x