You are here

public function PHPExcel_Style_Conditional::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php \PHPExcel_Style_Conditional::__construct()

Create a new PHPExcel_Style_Conditional

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php, line 96

Class

PHPExcel_Style_Conditional
PHPExcel_Style_Conditional

Code

public function __construct() {

  // Initialise values
  $this->_conditionType = PHPExcel_Style_Conditional::CONDITION_NONE;
  $this->_operatorType = PHPExcel_Style_Conditional::OPERATOR_NONE;
  $this->_text = null;
  $this->_condition = array();
  $this->_style = new PHPExcel_Style(FALSE, TRUE);
}