You are here

public function FrxEditor::asXML in Forena Reports 7.4

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

Report the root element Enter description here ...

1 call to FrxEditor::asXML()
FrxEditor::save in ./FrxEditor.inc
Save report

File

./FrxEditor.inc, line 54
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() {
  $this->dom->formatOutput = TRUE;
  return $this->doc_prefix . $this->dom
    ->saveXML($this->dom->documentElement);
}