/branches/v1.2.0/Classes/PHPExcel/Worksheet.php

# · PHP · 869 lines · 355 code · 103 blank · 411 comment · 52 complexity · acbc821addccba2e7058a5146c3d0096 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2007 PHPExcel, Maarten Balliauw
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel
  23. * @copyright Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/lgpl.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** PHPExcel */
  28. require_once 'PHPExcel.php';
  29. /** PHPExcel_Cell */
  30. require_once 'PHPExcel/Cell.php';
  31. /** PHPExcel_Worksheet_RowDimension */
  32. require_once 'PHPExcel/Worksheet/RowDimension.php';
  33. /** PHPExcel_Worksheet_ColumnDimension */
  34. require_once 'PHPExcel/Worksheet/ColumnDimension.php';
  35. /** PHPExcel_Worksheet_PageSetup */
  36. require_once 'PHPExcel/Worksheet/PageSetup.php';
  37. /** PHPExcel_Worksheet_PageMargins */
  38. require_once 'PHPExcel/Worksheet/PageMargins.php';
  39. /** PHPExcel_Worksheet_HeaderFooter */
  40. require_once 'PHPExcel/Worksheet/HeaderFooter.php';
  41. /** PHPExcel_Worksheet_Drawing */
  42. require_once 'PHPExcel/Worksheet/Drawing.php';
  43. /** PHPExcel_Worksheet_Protection */
  44. require_once 'PHPExcel/Worksheet/Protection.php';
  45. /** PHPExcel_Style */
  46. require_once 'PHPExcel/Style.php';
  47. /** PHPExcel_IComparable */
  48. require_once 'PHPExcel/IComparable.php';
  49. /** PHPExcel_Shared_PasswordHasher */
  50. require_once 'PHPExcel/Shared/PasswordHasher.php';
  51. /**
  52. * PHPExcel_Worksheet
  53. *
  54. * @category PHPExcel
  55. * @package PHPExcel
  56. * @copyright Copyright (c) 2006 - 2007 PHPExcel (http://www.codeplex.com/PHPExcel)
  57. */
  58. class PHPExcel_Worksheet implements PHPExcel_IComparable
  59. {
  60. /* Break types */
  61. const BREAK_NONE = 0;
  62. const BREAK_ROW = 1;
  63. const BREAK_COLUMN = 2;
  64. /**
  65. * Parent spreadsheet
  66. *
  67. * @var PHPExcel
  68. */
  69. private $_parent;
  70. /**
  71. * Collection of cells
  72. *
  73. * @var PHPExcel_Cell[]
  74. */
  75. private $_cellCollection = array();
  76. /**
  77. * Collection of row dimensions
  78. *
  79. * @var PHPExcel_Worksheet_RowDimension[]
  80. */
  81. private $_rowDimensions = array();
  82. /**
  83. * Collection of column dimensions
  84. *
  85. * @var PHPExcel_Worksheet_ColumnDimension[]
  86. */
  87. private $_columnDimensions = array();
  88. /**
  89. * Collection of drawings
  90. *
  91. * @var PHPExcel_Worksheet_Drawing[]
  92. */
  93. private $_drawingCollection = null;
  94. /**
  95. * Worksheet title
  96. *
  97. * @var string
  98. */
  99. private $_title;
  100. /**
  101. * Page setup
  102. *
  103. * @var PHPExcel_Worksheet_PageSetup
  104. */
  105. private $_pageSetup;
  106. /**
  107. * Page margins
  108. *
  109. * @var PHPExcel_Worksheet_PageMargins
  110. */
  111. private $_pageMargins;
  112. /**
  113. * Page header/footer
  114. *
  115. * @var PHPExcel_Worksheet_HeaderFooter
  116. */
  117. private $_headerFooter;
  118. /**
  119. * Protection
  120. *
  121. * @var PHPExcel_Worksheet_Protection
  122. */
  123. private $_protection;
  124. /**
  125. * Collection of styles
  126. *
  127. * @var PHPExcel_Style[]
  128. */
  129. private $_styles = array();
  130. /**
  131. * Is the current cell collection sorted already?
  132. *
  133. * @var boolean
  134. */
  135. private $_cellCollectionIsSorted = false;
  136. /**
  137. * Collection of breaks
  138. *
  139. * @var array
  140. */
  141. private $_breaks = array();
  142. /**
  143. * Collection of merged cell ranges
  144. *
  145. * @var array
  146. */
  147. private $_mergeCells = array();
  148. /**
  149. * Collection of protected cell ranges
  150. *
  151. * @var array
  152. */
  153. private $_protectedCells = array();
  154. /**
  155. * Autofilter Range
  156. *
  157. * @var string
  158. */
  159. private $_autoFilter = '';
  160. /**
  161. * Create a new worksheet
  162. *
  163. * @param PHPExcel $pParent
  164. * @param string $pTitle
  165. */
  166. public function __construct($pParent = null, $pTitle = 'Worksheet')
  167. {
  168. // Set parent and title
  169. if (!is_null($pParent) && $pParent instanceof PHPExcel) {
  170. $this->_parent = $pParent;
  171. $this->setTitle($pTitle);
  172. } else {
  173. throw new Exception("Invalid PHPExcel object given.");
  174. }
  175. // Set page setup
  176. $this->_pageSetup = new PHPExcel_Worksheet_PageSetup();
  177. // Set page margins
  178. $this->_pageMargins = new PHPExcel_Worksheet_PageMargins();
  179. // Set page header/footer
  180. $this->_headerFooter = new PHPExcel_Worksheet_HeaderFooter();
  181. // Create a default style and a default gray125 style
  182. $this->_styles['default'] = new PHPExcel_Style();
  183. $this->_styles['gray125'] = new PHPExcel_Style();
  184. $this->_styles['gray125']->getFill()->setFillType(PHPExcel_Style_Fill::FILL_PATTERN_GRAY125);
  185. // Drawing collection
  186. $this->_drawingCollection = new ArrayObject();
  187. // Protection
  188. $this->_protection = new PHPExcel_Worksheet_Protection();
  189. }
  190. /**
  191. * Get collection of cells
  192. *
  193. * @return PHPExcel_Cell[]
  194. */
  195. public function getCellCollection()
  196. {
  197. // Re-order cell collection?
  198. if (!$this->_cellCollectionIsSorted) {
  199. usort($this->_cellCollection, array('PHPExcel_Cell', 'compareCells'));
  200. }
  201. return $this->_cellCollection;
  202. }
  203. /**
  204. * Get collection of row dimensions
  205. *
  206. * @return PHPExcel_Worksheet_RowDimension[]
  207. */
  208. public function getRowDimensions()
  209. {
  210. return $this->_rowDimensions;
  211. }
  212. /**
  213. * Get collection of column dimensions
  214. *
  215. * @return PHPExcel_Worksheet_ColumnDimension[]
  216. */
  217. public function getColumnDimensions()
  218. {
  219. return $this->_columnDimensions;
  220. }
  221. /**
  222. * Get collection of drawings
  223. *
  224. * @return PHPExcel_Worksheet_Drawing[]
  225. */
  226. public function getDrawingCollection()
  227. {
  228. return $this->_drawingCollection;
  229. }
  230. /**
  231. * Calculate worksheet dimension
  232. *
  233. * @return string String containing the dimension of this worksheet
  234. */
  235. public function calculateWorksheetDimension()
  236. {
  237. // Return
  238. return 'A1' . ':' . $this->getHighestColumn() . $this->getHighestRow();
  239. }
  240. /**
  241. * Get parent
  242. *
  243. * @return PHPExcel
  244. */
  245. public function getParent() {
  246. return $this->_parent;
  247. }
  248. /**
  249. * Get title
  250. *
  251. * @return string
  252. */
  253. public function getTitle()
  254. {
  255. return $this->_title;
  256. }
  257. /**
  258. * Set title
  259. *
  260. * @param string $pValue String containing the dimension of this worksheet
  261. */
  262. public function setTitle($pValue = 'Worksheet')
  263. {
  264. // Loop trough all sheets in parent PHPExcel and verify unique names
  265. $titleCount = 0;
  266. $aNames = $this->getParent()->getSheetNames();
  267. foreach ($aNames as $strName) {
  268. if ($strName == $pValue || substr($strName, 0, strrpos($strName, ' ')) == $pValue) {
  269. $titleCount++;
  270. }
  271. }
  272. // Eventually, add a number to the sheet name
  273. if ($titleCount > 0) {
  274. $this->setTitle($pValue . ' ' . $titleCount);
  275. return;
  276. }
  277. // Set title
  278. $this->_title = $pValue;
  279. }
  280. /**
  281. * Get page setup
  282. *
  283. * @return PHPExcel_Worksheet_PageSetup
  284. */
  285. public function getPageSetup()
  286. {
  287. return $this->_pageSetup;
  288. }
  289. /**
  290. * Set page setup
  291. *
  292. * @param PHPExcel_Worksheet_PageSetup $pValue
  293. */
  294. public function setPageSetup($pValue)
  295. {
  296. if ($pValue instanceof PHPExcel_Worksheet_PageSetup) {
  297. $this->_pageSetup = $pValue;
  298. } else {
  299. throw new Exception("Invalid PHPExcel_Worksheet_PageSetup object passed.");
  300. }
  301. }
  302. /**
  303. * Get page margins
  304. *
  305. * @return PHPExcel_Worksheet_PageMargins
  306. */
  307. public function getPageMargins()
  308. {
  309. return $this->_pageMargins;
  310. }
  311. /**
  312. * Set page margins
  313. *
  314. * @param PHPExcel_Worksheet_PageMargins $pValue
  315. */
  316. public function setPageMargins($pValue)
  317. {
  318. if ($pValue instanceof PHPExcel_Worksheet_PageMargins) {
  319. $this->_pageMargins = $pValue;
  320. } else {
  321. throw new Exception("Invalid PHPExcel_Worksheet_PageMargins object passed.");
  322. }
  323. }
  324. /**
  325. * Get page header/footer
  326. *
  327. * @return PHPExcel_Worksheet_HeaderFooter
  328. */
  329. public function getHeaderFooter()
  330. {
  331. return $this->_headerFooter;
  332. }
  333. /**
  334. * Set page header/footer
  335. *
  336. * @param PHPExcel_Worksheet_HeaderFooter $pValue
  337. */
  338. public function setHeaderFooter($pValue)
  339. {
  340. if ($pValue instanceof PHPExcel_Worksheet_HeaderFooter) {
  341. $this->_headerFooter = $pValue;
  342. } else {
  343. throw new Exception("Invalid PHPExcel_Worksheet_HeaderFooter object passed.");
  344. }
  345. }
  346. /**
  347. * Get Protection
  348. *
  349. * @return PHPExcel_Worksheet_Protection
  350. */
  351. public function getProtection()
  352. {
  353. return $this->_protection;
  354. }
  355. /**
  356. * Set Protection
  357. *
  358. * @param PHPExcel_Worksheet_Protection $pValue
  359. */
  360. public function setProtection($pValue)
  361. {
  362. if ($pValue instanceof PHPExcel_Worksheet_Protection) {
  363. $this->_protection = $pValue;
  364. } else {
  365. throw new Exception("Invalid PHPExcel_Worksheet_Protection object passed.");
  366. }
  367. }
  368. /**
  369. * Get highest worksheet column
  370. *
  371. * @return string Highest column name
  372. */
  373. public function getHighestColumn()
  374. {
  375. // Highest column
  376. $highestColumn = 'A';
  377. $highestColumnInteger = 1;
  378. // Loop trough cells
  379. foreach ($this->_cellCollection as $cell) {
  380. if (PHPExcel_Cell::columnIndexFromString($highestColumn) < PHPExcel_Cell::columnIndexFromString($cell->getColumn())) {
  381. $highestColumn = $cell->getColumn();
  382. }
  383. }
  384. // Return
  385. return $highestColumn;
  386. }
  387. /**
  388. * Get highest worksheet row
  389. *
  390. * @return int Highest row number
  391. */
  392. public function getHighestRow()
  393. {
  394. // Highest row
  395. $highestRow = 1;
  396. // Loop trough cells
  397. foreach ($this->_cellCollection as $cell) {
  398. if ($cell->getRow() > $highestRow) {
  399. $highestRow = $cell->getRow();
  400. }
  401. }
  402. // Return
  403. return $highestRow;
  404. }
  405. /**
  406. * Set a cell value
  407. *
  408. * @param string $pCoordinate Coordinate of the cell
  409. * @param string $pValue Value of the cell
  410. */
  411. public function setCellValue($pCoordinate = 'A1', $pValue = '')
  412. {
  413. $this->getCell($pCoordinate)->setValue($pValue);
  414. }
  415. /**
  416. * Set a cell value by using numeric cell coordinates
  417. *
  418. * @param string $pColumn Numeric column coordinate of the cell
  419. * @param string $pRow Numeric row coordinate of the cell
  420. * @param string $pValue Value of the cell
  421. */
  422. public function setCellValueByColumnAndRow($pColumn = 0, $pRow = 0, $pValue = '')
  423. {
  424. $this->setCellValue(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow, $pValue);
  425. }
  426. /**
  427. * Get cell at a specific coordinate
  428. *
  429. * @param string $pCoordinate Coordinate of the cell
  430. * @return PHPExcel_Cell Cell that was found
  431. */
  432. public function getCell($pCoordinate = 'A1')
  433. {
  434. // Coordinates
  435. $aCoordinates = PHPExcel_Cell::coordinateFromString($pCoordinate);
  436. // Cell exists?
  437. if (!isset($this->_cellCollection[ strtoupper($pCoordinate) ])) {
  438. $this->_cellCollection[ strtoupper($pCoordinate) ] = new PHPExcel_Cell($aCoordinates[0], $aCoordinates[1]);
  439. $this->_cellCollectionIsSorted = false;
  440. }
  441. return $this->_cellCollection[ strtoupper($pCoordinate) ];
  442. }
  443. /**
  444. * Get cell at a specific coordinate by using numeric cell coordinates
  445. *
  446. * @param string $pColumn Numeric column coordinate of the cell
  447. * @param string $pRow Numeric row coordinate of the cell
  448. * @return PHPExcel_Cell Cell that was found
  449. */
  450. public function getCellByColumnAndRow($pColumn = 0, $pRow = 0)
  451. {
  452. return $this->getCell(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow);
  453. }
  454. /**
  455. * Get row dimension at a specific row
  456. *
  457. * @param int $pRow Numeric index of the row
  458. * @return PHPExcel_Worksheet_RowDimension
  459. */
  460. public function getRowDimension($pRow = 0)
  461. {
  462. // Found
  463. $found = null;
  464. // Loop trough rows
  465. foreach ($this->_rowDimensions as $row) {
  466. if ($row->getRowIndex() == $pRow) {
  467. $found = $row;
  468. break;
  469. }
  470. }
  471. // Found? If not, create a new one
  472. if (is_null($found)) {
  473. $found = new PHPExcel_Worksheet_RowDimension($pRow);
  474. $this->_rowDimensions[] = $found;
  475. }
  476. // Return
  477. return $found;
  478. }
  479. /**
  480. * Get column dimension at a specific column
  481. *
  482. * @param string $pColumn String index of the column
  483. * @return PHPExcel_Worksheet_ColumnDimension
  484. */
  485. public function getColumnDimension($pColumn = 'A')
  486. {
  487. // Found
  488. $found = null;
  489. // Loop trough columns
  490. foreach ($this->_columnDimensions as $column) {
  491. if ($column->getColumnIndex() == $pColumn) {
  492. $found = $column;
  493. break;
  494. }
  495. }
  496. // Found? If not, create a new one
  497. if (is_null($found)) {
  498. $found = new PHPExcel_Worksheet_ColumnDimension($pColumn);
  499. $this->_columnDimensions[] = $found;
  500. }
  501. // Return
  502. return $found;
  503. }
  504. /**
  505. * Get column dimension at a specific column by using numeric cell coordinates
  506. *
  507. * @param string $pColumn Numeric column coordinate of the cell
  508. * @param string $pRow Numeric row coordinate of the cell
  509. * @return PHPExcel_Worksheet_ColumnDimension
  510. */
  511. public function getColumnDimensionByColumn($pColumn = 0)
  512. {
  513. return $this->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($pColumn));
  514. }
  515. /**
  516. * Get styles
  517. *
  518. * @return PHPExcel_Style[]
  519. */
  520. public function getStyles()
  521. {
  522. return $this->_styles;
  523. }
  524. /**
  525. * Get style for cell
  526. *
  527. * @param string $pCellCoordinate Cell coordinate to get style for
  528. * @return PHPExcel_Style
  529. */
  530. public function getStyle($pCellCoordinate = 'A1')
  531. {
  532. if ($pCellCoordinate != '') {
  533. // Create a cell for this coordinate.
  534. // Reason: When we have an empty cell that has style information,
  535. // it should exist for our IWriter
  536. $this->getCell($pCellCoordinate);
  537. // Check if we already have style information for this cell.
  538. // If not, create a new style.
  539. if (isset($this->_styles[$pCellCoordinate])) {
  540. return $this->_styles[$pCellCoordinate];
  541. } else {
  542. $newStyle = new PHPExcel_Style();
  543. $this->_styles[$pCellCoordinate] = $newStyle;
  544. return $newStyle;
  545. }
  546. }
  547. return null;
  548. }
  549. /**
  550. * Get style for cell by using numeric cell coordinates
  551. *
  552. * @param string $pColumn Numeric column coordinate of the cell
  553. * @param string $pRow Numeric row coordinate of the cell
  554. * @return PHPExcel_Style
  555. */
  556. public function getStyleByColumnAndRow($pColumn = 0, $pRow = 0)
  557. {
  558. return $this->getStyle(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow);
  559. }
  560. /**
  561. * Duplicate cell style to a range of cells
  562. *
  563. * Please note that this will overwrite existing cell styles for cells in range!
  564. *
  565. * @param PHPExcel_Style $pCellStyle Cell style to duplicate
  566. * @param string $pRange Range of cells (i.e. "A1:B10"), or just one cell (i.e. "A1")
  567. * @throws Exception
  568. */
  569. public function duplicateStyle($pCellStyle = null, $pRange = '')
  570. {
  571. if ($pCellStyle instanceof PHPExcel_Style) {
  572. // Is it a cell range or a single cell?
  573. $rangeA = '';
  574. $rangeB = '';
  575. if (strpos($pRange, ':') === false) {
  576. $rangeA = $pRange;
  577. $rangeB = $pRange;
  578. } else {
  579. list($rangeA, $rangeB) = explode(':', $pRange);
  580. }
  581. // Calculate range outer borders
  582. $rangeStart = PHPExcel_Cell::coordinateFromString($rangeA);
  583. $rangeEnd = PHPExcel_Cell::coordinateFromString($rangeB);
  584. // Translate column into index
  585. $rangeStart[0] = PHPExcel_Cell::columnIndexFromString($rangeStart[0]) - 1;
  586. $rangeEnd[0] = PHPExcel_Cell::columnIndexFromString($rangeEnd[0]) - 1;
  587. // Make sure we can loop upwards on rows and columns
  588. if ($rangeStart[0] > $rangeEnd[0] && $rangeStart[1] > $rangeEnd[1]) {
  589. $tmp = $rangeStart;
  590. $rangeStart = $rangeEnd;
  591. $rangeEnd = $tmp;
  592. }
  593. // Loop trough cells and apply styles
  594. for ($col = $rangeStart[0]; $col <= $rangeEnd[0]; $col++) {
  595. for ($row = $rangeStart[1]; $row <= $rangeEnd[1]; $row++) {
  596. $this->_styles[ PHPExcel_Cell::stringFromColumnIndex($col) . $row ] = $pCellStyle->duplicate();
  597. }
  598. }
  599. } else {
  600. throw new Exception("Invalid PHPExcel_Style object passed.");
  601. }
  602. }
  603. /**
  604. * Set break on a cell
  605. *
  606. * @param string $pCell Cell coordinate (e.g. A1)
  607. * @param int $pBreak Break type (type of PHPExcel_Worksheet::BREAK_*)
  608. * @throws Exception
  609. */
  610. public function setBreak($pCell = 'A1', $pBreak = PHPExcel_Worksheet::BREAK_NONE)
  611. {
  612. if ($pCell != '') {
  613. $this->_breaks[strtoupper($pCell)] = $pBreak;
  614. } else {
  615. throw new Exception('No cell coordinate specified.');
  616. }
  617. }
  618. /**
  619. * Set break on a cell by using numeric cell coordinates
  620. *
  621. * @param string $pColumn Numeric column coordinate of the cell
  622. * @param string $pRow Numeric row coordinate of the cell
  623. * @param int $pBreak Break type (type of PHPExcel_Worksheet::BREAK_*)
  624. * @throws Exception
  625. */
  626. public function setBreakByColumnAndRow($pColumn = 0, $pRow = 0, $pBreak = PHPExcel_Worksheet::BREAK_NONE)
  627. {
  628. $this->setBreak(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow, $pBreak);
  629. }
  630. /**
  631. * Get breaks
  632. *
  633. * @return array[]
  634. */
  635. public function getBreaks()
  636. {
  637. return $this->_breaks;
  638. }
  639. /**
  640. * Set merge on a cell range
  641. *
  642. * @param string $pRange Cell range (e.g. A1:E1)
  643. * @throws Exception
  644. */
  645. public function mergeCells($pRange = 'A1:A1')
  646. {
  647. if (eregi(':', $pRange)) {
  648. $this->_mergeCells[$pRange] = $pRange;
  649. } else {
  650. throw new Exception('Merge must be set on a range of cells.');
  651. }
  652. }
  653. /**
  654. * Remove merge on a cell range
  655. *
  656. * @param string $pRange Cell range (e.g. A1:E1)
  657. * @throws Exception
  658. */
  659. public function unmergeCells($pRange = 'A1:A1')
  660. {
  661. if (eregi(':', $pRange)) {
  662. if (isset($this->_mergeCells[$pRange])) {
  663. unset($this->_mergeCells[$pRange]);
  664. } else {
  665. throw new Exception('Cell range ' . $pRange . ' not known as merged.');
  666. }
  667. } else {
  668. throw new Exception('Merge can only be removed from a range of cells.');
  669. }
  670. }
  671. /**
  672. * Get merge cells
  673. *
  674. * @return array[]
  675. */
  676. public function getMergeCells()
  677. {
  678. return $this->_mergeCells;
  679. }
  680. /**
  681. * Set protection on a cell range
  682. *
  683. * @param string $pRange Cell (e.g. A1) or cell range (e.g. A1:E1)
  684. * @param string $pPassword Password to unlock the protection
  685. * @param boolean $pAlreadyHashed If the password has already been hashed, set this to true
  686. * @throws Exception
  687. */
  688. public function protectCells($pRange = 'A1', $pPassword = '', $pAlreadyHashed = false)
  689. {
  690. if (!$pAlreadyHashed) {
  691. $pPassword = PHPExcel_Shared_PasswordHasher::hashPassword($pPassword);
  692. }
  693. $this->_protectedCells[$pRange] = $pPassword;
  694. }
  695. /**
  696. * Remove protection on a cell range
  697. *
  698. * @param string $pRange Cell (e.g. A1) or cell range (e.g. A1:E1)
  699. * @throws Exception
  700. */
  701. public function unprotectCells($pRange = 'A11')
  702. {
  703. if (isset($this->_protectedCells[$pRange])) {
  704. unset($this->_protectedCells[$pRange]);
  705. } else {
  706. throw new Exception('Cell range ' . $pRange . ' not known as protected.');
  707. }
  708. }
  709. /**
  710. * Get protected cells
  711. *
  712. * @return array[]
  713. */
  714. public function getProtectedCells()
  715. {
  716. return $this->_protectedCells;
  717. }
  718. /**
  719. * Get Autofilter Range
  720. *
  721. * @return string
  722. */
  723. public function getAutoFilter()
  724. {
  725. return $this->_autoFilter;
  726. }
  727. /**
  728. * Set Autofilter Range
  729. *
  730. * @param string $pRange Cell range (i.e. A1:E10)
  731. * @throws Exception
  732. */
  733. public function setAutoFilter($pRange = '')
  734. {
  735. if (eregi(':', $pRange)) {
  736. $this->_autoFilter = $pRange;
  737. } else {
  738. throw new Exception('Autofilter must be set on a range of cells.');
  739. }
  740. }
  741. /**
  742. * Get hash code
  743. *
  744. * @return string Hash code
  745. */
  746. public function getHashCode() {
  747. return md5(
  748. $this->_title
  749. . $this->_autoFilter
  750. . $this->_protection->isProtectionEnabled()
  751. . $this->calculateWorksheetDimension()
  752. . __CLASS__
  753. );
  754. }
  755. /**
  756. * Duplicate object
  757. *
  758. * Duplicates the current object, also duplicating referenced objects (deep cloning).
  759. * Standard PHP clone does not copy referenced objects!
  760. *
  761. * @return PHPExcel_Worksheet
  762. */
  763. public function duplicate() {
  764. return unserialize(serialize($this));
  765. }
  766. }