コード例 #1
0
ファイル: ReportPdf.php プロジェクト: pal-saugstad/webtrees
 /**
  * Run the report.
  */
 public function run()
 {
     $this->pdf->body();
     header('Expires:');
     header('Pragma:');
     header('Cache-control:');
     $this->pdf->Output('webtrees-' . uniqid() . '.pdf', 'I');
 }