public function Skin::replacedInfo in Forena Reports 8
Return Replaced skin definition.
Return value
array The token replaced skin definition
File
- src/
Skin.php, line 81 - Implements \Drupal\forena\Skins
Class
- Skin
- Class Skin A skin is a collectio of css and js files that need to get used by an application or reports. Skins are idntified by .fri files contained in the report directory.
Namespace
Drupal\forenaCode
public function replacedInfo() {
$info = $this->info;
$this->replacer
->replaceNested($info);
return $info;
}