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
Namespace
Drupal\forena\RendererCode
public function scrapeConfig() {
$config = array();
$config['class'] = get_class($this);
$this
->extractTemplateHTML($this->reportDocDomNode, $config);
return $config;
}