From fbd2090320deab02b5119a59f83029b0720e662e Mon Sep 17 00:00:00 2001 From: M_Viper Date: Sun, 10 Mar 2024 15:35:21 +0000 Subject: [PATCH] Dateien nach "includes/PHPExcel/Classes/PHPExcel/Shared/Escher" hochladen --- .../PHPExcel/Shared/Escher/DgContainer.php | 83 +++++++ .../PHPExcel/Shared/Escher/DggContainer.php | 203 ++++++++++++++++++ 2 files changed, 286 insertions(+) create mode 100644 includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer.php create mode 100644 includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer.php diff --git a/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer.php b/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer.php new file mode 100644 index 0000000..cb826db --- /dev/null +++ b/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DgContainer.php @@ -0,0 +1,83 @@ +_dgId; + } + + public function setDgId($value) + { + $this->_dgId = $value; + } + + public function getLastSpId() + { + return $this->_lastSpId; + } + + public function setLastSpId($value) + { + $this->_lastSpId = $value; + } + + public function getSpgrContainer() + { + return $this->_spgrContainer; + } + + public function setSpgrContainer($spgrContainer) + { + return $this->_spgrContainer = $spgrContainer; + } + +} diff --git a/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer.php b/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer.php new file mode 100644 index 0000000..26696ec --- /dev/null +++ b/includes/PHPExcel/Classes/PHPExcel/Shared/Escher/DggContainer.php @@ -0,0 +1,203 @@ +_spIdMax; + } + + /** + * Set maximum shape index of all shapes in all drawings (plus one) + * + * @param int + */ + public function setSpIdMax($value) + { + $this->_spIdMax = $value; + } + + /** + * Get total number of drawings saved + * + * @return int + */ + public function getCDgSaved() + { + return $this->_cDgSaved; + } + + /** + * Set total number of drawings saved + * + * @param int + */ + public function setCDgSaved($value) + { + $this->_cDgSaved = $value; + } + + /** + * Get total number of shapes saved (including group shapes) + * + * @return int + */ + public function getCSpSaved() + { + return $this->_cSpSaved; + } + + /** + * Set total number of shapes saved (including group shapes) + * + * @param int + */ + public function setCSpSaved($value) + { + $this->_cSpSaved = $value; + } + + /** + * Get BLIP Store Container + * + * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer + */ + public function getBstoreContainer() + { + return $this->_bstoreContainer; + } + + /** + * Set BLIP Store Container + * + * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer $bstoreContainer + */ + public function setBstoreContainer($bstoreContainer) + { + $this->_bstoreContainer = $bstoreContainer; + } + + /** + * Set an option for the drawing group + * + * @param int $property The number specifies the option + * @param mixed $value + */ + public function setOPT($property, $value) + { + $this->_OPT[$property] = $value; + } + + /** + * Get an option for the drawing group + * + * @param int $property The number specifies the option + * @return mixed + */ + public function getOPT($property) + { + if (isset($this->_OPT[$property])) { + return $this->_OPT[$property]; + } + return null; + } + + /** + * Get identifier clusters + * + * @return array + */ + public function getIDCLs() + { + return $this->_IDCLs; + } + + /** + * Set identifier clusters. array( => , ...) + * + * @param array $pValue + */ + public function setIDCLs($pValue) + { + $this->_IDCLs = $pValue; + } +}