You are here

public function CSVDocument::output in Forena Reports 7.5

Overrides DocumentTypeBase::output

File

src/DocumentFormats/CSVDocument.php, line 87
CSVDocumentTypeBase.php CSV Document export. @author davidmetzler

Class

CSVDocument

Namespace

Drupal\forena\DocumentFormats

Code

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