You are here

public function PHPExcel_Writer_PDF_Core::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php \PHPExcel_Writer_PDF_Core::__construct()

Create a new PHPExcel_Writer_PDF

Parameters

PHPExcel $phpExcel PHPExcel object:

Overrides PHPExcel_Writer_HTML::__construct

3 calls to PHPExcel_Writer_PDF_Core::__construct()
PHPExcel_Writer_PDF_DomPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php
Create a new PHPExcel_Writer_PDF
PHPExcel_Writer_PDF_mPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php
Create a new PHPExcel_Writer_PDF
PHPExcel_Writer_PDF_tcPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php
Create a new PHPExcel_Writer_PDF
3 methods override PHPExcel_Writer_PDF_Core::__construct()
PHPExcel_Writer_PDF_DomPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php
Create a new PHPExcel_Writer_PDF
PHPExcel_Writer_PDF_mPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php
Create a new PHPExcel_Writer_PDF
PHPExcel_Writer_PDF_tcPDF::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php
Create a new PHPExcel_Writer_PDF

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php, line 219

Class

PHPExcel_Writer_PDF_Core
PHPExcel_Writer_PDF_Core

Code

public function __construct(PHPExcel $phpExcel) {
  parent::__construct($phpExcel);
  $this
    ->setUseInlineCss(TRUE);
  $this->_tempDir = PHPExcel_Shared_File::sys_get_temp_dir();
}