You are here

public function FrxReportEditor::asXML in Forena Reports 7

Same name and namespace in other branches
  1. 6.2 FrxReportEditor.inc \FrxReportEditor::asXML()
  2. 6 FrxReportEditor.inc \FrxReportEditor::asXML()
  3. 7.2 FrxReportEditor.inc \FrxReportEditor::asXML()

Report the root element Enter description here ...

File

./FrxReportEditor.inc, line 66

Class

FrxReportEditor
Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd

Code

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