You are here

public static function Frx::File in Forena Reports 7.5

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

File singleton factory

Return value

ReportFile

File

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

Class

Frx

Code

public static function File() {
  static $o = '';
  if (!$o) {
    $o = new \Drupal\forena\File\ReportFile();
  }
  return $o;
}