getFooter() 공개 메소드

public getFooter ( ) : string
리턴 string
예제 #1
0
 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());
 }
예제 #2
0
 public function getProcessedFooter(ReportContract $report)
 {
     return $this->processInlineHtml($report->getFooter());
 }