public function RendererBase::extractChildSource in Forena Reports 7.5
Get the textual representations of html for the configuration engine.
1 call to RendererBase::extractChildSource()
- RendererBase::extractXPathInnerHTML in src/
Renderer/ RendererBase.php - Extracts the inner html of all nodes that match a particular xpath expression.
File
- src/
Renderer/ RendererBase.php, line 934 - FrxRenderer.php Base class for Frx custom Renderer @author davidmetzler
Class
Namespace
Drupal\forena\RendererCode
public function extractChildSource(DOMNode $node) {
$content = '';
foreach ($node->childNodes as $child) {
switch ($child->nodeType) {
case XML_ELEMENT_NODE:
$content .= $this->frxReport->dom
->saveXML($child);
break;
case XML_TEXT_NODE:
case XML_ENTITY_REF_NODE:
case XML_ENTITY_NODE:
$content .= $child->textContent;
break;
case XML_COMMENT_NODE:
$content .= '<!--' . $child->data . '-->';
break;
}
}
return $content;
}