You are here

public function NodeElementInterface::getRenderedChildren in Extensible BBCode 4.0.x

Same name and namespace in other branches
  1. 8.3 src/Parser/Tree/NodeElementInterface.php \Drupal\xbbcode\Parser\Tree\NodeElementInterface::getRenderedChildren()

Retrieve the rendered output of each child.

Parameters

bool $force_render: (Optional) Set to FALSE to only return output that is already rendered. By default, this method renders it implicitly.

Return value

\Drupal\xbbcode\Parser\Tree\OutputElementInterface[] The sequence of rendered outputs.

2 methods override NodeElementInterface::getRenderedChildren()
NodeElement::getRenderedChildren in src/Parser/Tree/NodeElement.php
Retrieve the rendered output of each child.
PreparedTagElement::getRenderedChildren in src/PreparedTagElement.php
Retrieve the rendered output of each child.

File

src/Parser/Tree/NodeElementInterface.php, line 44

Class

NodeElementInterface
Interface for node elements.

Namespace

Drupal\xbbcode\Parser\Tree

Code

public function getRenderedChildren($force_render = TRUE) : array;