Renderer::$theme

The theme manager. Type: \Drupal\Core\Theme\ThemeManagerInterface File core/lib/Drupal/Core/Render/Renderer.php, line 25 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $theme;

Renderer::$requestStack

The request stack. Type: \Symfony\Component\HttpFoundation\RequestStack File core/lib/Drupal/Core/Render/Renderer.php, line 74 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $requestStack;

Renderer::$rendererConfig

The renderer configuration array. Type: array File core/lib/Drupal/Core/Render/Renderer.php, line 60 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $rendererConfig;

Renderer::$renderCache

The render cache service. Type: \Drupal\Core\Render\RenderCacheInterface File core/lib/Drupal/Core/Render/Renderer.php, line 53 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $renderCache;

Renderer::$placeholderGenerator

The placeholder generator. Type: \Drupal\Core\Render\PlaceholderGeneratorInterface File core/lib/Drupal/Core/Render/Renderer.php, line 46 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $placeholderGenerator;

Renderer::$isRenderingRoot

Whether we're currently in a ::renderRoot() call. Type: bool File core/lib/Drupal/Core/Render/Renderer.php, line 67 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $isRenderingRoot = FALSE;

Renderer::$elementInfo

The element info. Type: \Drupal\Core\Render\ElementInfoManagerInterface File core/lib/Drupal/Core/Render/Renderer.php, line 39 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $elementInfo;

Renderer::$controllerResolver

The controller resolver. Type: \Drupal\Core\Controller\ControllerResolverInterface File core/lib/Drupal/Core/Render/Renderer.php, line 32 Class Renderer Turns a render array into a HTML string. Namespace Drupal\Core\Render Code protected $controllerResolver;

Renderer::$contextCollection

The render context collection. An individual global render context is tied to the current request. We then need to maintain a different context for each request to correctly handle rendering in subrequests. This must be static as long as some controllers rebuild the container during a request. This causes multiple renderer instances to co-exist simultaneously, render state getting lost, and therefore causing pages to fail to render correctly. As soon as it is guaranteed that during a request th

Renderer

Turns a render array into a HTML string. Hierarchy class \Drupal\Core\Render\Renderer implements RendererInterface File core/lib/Drupal/Core/Render/Renderer.php, line 18 Namespace Drupal\Core\Render Members Name Modifiers Type Description Renderer::$contextCollection protected static property The render context collection. Renderer::$controllerResolver protected property The controller resolver. Renderer::$elementInfo protected property The element info.