You are here

public function FrxCSVDoc::output in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.3 docformats/FrxCSVDoc.inc \FrxCSVDoc::output()

Overrides FrxDocument::output

File

docformats/FrxCSVDoc.inc, line 84
FrxCSVDoc.inc CSV Document export. @author davidmetzler

Class

FrxCSVDoc
@file FrxCSVDoc.inc CSV Document export. @author davidmetzler

Code

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