You are here

public function FrxEditor::asXML in Forena Reports 7.3

Same name and namespace in other branches
  1. 7.4 FrxEditor.inc \FrxEditor::asXML()

Report the root element Enter description here ...

File

./FrxEditor.inc, line 67
FrxEditor.inc Wrapper XML class for working with DOM object. It provides helper Enter description here ... @author metzlerd

Class

FrxEditor
@file FrxEditor.inc 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();
}