FrxRptInclude.inc in Forena Reports 7.3
Same filename and directory in other branches
FrxRptInclude.inc Generate an include of another report. @author davidmetzler
File
templates/FrxRptInclude.incView source
<?php
/**
* @file FrxRptInclude.inc
* Generate an include of another report.
* @author davidmetzler
*
*/
class FrxRptInclude extends FrxTemplate {
public function generate($xml, $config) {
$src = $this
->extract('src', $key);
$div = $this
->blockDiv($config);
$frx = array(
'src' => $src,
'renderer' => 'FrxInclude',
);
$this
->addNode($div, 4, 'div', NULL, $config, $frx);
}
}
Classes
Name | Description |
---|---|
FrxRptInclude | @file FrxRptInclude.inc Generate an include of another report. @author davidmetzler |