You are here

public function DocumentBase::clear in Forena Reports 8

Clear the buffer

Overrides DocumentInterface::clear

File

src/FrxPlugin/Document/DocumentBase.php, line 38
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 clear() {
  $this->write_buffer = '';
  $this->pre_commands = [];
  $this->parameters_form = [];
  $this->commands = [];
}