style = new Style(false, true); } /** * Get Condition type. * * @return string */ public function getConditionType() { return $this->conditionType; } /** * Set Condition type. * * @param string $pValue Condition type, see self::CONDITION_* * * @return $this */ public function setConditionType($pValue) { $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, see self::OPERATOR_* * * @return $this */ public function setOperatorType($pValue) { $this->operatorType = $pValue; return $this; } /** * Get text. * * @return string */ public function getText() { return $this->text; } /** * Set text. * * @param string $value * * @return $this */ public function setText($value) { $this->text = $value; return $this; } /** * Get StopIfTrue. * * @return bool */ public function getStopIfTrue() { return $this->stopIfTrue; } /** * Set StopIfTrue. * * @param bool $value * * @return $this */ public function setStopIfTrue($value) { $this->stopIfTrue = $value; return $this; } /** * Get Conditions. * * @return string[] */ public function getConditions() { return $this->condition; } /** * Set Conditions. * * @param string[] $pValue Condition * * @return $this */ public function setConditions($pValue) { if (!is_array($pValue)) { $pValue = [$pValue]; } $this->condition = $pValue; return $this; } /** * Add Condition. * * @param string $pValue Condition * * @return $this */ public function addCondition($pValue) { $this->condition[] = $pValue; return $this; } /** * Get Style. * * @return Style */ public function getStyle() { return $this->style; } /** * Set Style. * * @param Style $pValue * * @return $this */ public function setStyle(?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; } } } }