123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <?php
- namespace PhpOffice\PhpSpreadsheet;
- use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
- abstract class DefinedName
- {
- protected const REGEXP_IDENTIFY_FORMULA = '[^_\p{N}\p{L}:, \$\'!]';
-
- protected $name;
-
- protected $worksheet;
-
- protected $value;
-
- protected $localOnly;
-
- protected $scope;
-
- protected $isFormula;
-
- public function __construct(
- string $name,
- ?Worksheet $worksheet = null,
- ?string $value = null,
- bool $localOnly = false,
- ?Worksheet $scope = null
- ) {
- if ($worksheet === null) {
- $worksheet = $scope;
- }
-
- $this->name = $name;
- $this->worksheet = $worksheet;
- $this->value = (string) $value;
- $this->localOnly = $localOnly;
-
- $this->scope = ($localOnly === true) ? (($scope === null) ? $worksheet : $scope) : null;
-
-
-
-
- $this->isFormula = self::testIfFormula($this->value);
- }
-
- public static function createInstance(
- string $name,
- ?Worksheet $worksheet = null,
- ?string $value = null,
- bool $localOnly = false,
- ?Worksheet $scope = null
- ): self {
- $value = (string) $value;
- $isFormula = self::testIfFormula($value);
- if ($isFormula) {
- return new NamedFormula($name, $worksheet, $value, $localOnly, $scope);
- }
- return new NamedRange($name, $worksheet, $value, $localOnly, $scope);
- }
- public static function testIfFormula(string $value): bool
- {
- if (substr($value, 0, 1) === '=') {
- $value = substr($value, 1);
- }
- if (is_numeric($value)) {
- return true;
- }
- $segMatcher = false;
- foreach (explode("'", $value) as $subVal) {
-
- if (
- ($segMatcher = !$segMatcher) &&
- (preg_match('/' . self::REGEXP_IDENTIFY_FORMULA . '/miu', $subVal))
- ) {
- return true;
- }
- }
- return false;
- }
-
- public function getName(): string
- {
- return $this->name;
- }
-
- public function setName(string $name): self
- {
- if (!empty($name)) {
-
- $oldTitle = $this->name;
-
- if ($this->worksheet !== null) {
- $this->worksheet->getParent()->removeNamedRange($this->name, $this->worksheet);
- }
- $this->name = $name;
- if ($this->worksheet !== null) {
- $this->worksheet->getParent()->addNamedRange($this);
- }
-
- $newTitle = $this->name;
- ReferenceHelper::getInstance()->updateNamedFormulas($this->worksheet->getParent(), $oldTitle, $newTitle);
- }
- return $this;
- }
-
- public function getWorksheet(): ?Worksheet
- {
- return $this->worksheet;
- }
-
- public function setWorksheet(?Worksheet $worksheet): self
- {
- $this->worksheet = $worksheet;
- return $this;
- }
-
- public function getValue(): string
- {
- return $this->value;
- }
-
- public function setValue(string $value): self
- {
- $this->value = $value;
- return $this;
- }
-
- public function getLocalOnly(): bool
- {
- return $this->localOnly;
- }
-
- public function setLocalOnly(bool $localScope): self
- {
- $this->localOnly = $localScope;
- $this->scope = $localScope ? $this->worksheet : null;
- return $this;
- }
-
- public function getScope(): ?Worksheet
- {
- return $this->scope;
- }
-
- public function setScope(?Worksheet $worksheet): self
- {
- $this->scope = $worksheet;
- $this->localOnly = $worksheet !== null;
- return $this;
- }
-
- public function isFormula(): bool
- {
- return $this->isFormula;
- }
-
- public static function resolveName(string $definedName, Worksheet $worksheet, string $sheetName = ''): ?self
- {
- if ($sheetName === '') {
- $worksheet2 = $worksheet;
- } else {
- $worksheet2 = $worksheet->getParent()->getSheetByName($sheetName);
- if ($worksheet2 === null) {
- return null;
- }
- }
- return $worksheet->getParent()->getDefinedName($definedName, $worksheet2);
- }
-
- 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;
- }
- }
- }
- }
|