You are here

public function DrupalPage::output in Forena Reports 7.5

Overrides DocumentTypeBase::output

File

src/DocumentFormats/DrupalPage.php, line 58
DrupalPage.inc Standard web document manager @author metzlerd

Class

DrupalPage

Namespace

Drupal\forena\DocumentFormats

Code

public function output(&$output) {
  $desc = Frx::Data()
    ->getContext('report');
  if ($this->title && $desc['print'] !== 'block') {
    drupal_set_title(filter_xss($this->title), PASS_THROUGH);
  }
  return FALSE;
}