public function RendererBase::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.
7 methods override RendererBase::scrapeConfig()
- FrxCrosstab::scrapeConfig in src/
Renderer/ FrxCrosstab.php - Extract table configuration from the HTML
- FrxEmailMerge::scrapeConfig in src/
Renderer/ FrxEmailMerge.php - Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.
- FrxFieldTable::scrapeConfig in src/
Renderer/ FrxFieldTable.php - Extract table configuration from the HTML
- FrxMergeDocument::scrapeConfig in src/
Renderer/ FrxMergeDocument.php - Default method for extracting configuration information from the template. This just scrapes teh current child html as the template.
- FrxSection::scrapeConfig in src/
Renderer/ FrxSection.php - oull configs.
File
- src/
Renderer/ RendererBase.php, line 589 - FrxRenderer.php Base class for Frx custom Renderer @author davidmetzler
Class
Namespace
Drupal\forena\RendererCode
public function scrapeConfig() {
$content = array();
$this
->extractTemplateHTML($this->reportDocDomNode, $content);
return $content;
}