From f1ab2f022fdc780aca0944d90e9a0e844a0820d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 27 May 2024 13:12:17 +0200 Subject: =?UTF-8?q?2024-02-19:=20popravljen=20(prej=C5=A1nji=20commit=20je?= =?UTF-8?q?=20napa=C4=8Den)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../excel/PHPExcel/Calculation/FormulaToken.php | 176 --------------------- 1 file changed, 176 deletions(-) delete mode 100644 admin/survey/excel/PHPExcel/Calculation/FormulaToken.php (limited to 'admin/survey/excel/PHPExcel/Calculation/FormulaToken.php') diff --git a/admin/survey/excel/PHPExcel/Calculation/FormulaToken.php b/admin/survey/excel/PHPExcel/Calculation/FormulaToken.php deleted file mode 100644 index 7fe7d5a..0000000 --- a/admin/survey/excel/PHPExcel/Calculation/FormulaToken.php +++ /dev/null @@ -1,176 +0,0 @@ -_value = $pValue; - $this->_tokenType = $pTokenType; - $this->_tokenSubType = $pTokenSubType; - } - - /** - * Get Value - * - * @return string - */ - public function getValue() { - return $this->_value; - } - - /** - * Set Value - * - * @param string $value - */ - public function setValue($value) { - $this->_value = $value; - } - - /** - * Get Token Type (represented by TOKEN_TYPE_*) - * - * @return string - */ - public function getTokenType() { - return $this->_tokenType; - } - - /** - * Set Token Type - * - * @param string $value - */ - public function setTokenType($value = PHPExcel_Calculation_FormulaToken::TOKEN_TYPE_UNKNOWN) { - $this->_tokenType = $value; - } - - /** - * Get Token SubType (represented by TOKEN_SUBTYPE_*) - * - * @return string - */ - public function getTokenSubType() { - return $this->_tokenSubType; - } - - /** - * Set Token SubType - * - * @param string $value - */ - public function setTokenSubType($value = PHPExcel_Calculation_FormulaToken::TOKEN_SUBTYPE_NOTHING) { - $this->_tokenSubType = $value; - } -} -- cgit v1.2.3