public function FrxXMLSource::render in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 plugins/FrxXMLSource.inc \FrxXMLSource::render()
Overrides FrxRenderer::render
File
- plugins/
FrxXMLSource.inc, line 7
Class
- FrxXMLSource
- * Look at the FrxRender class to see a full list of properties that can be used here.
Code
public function render() {
$node = $this->reportDocNode;
$xml = FrxData::instance()
->currentContext();
if ($xml) {
$output = htmlspecialchars($xml
->asXML());
}
return $output;
}