conditionType = self::CONDITION_NONE; $this->operatorType = self::OPERATOR_NONE; $this->text = null; $this->condition = []; $this->style = new \PhpOffice\PhpSpreadsheet\Style(false, true); } /** * Get Condition type. * * @return string */ public function getConditionType() { return $this->conditionType; } /** * Set Condition type. * * @param string $pValue Condition type * * @return Conditional */ public function setConditionType($pValue = self::CONDITION_NONE) { $this->conditionType = $pValue; return $this; } /** * Get Operator type. * * @return string */ public function getOperatorType() { return $this->operatorType; } /** * Set Operator type. * * @param string $pValue Conditional operator type * * @return Conditional */ public function setOperatorType($pValue = self::OPERATOR_NONE) { $this->operatorType = $pValue; return $this; } /** * Get text. * * @return string */ public function getText() { return $this->text; } /** * Set text. * * @param string $value * * @return Conditional */ public function setText($value = null) { $this->text = $value; return $this; } /** * Get Conditions. * * @return string[] */ public function getConditions() { return $this->condition; } /** * Set Conditions. * * @param string[] $pValue Condition * * @return Conditional */ public function setConditions($pValue) { if (!is_array($pValue)) { $pValue = [$pValue]; } $this->condition = $pValue; return $this; } /** * Add Condition. * * @param string $pValue Condition * * @return Conditional */ public function addCondition($pValue = '') { $this->condition[] = $pValue; return $this; } /** * Get Style. * * @return \PhpOffice\PhpSpreadsheet\Style */ public function getStyle() { return $this->style; } /** * Set Style. * * @param \PhpOffice\PhpSpreadsheet\Style $pValue * * @throws \PhpOffice\PhpSpreadsheet\Exception * * @return Conditional */ public function setStyle(\PhpOffice\PhpSpreadsheet\Style $pValue = null) { $this->style = $pValue; return $this; } /** * Get hash code. * * @return string Hash code */ public function getHashCode() { return md5( $this->conditionType . $this->operatorType . implode(';', $this->condition) . $this->style->getHashCode() . __CLASS__ ); } /** * Implement PHP __clone to create a deep clone, not just a shallow copy. */ public function __clone() { $vars = get_object_vars($this); foreach ($vars as $key => $value) { if (is_object($value)) { $this->$key = clone $value; } else { $this->$key = $value; } } } }