You are here

public function FrxReportFile::skins in Forena Reports 7.4

File

./FrxReportFile.inc, line 175

Class

FrxReportFile

Code

public function skins() {
  $this
    ->validateAllCache();
  $this
    ->getCache('skinfo');
  $skins = array();
  if (isset($this->cache['skinfo'])) {
    foreach ($this->cache['skinfo'] as $name => $obj) {
      $skins[$name] = isset($obj->cache['name']) ? $obj->cache['name'] : $name;
    }
  }
  return $skins;
}