public function FrxMergeDocument::scrapeConfig in Forena Reports 7.4
Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.
Overrides FrxRenderer::scrapeConfig
File
- renderers/
FrxMergeDocument.inc, line 27
Class
Code
public function scrapeConfig() {
$config = array();
$config['class'] = get_class($this);
$this
->extractTemplateHTML($this->reportDocDomNode, $config);
return $config;
}