You are here

public function PHPExcel_Writer_HTML::__construct in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php \PHPExcel_Writer_HTML::__construct()

* Create a new PHPExcel_Writer_HTML * *

Parameters

PHPExcel $phpExcel PHPExcel object:

1 call to PHPExcel_Writer_HTML::__construct()
PHPExcel_Writer_PDF_Core::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php
Create a new PHPExcel_Writer_PDF
1 method overrides PHPExcel_Writer_HTML::__construct()
PHPExcel_Writer_PDF_Core::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php
Create a new PHPExcel_Writer_PDF

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php, line 140

Class

PHPExcel_Writer_HTML
PHPExcel_Writer_HTML

Code

public function __construct(PHPExcel $phpExcel) {
  $this->_phpExcel = $phpExcel;
  $this->_defaultFont = $this->_phpExcel
    ->getDefaultStyle()
    ->getFont();
}