public function FrxReport::asXML in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxReport.inc \FrxReport::asXML()
- 6 FrxReport.inc \FrxReport::asXML()
- 7 FrxReport.inc \FrxReport::asXML()
- 7.3 FrxReport.inc \FrxReport::asXML()
- 7.4 FrxReport.inc \FrxReport::asXML()
Return the xml data for the report.
Return value
unknown
File
- ./
FrxReport.inc, line 381 - Basic report provider. Controls the rendering of the report.
Class
Code
public function asXML() {
if ($this->rpt_xml) {
return $this->rpt_xml
->asXML();
}
else {
return '';
}
}