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