You are here

public function FrxMergeDocument::scrapeConfig in Forena Reports 7.5

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

Overrides RendererBase::scrapeConfig

File

src/Renderer/FrxMergeDocument.php, line 28

Class

FrxMergeDocument

Namespace

Drupal\forena\Renderer

Code

public function scrapeConfig() {
  $config = array();
  $config['class'] = get_class($this);
  $this
    ->extractTemplateHTML($this->reportDocDomNode, $config);
  return $config;
}