You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

241 lines
4.8 KiB

  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet;
  3. use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
  4. class NamedRange
  5. {
  6. /**
  7. * Range name.
  8. *
  9. * @var string
  10. */
  11. private $name;
  12. /**
  13. * Worksheet on which the named range can be resolved.
  14. *
  15. * @var Worksheet
  16. */
  17. private $worksheet;
  18. /**
  19. * Range of the referenced cells.
  20. *
  21. * @var string
  22. */
  23. private $range;
  24. /**
  25. * Is the named range local? (i.e. can only be used on $this->worksheet).
  26. *
  27. * @var bool
  28. */
  29. private $localOnly;
  30. /**
  31. * Scope.
  32. *
  33. * @var Worksheet
  34. */
  35. private $scope;
  36. /**
  37. * Create a new NamedRange.
  38. *
  39. * @param string $pName
  40. * @param Worksheet $pWorksheet
  41. * @param string $pRange
  42. * @param bool $pLocalOnly
  43. * @param null|Worksheet $pScope Scope. Only applies when $pLocalOnly = true. Null for global scope.
  44. *
  45. * @throws Exception
  46. */
  47. public function __construct($pName, Worksheet $pWorksheet, $pRange = 'A1', $pLocalOnly = false, $pScope = null)
  48. {
  49. // Validate data
  50. if (($pName === null) || ($pWorksheet === null) || ($pRange === null)) {
  51. throw new Exception('Parameters can not be null.');
  52. }
  53. // Set local members
  54. $this->name = $pName;
  55. $this->worksheet = $pWorksheet;
  56. $this->range = $pRange;
  57. $this->localOnly = $pLocalOnly;
  58. $this->scope = ($pLocalOnly == true) ? (($pScope == null) ? $pWorksheet : $pScope) : null;
  59. }
  60. /**
  61. * Get name.
  62. *
  63. * @return string
  64. */
  65. public function getName()
  66. {
  67. return $this->name;
  68. }
  69. /**
  70. * Set name.
  71. *
  72. * @param string $value
  73. *
  74. * @return $this
  75. */
  76. public function setName($value)
  77. {
  78. if ($value !== null) {
  79. // Old title
  80. $oldTitle = $this->name;
  81. // Re-attach
  82. if ($this->worksheet !== null) {
  83. $this->worksheet->getParent()->removeNamedRange($this->name, $this->worksheet);
  84. }
  85. $this->name = $value;
  86. if ($this->worksheet !== null) {
  87. $this->worksheet->getParent()->addNamedRange($this);
  88. }
  89. // New title
  90. $newTitle = $this->name;
  91. ReferenceHelper::getInstance()->updateNamedFormulas($this->worksheet->getParent(), $oldTitle, $newTitle);
  92. }
  93. return $this;
  94. }
  95. /**
  96. * Get worksheet.
  97. *
  98. * @return Worksheet
  99. */
  100. public function getWorksheet()
  101. {
  102. return $this->worksheet;
  103. }
  104. /**
  105. * Set worksheet.
  106. *
  107. * @param Worksheet $value
  108. *
  109. * @return $this
  110. */
  111. public function setWorksheet(Worksheet $value = null)
  112. {
  113. if ($value !== null) {
  114. $this->worksheet = $value;
  115. }
  116. return $this;
  117. }
  118. /**
  119. * Get range.
  120. *
  121. * @return string
  122. */
  123. public function getRange()
  124. {
  125. return $this->range;
  126. }
  127. /**
  128. * Set range.
  129. *
  130. * @param string $value
  131. *
  132. * @return $this
  133. */
  134. public function setRange($value)
  135. {
  136. if ($value !== null) {
  137. $this->range = $value;
  138. }
  139. return $this;
  140. }
  141. /**
  142. * Get localOnly.
  143. *
  144. * @return bool
  145. */
  146. public function getLocalOnly()
  147. {
  148. return $this->localOnly;
  149. }
  150. /**
  151. * Set localOnly.
  152. *
  153. * @param bool $value
  154. *
  155. * @return $this
  156. */
  157. public function setLocalOnly($value)
  158. {
  159. $this->localOnly = $value;
  160. $this->scope = $value ? $this->worksheet : null;
  161. return $this;
  162. }
  163. /**
  164. * Get scope.
  165. *
  166. * @return null|Worksheet
  167. */
  168. public function getScope()
  169. {
  170. return $this->scope;
  171. }
  172. /**
  173. * Set scope.
  174. *
  175. * @param null|Worksheet $value
  176. *
  177. * @return $this
  178. */
  179. public function setScope(Worksheet $value = null)
  180. {
  181. $this->scope = $value;
  182. $this->localOnly = $value != null;
  183. return $this;
  184. }
  185. /**
  186. * Resolve a named range to a regular cell range.
  187. *
  188. * @param string $pNamedRange Named range
  189. * @param null|Worksheet $pSheet Scope. Use null for global scope
  190. *
  191. * @return NamedRange
  192. */
  193. public static function resolveRange($pNamedRange, Worksheet $pSheet)
  194. {
  195. return $pSheet->getParent()->getNamedRange($pNamedRange, $pSheet);
  196. }
  197. /**
  198. * Implement PHP __clone to create a deep clone, not just a shallow copy.
  199. */
  200. public function __clone()
  201. {
  202. $vars = get_object_vars($this);
  203. foreach ($vars as $key => $value) {
  204. if (is_object($value)) {
  205. $this->$key = clone $value;
  206. } else {
  207. $this->$key = $value;
  208. }
  209. }
  210. }
  211. }