public function PHPExcel_Style_Supervisor::__construct in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php \PHPExcel_Style_Supervisor::__construct()
* Create a new PHPExcel_Style_Alignment * *
Parameters
boolean $isSupervisor Flag indicating if this is a supervisor or not: * Leave this value at default unless you understand exactly what * its ramifications are
8 calls to PHPExcel_Style_Supervisor::__construct()
- PHPExcel_Style_Alignment::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Alignment.php - * Create a new PHPExcel_Style_Alignment * *
- PHPExcel_Style_Border::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Border.php - * Create a new PHPExcel_Style_Border * *
- PHPExcel_Style_Borders::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php - Create a new PHPExcel_Style_Borders * *
- PHPExcel_Style_Color::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Color.php - * Create a new PHPExcel_Style_Color * *
- PHPExcel_Style_Fill::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php - * Create a new PHPExcel_Style_Fill * *
9 methods override PHPExcel_Style_Supervisor::__construct()
- PHPExcel_Style::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style.php - Create a new PHPExcel_Style
- PHPExcel_Style_Alignment::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Alignment.php - * Create a new PHPExcel_Style_Alignment * *
- PHPExcel_Style_Border::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Border.php - * Create a new PHPExcel_Style_Border * *
- PHPExcel_Style_Borders::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Borders.php - Create a new PHPExcel_Style_Borders * *
- PHPExcel_Style_Color::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Color.php - * Create a new PHPExcel_Style_Color * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Supervisor.php, line 59
Class
- PHPExcel_Style_Supervisor
- PHPExcel_Style_Supervisor
Code
public function __construct($isSupervisor = FALSE) {
// Supervisor?
$this->_isSupervisor = $isSupervisor;
}