You are here

public function DocumentBase::setSkin in Forena Reports 8

Parameters

string $skin_name: name/path of the skin to load.

Overrides DocumentInterface::setSkin

File

src/FrxPlugin/Document/DocumentBase.php, line 69
DocumentBase.inc Given a report, render the appropriate output given the document format. @author davidmetzler

Class

DocumentBase

Namespace

Drupal\forena\FrxPlugin\Document

Code

public function setSkin($skin_name) {
  $this->skin_name = $skin_name;
  $this->skin = Skin::instance($skin_name);
}