public static function Frx::DataFile in Forena Reports 7.5
Same name and namespace in other branches
- 7.4 Frx.inc \Frx::DataFile()
File singleton factory
Return value
1 call to Frx::DataFile()
- BlockEditor::revertDBBLocks in src/
Editor/ BlockEditor.php - Writes blocks from the old db structure to the new one.
File
- ./
Frx.inc, line 87 - Frx.incL General Forena Reporting Class
Class
Code
public static function DataFile() {
static $o = '';
if (!$o) {
$o = new \Drupal\forena\File\DataFile();
}
return $o;
}