You are here

public function RendererBase::scrapeConfig in Forena Reports 8

Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.

File

src/FrxPlugin/Renderer/RendererBase.php, line 579
FrxRenderer.php Base class for FrxAPI custom Renderer @author davidmetzler

Class

RendererBase
Crosstab Renderer

Namespace

Drupal\forena\FrxPlugin\Renderer

Code

public function scrapeConfig() {
  $content = array();
  $this
    ->extractTemplateHTML($this->reportDocDomNode, $content);
  return $content;
}