You are here

FrxSource.inc in Forena Reports 6.2

Same filename and directory in other branches
  1. 7.2 plugins/FrxSource.inc

File

plugins/FrxSource.inc
View source
<?php

/**
 * Look at the FrxRender class to see a full list of
 * properties that can be used here.
 */
class FrxSource extends FrxRenderer {
  public function render() {
    $node = $this->reportDocNode;
    $output = htmlspecialchars($node
      ->asXML());
    return $output;
  }

}

Classes

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