public function FrxReport::writeBuffer in Forena Reports 7.4
File
- ./
FrxReport.inc, line 853 - Basic report provider. Controls the rendering of the report.
Class
Code
public function writeBuffer() {
if ($this->allowDirectWrite) {
if ($this->file) {
fwrite($this->file, $this->html);
$this->html = '';
}
}
}