You are here

public function FrxReport::asXML in Forena Reports 7.4

Same name and namespace in other branches
  1. 6.2 FrxReport.inc \FrxReport::asXML()
  2. 6 FrxReport.inc \FrxReport::asXML()
  3. 7 FrxReport.inc \FrxReport::asXML()
  4. 7.2 FrxReport.inc \FrxReport::asXML()
  5. 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

FrxReport

Code

public function asXML() {
  $dom = $this->dom;
  $dom->formatOutput = TRUE;
  return $this->doc_prefix . $this->dom
    ->saveXML($this->dom->documentElement);
}