You are here

public function FrxRenderer::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.

7 methods override FrxRenderer::scrapeConfig()
FrxCrosstab::scrapeConfig in renderers/FrxCrosstab.inc
Extract table configuration from the HTML
FrxEmailMerge::scrapeConfig in renderers/FrxEmailMerge.inc
Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.
FrxFieldTable::scrapeConfig in renderers/FrxFieldTable.inc
Extract table configuration from the HTML
FrxMergeDocument::scrapeConfig in renderers/FrxMergeDocument.inc
Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.
FrxSection::scrapeConfig in renderers/FrxSection.inc
oull configs.

... See full list

File

renderers/FrxRenderer.inc, line 580
FrxRenderer.inc Base class for Frx custom renderers @author davidmetzler

Class

FrxRenderer
@file FrxRenderer.inc Base class for Frx custom renderers @author davidmetzler

Code

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