You are here

public function FrxFile::getCache in Forena Reports 7.4

5 calls to FrxFile::getCache()
FrxDataFile::userBlocks in ./FrxDataFile.inc
List all the reports for a language.
FrxReportFile::allReports in ./FrxReportFile.inc
List all the reports for a language.
FrxReportFile::getReportCacheInfo in ./FrxReportFile.inc
Get the cached information for a single report.
FrxReportFile::menuReports in ./FrxReportFile.inc
FrxReportFile::skins in ./FrxReportFile.inc

File

./FrxFile.inc, line 188
FrxFile.inc File toolbox for manipulating files contained tn the report directory.

Class

FrxFile
@file FrxFile.inc File toolbox for manipulating files contained tn the report directory.

Code

public function getCache($ext) {
  if (isset($this->cache[$ext])) {
    return $this->cache[$ext];
  }
  else {
    return array();
  }
}