public static function Frx::File in Forena Reports 7.4
Same name and namespace in other branches
- 7.5 Frx.inc \Frx::File()
- 7.3 Frx.inc \Frx::File()
File singleton factory
Return value
File
- ./
Frx.inc, line 69 - Frx.incL General Forena Reporting Class
Class
Code
public static function File() {
static $o = '';
if (!$o) {
require_once 'FrxReportFile.inc';
$o = new FrxReportFile();
}
return $o;
}