You are here

public function ExcelDocument::output in Forena Reports 7.5

Overrides DocumentTypeBase::output

File

src/DocumentFormats/ExcelDocument.php, line 94
FrxXLSWordDoc.inc Excel Document export. @author davidmetzler

Class

ExcelDocument

Namespace

Drupal\forena\DocumentFormats

Code

public function output(&$output) {
  $output = $this
    ->convertCharset($output);
  parent::output($output);
  return TRUE;
}