You are here

public function PHPExcel_Cell_DataValidation::__construct in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php \PHPExcel_Cell_DataValidation::__construct()

Create a new PHPExcel_Cell_DataValidation

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php, line 157

Class

PHPExcel_Cell_DataValidation
PHPExcel_Cell_DataValidation

Code

public function __construct() {

  // Initialise member variables
  $this->_formula1 = '';
  $this->_formula2 = '';
  $this->_type = PHPExcel_Cell_DataValidation::TYPE_NONE;
  $this->_errorStyle = PHPExcel_Cell_DataValidation::STYLE_STOP;
  $this->_operator = '';
  $this->_allowBlank = FALSE;
  $this->_showDropDown = FALSE;
  $this->_showInputMessage = FALSE;
  $this->_showErrorMessage = FALSE;
  $this->_errorTitle = '';
  $this->_error = '';
  $this->_promptTitle = '';
  $this->_prompt = '';
}