You are here

public function FrxReport::asXML in Forena Reports 7

Same name and namespace in other branches
  1. 6.2 FrxReport.inc \FrxReport::asXML()
  2. 6 FrxReport.inc \FrxReport::asXML()
  3. 7.2 FrxReport.inc \FrxReport::asXML()
  4. 7.3 FrxReport.inc \FrxReport::asXML()
  5. 7.4 FrxReport.inc \FrxReport::asXML()

Return the xml data for the report.

Return value

unknown

File

./FrxReport.inc, line 298
Basic report provider. Controls the rendering of the report.

Class

FrxReport

Code

public function asXML() {
  if ($this->rpt_xml) {
    return $this->rpt_xml
      ->asXML();
  }
  else {
    return '';
  }
}