public RenderCacheInterface::get(array $elements)
Gets the cached, pre-rendered element of a renderable element from cache.
Parameters
array $elements: A renderable array.
Return value
array|false A renderable array, with the original element and all its children pre- rendered, or FALSE if no cached copy of the element is available.
See also
\Drupal\Core\Render\RendererInterface::render()
::set()
File
- core/lib/Drupal/Core/Render/RenderCacheInterface.php, line 48
Class
- RenderCacheInterface
- Defines an interface for caching rendered render arrays.
Namespace
Drupal\Core\Render
Code
public function get(array $elements);
Please login to continue.