public RendererInterface::renderPlaceholder($placeholder, array $elements)
Renders final HTML for a placeholder.
Renders the placeholder in isolation.
Parameters
string $placeholder: An attached placeholder to render. (This must be a key of one of the values of $elements['#attached']['placeholders'].)
array $elements: The structured array describing the data to be rendered.
Return value
array The updated $elements.
See also
\Drupal\Core\Render\RendererInterface::render()
File
- core/lib/Drupal/Core/Render/RendererInterface.php, line 80
Class
- RendererInterface
- Defines an interface for turning a render array into a string.
Namespace
Drupal\Core\Render
Code
public function renderPlaceholder($placeholder, array $elements);
Please login to continue.