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