getHeader() public method

public getHeader ( ) : string
return string
 protected function createHtmlFiles(ReportContract $report)
 {
     $exporter = new HtmlExporter($this->getPath(), $this->fileName);
     $this->htmlBodyPath = $exporter->saveFile($report->getContent());
     $this->htmlHeader = $this->processInlineHtml($report->getHeader());
     $this->htmlFooter = $this->processInlineHtml($report->getFooter());
 }
Beispiel #2
0
 public function getProcessedHeader(ReportContract $report)
 {
     return $this->processInlineHtml($report->getHeader());
 }