From 2f5bf09b37b6101a95a4c5515b557ed8d66ddb87 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Sun, 1 Nov 2015 23:11:21 +0000 Subject: [PATCH] Issue #2603786 by joelpittet, Wim Leers, Fabianx: Make Renderer(Interface)::renderPlaceholder() public --- core/lib/Drupal/Core/Render/Renderer.php | 22 +++------------- .../Drupal/Core/Render/RendererInterface.php | 26 ++++++++++++++++--- 2 files changed, 26 insertions(+), 22 deletions(-) diff --git a/core/lib/Drupal/Core/Render/Renderer.php b/core/lib/Drupal/Core/Render/Renderer.php index b1f7c2aea4d9..9fc7053167c3 100644 --- a/core/lib/Drupal/Core/Render/Renderer.php +++ b/core/lib/Drupal/Core/Render/Renderer.php @@ -158,24 +158,9 @@ public function renderPlain(&$elements) { } /** - * Renders final HTML for a placeholder. - * - * Renders the placeholder in isolation. - * - * @param string $placeholder - * An attached placeholder to render. (This must be a key of one of the - * values of $elements['#attached']['placeholders'].) - * @param array $elements - * The structured array describing the data to be rendered. - * - * @return array - * The updated $elements. - * - * @see ::replacePlaceholders() - * - * @todo Make public as part of https://www.drupal.org/node/2469431 + * {@inheritdoc} */ - protected function renderPlaceholder($placeholder, array $elements) { + public function renderPlaceholder($placeholder, array $elements) { // Get the render array for the given placeholder $placeholder_elements = $elements['#attached']['placeholders'][$placeholder]; @@ -196,7 +181,6 @@ protected function renderPlaceholder($placeholder, array $elements) { return $elements; } - /** * {@inheritdoc} */ @@ -647,6 +631,8 @@ protected function setCurrentRenderContext(RenderContext $context = NULL) { * * @returns bool * Whether placeholders were replaced. + * + * @see \Drupal\Core\Render\Renderer::renderPlaceholder() */ protected function replacePlaceholders(array &$elements) { if (!isset($elements['#attached']['placeholders']) || empty($elements['#attached']['placeholders'])) { diff --git a/core/lib/Drupal/Core/Render/RendererInterface.php b/core/lib/Drupal/Core/Render/RendererInterface.php index 317ded374f59..3cd1ff063827 100644 --- a/core/lib/Drupal/Core/Render/RendererInterface.php +++ b/core/lib/Drupal/Core/Render/RendererInterface.php @@ -33,7 +33,7 @@ interface RendererInterface { * @throws \LogicException * When called from inside another renderRoot() call. * - * @see ::render() + * @see \Drupal\Core\Render\RendererInterface::render() */ public function renderRoot(&$elements); @@ -61,11 +61,29 @@ public function renderRoot(&$elements); * @return \Drupal\Component\Render\MarkupInterface * The rendered HTML. * - * @see ::renderRoot() - * @see ::render() + * @see \Drupal\Core\Render\RendererInterface::renderRoot() + * @see \Drupal\Core\Render\RendererInterface::render() */ public function renderPlain(&$elements); + /** + * Renders final HTML for a placeholder. + * + * Renders the placeholder in isolation. + * + * @param string $placeholder + * An attached placeholder to render. (This must be a key of one of the + * values of $elements['#attached']['placeholders'].) + * @param array $elements + * The structured array describing the data to be rendered. + * + * @return array + * The updated $elements. + * + * @see \Drupal\Core\Render\RendererInterface::render() + */ + public function renderPlaceholder($placeholder, array $elements); + /** * Renders HTML given a structured array tree. * @@ -317,7 +335,7 @@ public function renderPlain(&$elements); * @see \Drupal\Core\Theme\ThemeManagerInterface::render() * @see drupal_process_states() * @see \Drupal\Core\Render\AttachmentsResponseProcessorInterface::processAttachments() - * @see ::renderRoot() + * @see \Drupal\Core\Render\RendererInterface::renderRoot() */ public function render(&$elements, $is_root_call = FALSE); -- GitLab