You are here

public function FrxReportFile::getReportCacheInfo in Forena Reports 7.4

Get the cached information for a single report.

Parameters

unknown $name:

Return value

unknown

File

./FrxReportFile.inc, line 84

Class

FrxReportFile

Code

public function getReportCacheInfo($name) {
  global $language;
  $this
    ->validateAllCache();
  $data = $this
    ->getCache('frx');
  if ($language->language != 'en') {
    $lang = $language->language;
    $name = "{$lang}/{$name}";
  }
  return @$data[$name];
}