You are here

public static function Frx::File in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.5 Frx.inc \Frx::File()
  2. 7.3 Frx.inc \Frx::File()

File singleton factory

Return value

FrxReportFile

File

./Frx.inc, line 69
Frx.incL General Forena Reporting Class

Class

Frx

Code

public static function File() {
  static $o = '';
  if (!$o) {
    require_once 'FrxReportFile.inc';
    $o = new FrxReportFile();
  }
  return $o;
}