FrxXMLSource.inc in Forena Reports 7.2
Same filename and directory in other branches
File
plugins/FrxXMLSource.incView source
<?php
/**
* Look at the FrxRender class to see a full list of
* properties that can be used here.
*/
class FrxXMLSource extends FrxRenderer {
public function render() {
$node = $this->reportDocNode;
$xml = FrxData::instance()
->currentContext();
if ($xml) {
$output = htmlspecialchars($xml
->asXML());
}
return $output;
}
}
Classes
Name | Description |
---|---|
FrxXMLSource | * Look at the FrxRender class to see a full list of properties that can be used here. |