From 75160b12821f7f4299cce7f0b69c83c1502ae071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 27 May 2024 13:08:29 +0200 Subject: 2024-02-19 upstream --- .../src/PhpSpreadsheet/Style/Conditional.php | 274 +++++++++++++++++++++ 1 file changed, 274 insertions(+) create mode 100644 vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php (limited to 'vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php') diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php new file mode 100644 index 0000000..92085c8 --- /dev/null +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php @@ -0,0 +1,274 @@ +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; + } + } + } +} -- cgit v1.2.3