123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- <?php
- namespace PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter;
- use PhpOffice\PhpSpreadsheet\Exception as PhpSpreadsheetException;
- use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter;
- class Column
- {
- const AUTOFILTER_FILTERTYPE_FILTER = 'filters';
- const AUTOFILTER_FILTERTYPE_CUSTOMFILTER = 'customFilters';
- // Supports no more than 2 rules, with an And/Or join criteria
- // if more than 1 rule is defined
- const AUTOFILTER_FILTERTYPE_DYNAMICFILTER = 'dynamicFilter';
- // Even though the filter rule is constant, the filtered data can vary
- // e.g. filtered by date = TODAY
- const AUTOFILTER_FILTERTYPE_TOPTENFILTER = 'top10';
- /**
- * Types of autofilter rules.
- *
- * @var string[]
- */
- private static $filterTypes = [
- // Currently we're not handling
- // colorFilter
- // extLst
- // iconFilter
- self::AUTOFILTER_FILTERTYPE_FILTER,
- self::AUTOFILTER_FILTERTYPE_CUSTOMFILTER,
- self::AUTOFILTER_FILTERTYPE_DYNAMICFILTER,
- self::AUTOFILTER_FILTERTYPE_TOPTENFILTER,
- ];
- // Multiple Rule Connections
- const AUTOFILTER_COLUMN_JOIN_AND = 'and';
- const AUTOFILTER_COLUMN_JOIN_OR = 'or';
- /**
- * Join options for autofilter rules.
- *
- * @var string[]
- */
- private static $ruleJoins = [
- self::AUTOFILTER_COLUMN_JOIN_AND,
- self::AUTOFILTER_COLUMN_JOIN_OR,
- ];
- /**
- * Autofilter.
- *
- * @var AutoFilter
- */
- private $parent;
- /**
- * Autofilter Column Index.
- *
- * @var string
- */
- private $columnIndex = '';
- /**
- * Autofilter Column Filter Type.
- *
- * @var string
- */
- private $filterType = self::AUTOFILTER_FILTERTYPE_FILTER;
- /**
- * Autofilter Multiple Rules And/Or.
- *
- * @var string
- */
- private $join = self::AUTOFILTER_COLUMN_JOIN_OR;
- /**
- * Autofilter Column Rules.
- *
- * @var array of Column\Rule
- */
- private $ruleset = [];
- /**
- * Autofilter Column Dynamic Attributes.
- *
- * @var array of mixed
- */
- private $attributes = [];
- /**
- * Create a new Column.
- *
- * @param string $pColumn Column (e.g. A)
- * @param AutoFilter $pParent Autofilter for this column
- */
- public function __construct($pColumn, AutoFilter $pParent = null)
- {
- $this->columnIndex = $pColumn;
- $this->parent = $pParent;
- }
- /**
- * Get AutoFilter Column Index.
- *
- * @return string
- */
- public function getColumnIndex()
- {
- return $this->columnIndex;
- }
- /**
- * Set AutoFilter Column Index.
- *
- * @param string $pColumn Column (e.g. A)
- *
- * @throws PhpSpreadsheetException
- *
- * @return Column
- */
- public function setColumnIndex($pColumn)
- {
- // Uppercase coordinate
- $pColumn = strtoupper($pColumn);
- if ($this->parent !== null) {
- $this->parent->testColumnInRange($pColumn);
- }
- $this->columnIndex = $pColumn;
- return $this;
- }
- /**
- * Get this Column's AutoFilter Parent.
- *
- * @return AutoFilter
- */
- public function getParent()
- {
- return $this->parent;
- }
- /**
- * Set this Column's AutoFilter Parent.
- *
- * @param AutoFilter $pParent
- *
- * @return Column
- */
- public function setParent(AutoFilter $pParent = null)
- {
- $this->parent = $pParent;
- return $this;
- }
- /**
- * Get AutoFilter Type.
- *
- * @return string
- */
- public function getFilterType()
- {
- return $this->filterType;
- }
- /**
- * Set AutoFilter Type.
- *
- * @param string $pFilterType
- *
- * @throws PhpSpreadsheetException
- *
- * @return Column
- */
- public function setFilterType($pFilterType)
- {
- if (!in_array($pFilterType, self::$filterTypes)) {
- throw new PhpSpreadsheetException('Invalid filter type for column AutoFilter.');
- }
- $this->filterType = $pFilterType;
- return $this;
- }
- /**
- * Get AutoFilter Multiple Rules And/Or Join.
- *
- * @return string
- */
- public function getJoin()
- {
- return $this->join;
- }
- /**
- * Set AutoFilter Multiple Rules And/Or.
- *
- * @param string $pJoin And/Or
- *
- * @throws PhpSpreadsheetException
- *
- * @return Column
- */
- public function setJoin($pJoin)
- {
- // Lowercase And/Or
- $pJoin = strtolower($pJoin);
- if (!in_array($pJoin, self::$ruleJoins)) {
- throw new PhpSpreadsheetException('Invalid rule connection for column AutoFilter.');
- }
- $this->join = $pJoin;
- return $this;
- }
- /**
- * Set AutoFilter Attributes.
- *
- * @param string[] $attributes
- *
- * @return Column
- */
- public function setAttributes(array $attributes)
- {
- $this->attributes = $attributes;
- return $this;
- }
- /**
- * Set An AutoFilter Attribute.
- *
- * @param string $pName Attribute Name
- * @param string $pValue Attribute Value
- *
- * @return Column
- */
- public function setAttribute($pName, $pValue)
- {
- $this->attributes[$pName] = $pValue;
- return $this;
- }
- /**
- * Get AutoFilter Column Attributes.
- *
- * @return string[]
- */
- public function getAttributes()
- {
- return $this->attributes;
- }
- /**
- * Get specific AutoFilter Column Attribute.
- *
- * @param string $pName Attribute Name
- *
- * @return string
- */
- public function getAttribute($pName)
- {
- if (isset($this->attributes[$pName])) {
- return $this->attributes[$pName];
- }
- return null;
- }
- /**
- * Get all AutoFilter Column Rules.
- *
- * @return Column\Rule[]
- */
- public function getRules()
- {
- return $this->ruleset;
- }
- /**
- * Get a specified AutoFilter Column Rule.
- *
- * @param int $pIndex Rule index in the ruleset array
- *
- * @return Column\Rule
- */
- public function getRule($pIndex)
- {
- if (!isset($this->ruleset[$pIndex])) {
- $this->ruleset[$pIndex] = new Column\Rule($this);
- }
- return $this->ruleset[$pIndex];
- }
- /**
- * Create a new AutoFilter Column Rule in the ruleset.
- *
- * @return Column\Rule
- */
- public function createRule()
- {
- $this->ruleset[] = new Column\Rule($this);
- return end($this->ruleset);
- }
- /**
- * Add a new AutoFilter Column Rule to the ruleset.
- *
- * @param Column\Rule $pRule
- *
- * @return Column
- */
- public function addRule(Column\Rule $pRule)
- {
- $pRule->setParent($this);
- $this->ruleset[] = $pRule;
- return $this;
- }
- /**
- * Delete a specified AutoFilter Column Rule
- * If the number of rules is reduced to 1, then we reset And/Or logic to Or.
- *
- * @param int $pIndex Rule index in the ruleset array
- *
- * @return Column
- */
- public function deleteRule($pIndex)
- {
- if (isset($this->ruleset[$pIndex])) {
- unset($this->ruleset[$pIndex]);
- // If we've just deleted down to a single rule, then reset And/Or joining to Or
- if (count($this->ruleset) <= 1) {
- $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR);
- }
- }
- return $this;
- }
- /**
- * Delete all AutoFilter Column Rules.
- *
- * @return Column
- */
- public function clearRules()
- {
- $this->ruleset = [];
- $this->setJoin(self::AUTOFILTER_COLUMN_JOIN_OR);
- return $this;
- }
- /**
- * 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 ($key === 'parent') {
- // Detach from autofilter parent
- $this->parent = null;
- } elseif ($key === 'ruleset') {
- // The columns array of \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\AutoFilter objects
- $this->ruleset = [];
- foreach ($value as $k => $v) {
- $cloned = clone $v;
- $cloned->setParent($this); // attach the new cloned Rule to this new cloned Autofilter Cloned object
- $this->ruleset[$k] = $cloned;
- }
- } elseif (is_object($value)) {
- $this->$key = clone $value;
- } else {
- $this->$key = $value;
- }
- }
- }
- }
|