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