You are here

public function Report::writeBuffer in Forena Reports 7.5

File

src/Report.php, line 794
Basic report provider. Controls the rendering of the report.

Class

Report

Namespace

Drupal\forena

Code

public function writeBuffer() {
  if ($this->allowDirectWrite) {
    if ($this->file) {
      fwrite($this->file, $this->html);
      $this->html = '';
    }
  }
}