-
Angie Byron authored
Issue #2273277 by Wim Leers, effulgentsia, Fabianx: Fixed Figure out a solution for the problematic interaction between the render system and the theme system when using #pre_render.
Angie Byron authoredIssue #2273277 by Wim Leers, effulgentsia, Fabianx: Fixed Figure out a solution for the problematic interaction between the render system and the theme system when using #pre_render.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
RenderStackFrame.php 478 B
<?php
/**
* @file
* Contains \Drupal\Core\Render\RenderStackFrame.
*/
namespace Drupal\Core\Render;
/**
* Value object used for bubbleable rendering metadata.
*
* @see drupal_render()
*/
class RenderStackFrame {
/**
* Cache tags.
*
* @var array
*/
public $tags = [];
/**
* Attached assets.
*
* @var array
*/
public $attached = [];
/**
* #post_render_cache metadata.
*
* @var array
*/
public $postRenderCache = [];
}