You are here

public function DocumentBase::write in Forena Reports 8

Write

Parameters

$buffer:

Return value

mixed

Overrides DocumentInterface::write

3 calls to DocumentBase::write()
Excel::header in src/FrxPlugin/Document/Excel.php
Default implementation to put in content type based headers.
XML::footer in src/FrxPlugin/Document/XML.php
No default footer.
XML::header in src/FrxPlugin/Document/XML.php
Default implementation to put in content type based headers.

File

src/FrxPlugin/Document/DocumentBase.php, line 83
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 write($buffer) {
  if ($this->buffer) {
    $this->write_buffer .= $buffer;
  }
}