You are here

public function FrxSource::render in Forena Reports 6.2

Same name and namespace in other branches
  1. 7.2 plugins/FrxSource.inc \FrxSource::render()
  2. 7.3 renderers/FrxSource.inc \FrxSource::render()
  3. 7.4 renderers/FrxSource.inc \FrxSource::render()

Overrides FrxRenderer::render

File

plugins/FrxSource.inc, line 7

Class

FrxSource
* Look at the FrxRender class to see a full list of properties that can be used here.

Code

public function render() {
  $node = $this->reportDocNode;
  $output = htmlspecialchars($node
    ->asXML());
  return $output;
}