public function Renderer::hasRenderContext

public Renderer::hasRenderContext()

Checks whether a render context is active.

This is useful only in very specific situations to determine whether the system is already capable of collecting bubbleable metadata. Normally it should not be necessary to be concerned about this.

Return value

bool TRUE if the renderer has a render context active, FALSE otherwise.

Overrides RendererInterface::hasRenderContext

File

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

Class

Renderer
Turns a render array into a HTML string.

Namespace

Drupal\Core\Render

Code

public function hasRenderContext() {
  return (bool) $this->getCurrentRenderContext();
}

© 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::hasRenderContext/8.1.x