/branches/v1.7.2/Classes/PHPExcel/Reader/Excel2007.php

# · PHP · 1634 lines · 1173 code · 220 blank · 241 comment · 453 complexity · 02162878227988aee264d4384d890676 MD5 · raw file

Large files are truncated click here to view the full file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2010 PHPExcel
  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_Reader
  23. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** PHPExcel root directory */
  28. if (!defined('PHPEXCEL_ROOT')) {
  29. /**
  30. * @ignore
  31. */
  32. define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
  33. }
  34. /** PHPExcel */
  35. require_once PHPEXCEL_ROOT . 'PHPExcel.php';
  36. /** PHPExcel_Reader_IReader */
  37. require_once PHPEXCEL_ROOT . 'PHPExcel/Reader/IReader.php';
  38. /** PHPExcel_Worksheet */
  39. require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet.php';
  40. /** PHPExcel_Cell */
  41. require_once PHPEXCEL_ROOT . 'PHPExcel/Cell.php';
  42. /** PHPExcel_Style */
  43. require_once PHPEXCEL_ROOT . 'PHPExcel/Style.php';
  44. /** PHPExcel_Style_Borders */
  45. require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Borders.php';
  46. /** PHPExcel_Style_Conditional */
  47. require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Conditional.php';
  48. /** PHPExcel_Style_Protection */
  49. require_once PHPEXCEL_ROOT . 'PHPExcel/Style/Protection.php';
  50. /** PHPExcel_Style_NumberFormat */
  51. require_once PHPEXCEL_ROOT . 'PHPExcel/Style/NumberFormat.php';
  52. /** PHPExcel_Worksheet_BaseDrawing */
  53. require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet/BaseDrawing.php';
  54. /** PHPExcel_Worksheet_Drawing */
  55. require_once PHPEXCEL_ROOT . 'PHPExcel/Worksheet/Drawing.php';
  56. /** PHPExcel_Shared_Drawing */
  57. require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/Drawing.php';
  58. /** PHPExcel_Shared_Date */
  59. require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/Date.php';
  60. /** PHPExcel_Shared_File */
  61. require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/File.php';
  62. /** PHPExcel_Shared_String */
  63. require_once PHPEXCEL_ROOT . 'PHPExcel/Shared/String.php';
  64. /** PHPExcel_ReferenceHelper */
  65. require_once PHPEXCEL_ROOT . 'PHPExcel/ReferenceHelper.php';
  66. /** PHPExcel_Reader_IReadFilter */
  67. require_once PHPEXCEL_ROOT . 'PHPExcel/Reader/IReadFilter.php';
  68. /** PHPExcel_Reader_DefaultReadFilter */
  69. require_once PHPEXCEL_ROOT . 'PHPExcel/Reader/DefaultReadFilter.php';
  70. /**
  71. * PHPExcel_Reader_Excel2007
  72. *
  73. * @category PHPExcel
  74. * @package PHPExcel_Reader
  75. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  76. */
  77. class PHPExcel_Reader_Excel2007 implements PHPExcel_Reader_IReader
  78. {
  79. /**
  80. * Read data only?
  81. *
  82. * @var boolean
  83. */
  84. private $_readDataOnly = false;
  85. /**
  86. * Restict which sheets should be loaded?
  87. *
  88. * @var array
  89. */
  90. private $_loadSheetsOnly = null;
  91. /**
  92. * PHPExcel_Reader_IReadFilter instance
  93. *
  94. * @var PHPExcel_Reader_IReadFilter
  95. */
  96. private $_readFilter = null;
  97. /**
  98. * Read data only?
  99. *
  100. * @return boolean
  101. */
  102. public function getReadDataOnly() {
  103. return $this->_readDataOnly;
  104. }
  105. /**
  106. * Set read data only
  107. *
  108. * @param boolean $pValue
  109. * @return PHPExcel_Reader_Excel2007
  110. */
  111. public function setReadDataOnly($pValue = false) {
  112. $this->_readDataOnly = $pValue;
  113. return $this;
  114. }
  115. /**
  116. * Get which sheets to load
  117. *
  118. * @return mixed
  119. */
  120. public function getLoadSheetsOnly()
  121. {
  122. return $this->_loadSheetsOnly;
  123. }
  124. /**
  125. * Set which sheets to load
  126. *
  127. * @param mixed $value
  128. * @return PHPExcel_Reader_Excel2007
  129. */
  130. public function setLoadSheetsOnly($value = null)
  131. {
  132. $this->_loadSheetsOnly = is_array($value) ?
  133. $value : array($value);
  134. return $this;
  135. }
  136. /**
  137. * Set all sheets to load
  138. *
  139. * @return PHPExcel_Reader_Excel2007
  140. */
  141. public function setLoadAllSheets()
  142. {
  143. $this->_loadSheetsOnly = null;
  144. return $this;
  145. }
  146. /**
  147. * Read filter
  148. *
  149. * @return PHPExcel_Reader_IReadFilter
  150. */
  151. public function getReadFilter() {
  152. return $this->_readFilter;
  153. }
  154. /**
  155. * Set read filter
  156. *
  157. * @param PHPExcel_Reader_IReadFilter $pValue
  158. * @return PHPExcel_Reader_Excel2007
  159. */
  160. public function setReadFilter(PHPExcel_Reader_IReadFilter $pValue) {
  161. $this->_readFilter = $pValue;
  162. return $this;
  163. }
  164. /**
  165. * Create a new PHPExcel_Reader_Excel2007 instance
  166. */
  167. public function __construct() {
  168. $this->_readFilter = new PHPExcel_Reader_DefaultReadFilter();
  169. }
  170. /**
  171. * Can the current PHPExcel_Reader_IReader read the file?
  172. *
  173. * @param string $pFileName
  174. * @return boolean
  175. */
  176. public function canRead($pFilename)
  177. {
  178. // Check if file exists
  179. if (!file_exists($pFilename)) {
  180. throw new Exception("Could not open " . $pFilename . " for reading! File does not exist.");
  181. }
  182. // Load file
  183. $zip = new ZipArchive;
  184. if ($zip->open($pFilename) === true) {
  185. // check if it is an OOXML archive
  186. $rels = simplexml_load_string($this->_getFromZipArchive($zip, "_rels/.rels"));
  187. $zip->close();
  188. return ($rels !== false);
  189. }
  190. return false;
  191. }
  192. private function _castToBool($c) {
  193. // echo 'Initial Cast to Boolean<br />';
  194. $value = isset($c->v) ? (string) $c->v : null;
  195. if ($value == '0') {
  196. $value = false;
  197. } elseif ($value == '1') {
  198. $value = true;
  199. } else {
  200. $value = (bool)$c->v;
  201. }
  202. return $value;
  203. } // function _castToBool()
  204. private function _castToError($c) {
  205. // echo 'Initial Cast to Error<br />';
  206. return isset($c->v) ? (string) $c->v : null;;
  207. } // function _castToError()
  208. private function _castToString($c) {
  209. // echo 'Initial Cast to String<br />';
  210. return isset($c->v) ? (string) $c->v : null;;
  211. } // function _castToString()
  212. private function _castToFormula($c,$r,&$cellDataType,&$value,&$calculatedValue,&$sharedFormulas,$castBaseType) {
  213. // echo '<font color="darkgreen">Formula</font><br />';
  214. // echo '$c->f is '.$c->f.'<br />';
  215. $cellDataType = 'f';
  216. $value = "={$c->f}";
  217. $calculatedValue = $this->$castBaseType($c);
  218. // Shared formula?
  219. if (isset($c->f['t']) && strtolower((string)$c->f['t']) == 'shared') {
  220. // echo '<font color="darkgreen">SHARED FORMULA</font><br />';
  221. $instance = (string)$c->f['si'];
  222. // echo 'Instance ID = '.$instance.'<br />';
  223. //
  224. // echo 'Shared Formula Array:<pre>';
  225. // print_r($sharedFormulas);
  226. // echo '</pre>';
  227. if (!isset($sharedFormulas[(string)$c->f['si']])) {
  228. // echo '<font color="darkgreen">SETTING NEW SHARED FORMULA</font><br />';
  229. // echo 'Master is '.$r.'<br />';
  230. // echo 'Formula is '.$value.'<br />';
  231. $sharedFormulas[$instance] = array( 'master' => $r,
  232. 'formula' => $value
  233. );
  234. // echo 'New Shared Formula Array:<pre>';
  235. // print_r($sharedFormulas);
  236. // echo '</pre>';
  237. } else {
  238. // echo '<font color="darkgreen">GETTING SHARED FORMULA</font><br />';
  239. // echo 'Master is '.$sharedFormulas[$instance]['master'].'<br />';
  240. // echo 'Formula is '.$sharedFormulas[$instance]['formula'].'<br />';
  241. $master = PHPExcel_Cell::coordinateFromString($sharedFormulas[$instance]['master']);
  242. $current = PHPExcel_Cell::coordinateFromString($r);
  243. $difference = array(0, 0);
  244. $difference[0] = PHPExcel_Cell::columnIndexFromString($current[0]) - PHPExcel_Cell::columnIndexFromString($master[0]);
  245. $difference[1] = $current[1] - $master[1];
  246. $helper = PHPExcel_ReferenceHelper::getInstance();
  247. $value = $helper->updateFormulaReferences( $sharedFormulas[$instance]['formula'],
  248. 'A1',
  249. $difference[0],
  250. $difference[1]
  251. );
  252. // echo 'Adjusted Formula is '.$value.'<br />';
  253. }
  254. }
  255. }
  256. public function _getFromZipArchive(ZipArchive $archive, $fileName = '')
  257. {
  258. // Root-relative paths
  259. if (strpos($fileName, '//') !== false)
  260. {
  261. $fileName = substr($fileName, strpos($fileName, '//') + 1);
  262. }
  263. $fileName = PHPExcel_Shared_File::realpath($fileName);
  264. // Apache POI fixes
  265. $contents = $archive->getFromName($fileName);
  266. if ($contents === false)
  267. {
  268. $contents = $archive->getFromName(substr($fileName, 1));
  269. }
  270. /*
  271. if (strpos($contents, '<?xml') !== false && strpos($contents, '<?xml') !== 0)
  272. {
  273. $contents = substr($contents, strpos($contents, '<?xml'));
  274. }
  275. var_dump($fileName);
  276. var_dump($contents);
  277. */
  278. return $contents;
  279. }
  280. /**
  281. * Loads PHPExcel from file
  282. *
  283. * @param string $pFilename
  284. * @throws Exception
  285. */
  286. public function load($pFilename)
  287. {
  288. // Check if file exists
  289. if (!file_exists($pFilename)) {
  290. throw new Exception("Could not open " . $pFilename . " for reading! File does not exist.");
  291. }
  292. // Initialisations
  293. $excel = new PHPExcel;
  294. $excel->removeSheetByIndex(0);
  295. if (!$this->_readDataOnly) {
  296. $excel->removeCellStyleXfByIndex(0); // remove the default style
  297. $excel->removeCellXfByIndex(0); // remove the default style
  298. }
  299. $zip = new ZipArchive;
  300. $zip->open($pFilename);
  301. $rels = simplexml_load_string($this->_getFromZipArchive($zip, "_rels/.rels")); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  302. foreach ($rels->Relationship as $rel) {
  303. switch ($rel["Type"]) {
  304. case "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties":
  305. $xmlCore = simplexml_load_string($this->_getFromZipArchive($zip, "{$rel['Target']}"));
  306. if ($xmlCore) {
  307. $xmlCore->registerXPathNamespace("dc", "http://purl.org/dc/elements/1.1/");
  308. $xmlCore->registerXPathNamespace("dcterms", "http://purl.org/dc/terms/");
  309. $xmlCore->registerXPathNamespace("cp", "http://schemas.openxmlformats.org/package/2006/metadata/core-properties");
  310. $docProps = $excel->getProperties();
  311. $docProps->setCreator((string) self::array_item($xmlCore->xpath("dc:creator")));
  312. $docProps->setLastModifiedBy((string) self::array_item($xmlCore->xpath("cp:lastModifiedBy")));
  313. $docProps->setCreated(strtotime(self::array_item($xmlCore->xpath("dcterms:created")))); //! respect xsi:type
  314. $docProps->setModified(strtotime(self::array_item($xmlCore->xpath("dcterms:modified")))); //! respect xsi:type
  315. $docProps->setTitle((string) self::array_item($xmlCore->xpath("dc:title")));
  316. $docProps->setDescription((string) self::array_item($xmlCore->xpath("dc:description")));
  317. $docProps->setSubject((string) self::array_item($xmlCore->xpath("dc:subject")));
  318. $docProps->setKeywords((string) self::array_item($xmlCore->xpath("cp:keywords")));
  319. $docProps->setCategory((string) self::array_item($xmlCore->xpath("cp:category")));
  320. }
  321. break;
  322. case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument":
  323. $dir = dirname($rel["Target"]);
  324. $relsWorkbook = simplexml_load_string($this->_getFromZipArchive($zip, "$dir/_rels/" . basename($rel["Target"]) . ".rels")); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  325. $relsWorkbook->registerXPathNamespace("rel", "http://schemas.openxmlformats.org/package/2006/relationships");
  326. $sharedStrings = array();
  327. $xpath = self::array_item($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings']"));
  328. $xmlStrings = simplexml_load_string($this->_getFromZipArchive($zip, "$dir/$xpath[Target]")); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
  329. if (isset($xmlStrings) && isset($xmlStrings->si)) {
  330. foreach ($xmlStrings->si as $val) {
  331. if (isset($val->t)) {
  332. $sharedStrings[] = PHPExcel_Shared_String::ControlCharacterOOXML2PHP( (string) $val->t );
  333. } elseif (isset($val->r)) {
  334. $sharedStrings[] = $this->_parseRichText($val);
  335. }
  336. }
  337. }
  338. $worksheets = array();
  339. foreach ($relsWorkbook->Relationship as $ele) {
  340. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet") {
  341. $worksheets[(string) $ele["Id"]] = $ele["Target"];
  342. }
  343. }
  344. $styles = array();
  345. $cellStyles = array();
  346. $xpath = self::array_item($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles']"));
  347. $xmlStyles = simplexml_load_string($this->_getFromZipArchive($zip, "$dir/$xpath[Target]")); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
  348. $numFmts = null;
  349. if ($xmlStyles && $xmlStyles->numFmts[0]) {
  350. $numFmts = $xmlStyles->numFmts[0];
  351. }
  352. if (isset($numFmts) && !is_null($numFmts)) {
  353. $numFmts->registerXPathNamespace("sml", "http://schemas.openxmlformats.org/spreadsheetml/2006/main");
  354. }
  355. if (!$this->_readDataOnly && $xmlStyles) {
  356. foreach ($xmlStyles->cellXfs->xf as $xf) {
  357. $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL;
  358. if ($xf["numFmtId"]) {
  359. if (isset($numFmts)) {
  360. $tmpNumFmt = self::array_item($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]"));
  361. if (isset($tmpNumFmt["formatCode"])) {
  362. $numFmt = (string) $tmpNumFmt["formatCode"];
  363. }
  364. }
  365. if ((int)$xf["numFmtId"] < 164) {
  366. $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]);
  367. }
  368. }
  369. //$numFmt = str_replace('mm', 'i', $numFmt);
  370. //$numFmt = str_replace('h', 'H', $numFmt);
  371. $style = (object) array(
  372. "numFmt" => $numFmt,
  373. "font" => $xmlStyles->fonts->font[intval($xf["fontId"])],
  374. "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])],
  375. "border" => $xmlStyles->borders->border[intval($xf["borderId"])],
  376. "alignment" => $xf->alignment,
  377. "protection" => $xf->protection,
  378. );
  379. $styles[] = $style;
  380. // add style to cellXf collection
  381. $objStyle = new PHPExcel_Style;
  382. $this->_readStyle($objStyle, $style);
  383. $excel->addCellXf($objStyle);
  384. }
  385. foreach ($xmlStyles->cellStyleXfs->xf as $xf) {
  386. $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL;
  387. if ($numFmts && $xf["numFmtId"]) {
  388. $tmpNumFmt = self::array_item($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]"));
  389. if (isset($tmpNumFmt["formatCode"])) {
  390. $numFmt = (string) $tmpNumFmt["formatCode"];
  391. } else if ((int)$xf["numFmtId"] < 165) {
  392. $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]);
  393. }
  394. }
  395. $cellStyle = (object) array(
  396. "numFmt" => $numFmt,
  397. "font" => $xmlStyles->fonts->font[intval($xf["fontId"])],
  398. "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])],
  399. "border" => $xmlStyles->borders->border[intval($xf["borderId"])],
  400. "alignment" => $xf->alignment,
  401. "protection" => $xf->protection,
  402. );
  403. $cellStyles[] = $cellStyle;
  404. // add style to cellStyleXf collection
  405. $objStyle = new PHPExcel_Style;
  406. $this->_readStyle($objStyle, $cellStyle);
  407. $excel->addCellStyleXf($objStyle);
  408. }
  409. }
  410. $dxfs = array();
  411. if (!$this->_readDataOnly && $xmlStyles) {
  412. if ($xmlStyles->dxfs) {
  413. foreach ($xmlStyles->dxfs->dxf as $dxf) {
  414. $style = new PHPExcel_Style;
  415. $this->_readStyle($style, $dxf);
  416. $dxfs[] = $style;
  417. }
  418. }
  419. if ($xmlStyles->cellStyles)
  420. {
  421. foreach ($xmlStyles->cellStyles->cellStyle as $cellStyle) {
  422. if (intval($cellStyle['builtinId']) == 0) {
  423. if (isset($cellStyles[intval($cellStyle['xfId'])])) {
  424. // Set default style
  425. $style = new PHPExcel_Style;
  426. $this->_readStyle($style, $cellStyles[intval($cellStyle['xfId'])]);
  427. // normal style, currently not using it for anything
  428. }
  429. }
  430. }
  431. }
  432. }
  433. $xmlWorkbook = simplexml_load_string($this->_getFromZipArchive($zip, "{$rel['Target']}")); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
  434. // Set base date
  435. if ($xmlWorkbook->workbookPr) {
  436. PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900);
  437. if (isset($xmlWorkbook->workbookPr['date1904'])) {
  438. $date1904 = (string)$xmlWorkbook->workbookPr['date1904'];
  439. if ($date1904 == "true" || $date1904 == "1") {
  440. PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_MAC_1904);
  441. }
  442. }
  443. }
  444. $sheetId = 0; // keep track of new sheet id in final workbook
  445. $oldSheetId = -1; // keep track of old sheet id in final workbook
  446. $countSkippedSheets = 0; // keep track of number of skipped sheets
  447. $mapSheetId = array(); // mapping of sheet ids from old to new
  448. if ($xmlWorkbook->sheets)
  449. {
  450. foreach ($xmlWorkbook->sheets->sheet as $eleSheet) {
  451. ++$oldSheetId;
  452. // Check if sheet should be skipped
  453. if (isset($this->_loadSheetsOnly) && !in_array((string) $eleSheet["name"], $this->_loadSheetsOnly)) {
  454. ++$countSkippedSheets;
  455. $mapSheetId[$oldSheetId] = null;
  456. continue;
  457. }
  458. // Map old sheet id in original workbook to new sheet id.
  459. // They will differ if loadSheetsOnly() is being used
  460. $mapSheetId[$oldSheetId] = $oldSheetId - $countSkippedSheets;
  461. // Load sheet
  462. $docSheet = $excel->createSheet();
  463. $docSheet->setTitle((string) $eleSheet["name"]);
  464. $fileWorksheet = $worksheets[(string) self::array_item($eleSheet->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")];
  465. $xmlSheet = simplexml_load_string($this->_getFromZipArchive($zip, "$dir/$fileWorksheet")); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
  466. $sharedFormulas = array();
  467. if (isset($eleSheet["state"]) && (string) $eleSheet["state"] != '') {
  468. $docSheet->setSheetState( (string) $eleSheet["state"] );
  469. }
  470. if (isset($xmlSheet->sheetViews) && isset($xmlSheet->sheetViews->sheetView)) {
  471. if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
  472. $docSheet->getSheetView()->setZoomScale( intval($xmlSheet->sheetViews->sheetView['zoomScale']) );
  473. }
  474. if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
  475. $docSheet->getSheetView()->setZoomScaleNormal( intval($xmlSheet->sheetViews->sheetView['zoomScaleNormal']) );
  476. }
  477. if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) {
  478. $docSheet->setShowGridLines((string)$xmlSheet->sheetViews->sheetView['showGridLines'] ? true : false);
  479. }
  480. if (isset($xmlSheet->sheetViews->sheetView['rightToLeft'])) {
  481. $docSheet->setRightToLeft((string)$xmlSheet->sheetViews->sheetView['rightToLeft'] ? true : false);
  482. }
  483. if (isset($xmlSheet->sheetViews->sheetView->pane)) {
  484. if (isset($xmlSheet->sheetViews->sheetView->pane['topLeftCell'])) {
  485. $docSheet->freezePane( (string)$xmlSheet->sheetViews->sheetView->pane['topLeftCell'] );
  486. } else {
  487. $xSplit = 0;
  488. $ySplit = 0;
  489. if (isset($xmlSheet->sheetViews->sheetView->pane['xSplit'])) {
  490. $xSplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['xSplit']);
  491. }
  492. if (isset($xmlSheet->sheetViews->sheetView->pane['ySplit'])) {
  493. $ySplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['ySplit']);
  494. }
  495. $docSheet->freezePaneByColumnAndRow($xSplit, $ySplit);
  496. }
  497. }
  498. if (isset($xmlSheet->sheetViews->sheetView->selection)) {
  499. if (isset($xmlSheet->sheetViews->sheetView->selection['sqref'])) {
  500. $sqref = (string)$xmlSheet->sheetViews->sheetView->selection['sqref'];
  501. $sqref = explode(' ', $sqref);
  502. $sqref = $sqref[0];
  503. $docSheet->setSelectedCells($sqref);
  504. }
  505. }
  506. }
  507. if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->tabColor)) {
  508. if (isset($xmlSheet->sheetPr->tabColor['rgb'])) {
  509. $docSheet->getTabColor()->setARGB( (string)$xmlSheet->sheetPr->tabColor['rgb'] );
  510. }
  511. }
  512. if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->outlinePr)) {
  513. if (isset($xmlSheet->sheetPr->outlinePr['summaryRight']) && $xmlSheet->sheetPr->outlinePr['summaryRight'] == false) {
  514. $docSheet->setShowSummaryRight(false);
  515. } else {
  516. $docSheet->setShowSummaryRight(true);
  517. }
  518. if (isset($xmlSheet->sheetPr->outlinePr['summaryBelow']) && $xmlSheet->sheetPr->outlinePr['summaryBelow'] == false) {
  519. $docSheet->setShowSummaryBelow(false);
  520. } else {
  521. $docSheet->setShowSummaryBelow(true);
  522. }
  523. }
  524. if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->pageSetUpPr)) {
  525. if (isset($xmlSheet->sheetPr->pageSetUpPr['fitToPage']) && $xmlSheet->sheetPr->pageSetUpPr['fitToPage'] == false) {
  526. $docSheet->getPageSetup()->setFitToPage(false);
  527. } else {
  528. $docSheet->getPageSetup()->setFitToPage(true);
  529. }
  530. }
  531. if (isset($xmlSheet->sheetFormatPr)) {
  532. if (isset($xmlSheet->sheetFormatPr['customHeight']) && ((string)$xmlSheet->sheetFormatPr['customHeight'] == '1' || strtolower((string)$xmlSheet->sheetFormatPr['customHeight']) == 'true') && isset($xmlSheet->sheetFormatPr['defaultRowHeight'])) {
  533. $docSheet->getDefaultRowDimension()->setRowHeight( (float)$xmlSheet->sheetFormatPr['defaultRowHeight'] );
  534. }
  535. if (isset($xmlSheet->sheetFormatPr['defaultColWidth'])) {
  536. $docSheet->getDefaultColumnDimension()->setWidth( (float)$xmlSheet->sheetFormatPr['defaultColWidth'] );
  537. }
  538. }
  539. if (isset($xmlSheet->cols) && !$this->_readDataOnly) {
  540. foreach ($xmlSheet->cols->col as $col) {
  541. for ($i = intval($col["min"]) - 1; $i < intval($col["max"]); ++$i) {
  542. if ($col["style"]) {
  543. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setXfIndex(intval($col["style"]));
  544. }
  545. if ($col["bestFit"]) {
  546. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setAutoSize(true);
  547. }
  548. if ($col["hidden"]) {
  549. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setVisible(false);
  550. }
  551. if ($col["collapsed"]) {
  552. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setCollapsed(true);
  553. }
  554. if ($col["outlineLevel"] > 0) {
  555. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setOutlineLevel(intval($col["outlineLevel"]));
  556. }
  557. $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setWidth(floatval($col["width"]));
  558. if (intval($col["max"]) == 16384) {
  559. break;
  560. }
  561. }
  562. }
  563. }
  564. if (isset($xmlSheet->printOptions) && !$this->_readDataOnly) {
  565. if ($xmlSheet->printOptions['gridLinesSet'] == 'true' && $xmlSheet->printOptions['gridLinesSet'] == '1') {
  566. $docSheet->setShowGridlines(true);
  567. }
  568. if ($xmlSheet->printOptions['gridLines'] == 'true' || $xmlSheet->printOptions['gridLines'] == '1') {
  569. $docSheet->setPrintGridlines(true);
  570. }
  571. if ($xmlSheet->printOptions['horizontalCentered']) {
  572. $docSheet->getPageSetup()->setHorizontalCentered(true);
  573. }
  574. if ($xmlSheet->printOptions['verticalCentered']) {
  575. $docSheet->getPageSetup()->setVerticalCentered(true);
  576. }
  577. }
  578. if ($xmlSheet && $xmlSheet->sheetData && $xmlSheet->sheetData->row) {
  579. foreach ($xmlSheet->sheetData->row as $row) {
  580. if ($row["ht"] && !$this->_readDataOnly) {
  581. $docSheet->getRowDimension(intval($row["r"]))->setRowHeight(floatval($row["ht"]));
  582. }
  583. if ($row["hidden"] && !$this->_readDataOnly) {
  584. $docSheet->getRowDimension(intval($row["r"]))->setVisible(false);
  585. }
  586. if ($row["collapsed"]) {
  587. $docSheet->getRowDimension(intval($row["r"]))->setCollapsed(true);
  588. }
  589. if ($row["outlineLevel"] > 0) {
  590. $docSheet->getRowDimension(intval($row["r"]))->setOutlineLevel(intval($row["outlineLevel"]));
  591. }
  592. if ($row["s"]) {
  593. $docSheet->getRowDimension(intval($row["r"]))->setXfIndex(intval($row["s"]));
  594. }
  595. foreach ($row->c as $c) {
  596. $r = (string) $c["r"];
  597. $cellDataType = (string) $c["t"];
  598. $value = null;
  599. $calculatedValue = null;
  600. // Read cell?
  601. if (!is_null($this->getReadFilter())) {
  602. $coordinates = PHPExcel_Cell::coordinateFromString($r);
  603. if (!$this->getReadFilter()->readCell($coordinates[0], $coordinates[1], $docSheet->getTitle())) {
  604. continue;
  605. }
  606. }
  607. // echo '<b>Reading cell '.$coordinates[0].$coordinates[1].'</b><br />';
  608. // print_r($c);
  609. // echo '<br />';
  610. // echo 'Cell Data Type is '.$cellDataType.': ';
  611. //
  612. // Read cell!
  613. switch ($cellDataType) {
  614. case "s":
  615. // echo 'String<br />';
  616. if ((string)$c->v != '') {
  617. $value = $sharedStrings[intval($c->v)];
  618. if ($value instanceof PHPExcel_RichText) {
  619. $value = clone $value;
  620. }
  621. } else {
  622. $value = '';
  623. }
  624. break;
  625. case "b":
  626. // echo 'Boolean<br />';
  627. if (!isset($c->f)) {
  628. $value = $this->_castToBool($c);
  629. } else {
  630. // Formula
  631. $this->_castToFormula($c,$r,$cellDataType,$value,$calculatedValue,$sharedFormulas,'_castToBool');
  632. // echo '$calculatedValue = '.$calculatedValue.'<br />';
  633. }
  634. break;
  635. case "inlineStr":
  636. // echo 'Inline String<br />';
  637. $value = $this->_parseRichText($c->is);
  638. break;
  639. case "e":
  640. // echo 'Error<br />';
  641. if (!isset($c->f)) {
  642. $value = $this->_castToError($c);
  643. } else {
  644. // Formula
  645. $this->_castToFormula($c,$r,$cellDataType,$value,$calculatedValue,$sharedFormulas,'_castToError');
  646. // echo '$calculatedValue = '.$calculatedValue.'<br />';
  647. }
  648. break;
  649. default:
  650. // echo 'Default<br />';
  651. if (!isset($c->f)) {
  652. // echo 'Not a Formula<br />';
  653. $value = $this->_castToString($c);
  654. } else {
  655. // echo 'Treat as Formula<br />';
  656. // Formula
  657. $this->_castToFormula($c,$r,$cellDataType,$value,$calculatedValue,$sharedFormulas,'_castToString');
  658. // echo '$calculatedValue = '.$calculatedValue.'<br />';
  659. }
  660. break;
  661. }
  662. // echo 'Value is '.$value.'<br />';
  663. // Check for numeric values
  664. if (is_numeric($value) && $cellDataType != 's') {
  665. if ($value == (int)$value) $value = (int)$value;
  666. elseif ($value == (float)$value) $value = (float)$value;
  667. elseif ($value == (double)$value) $value = (double)$value;
  668. }
  669. // Rich text?
  670. if ($value instanceof PHPExcel_RichText && $this->_readDataOnly) {
  671. $value = $value->getPlainText();
  672. }
  673. // Assign value
  674. if ($cellDataType != '') {
  675. $docSheet->setCellValueExplicit($r, $value, $cellDataType);
  676. } else {
  677. $docSheet->setCellValue($r, $value);
  678. }
  679. if (!is_null($calculatedValue)) {
  680. $docSheet->getCell($r)->setCalculatedValue($calculatedValue);
  681. }
  682. // Style information?
  683. if ($c["s"] && !$this->_readDataOnly) {
  684. // no style index means 0, it seems
  685. $docSheet->getCell($r)->setXfIndex(isset($styles[intval($c["s"])]) ?
  686. intval($c["s"]) : 0);
  687. }
  688. // Set rich text parent
  689. if ($value instanceof PHPExcel_RichText && !$this->_readDataOnly) {
  690. $value->setParent($docSheet->getCell($r));
  691. }
  692. }
  693. }
  694. }
  695. $conditionals = array();
  696. if (!$this->_readDataOnly && $xmlSheet && $xmlSheet->conditionalFormatting) {
  697. foreach ($xmlSheet->conditionalFormatting as $conditional) {
  698. foreach ($conditional->cfRule as $cfRule) {
  699. if (
  700. (
  701. (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_NONE ||
  702. (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CELLIS ||
  703. (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT
  704. ) && isset($dxfs[intval($cfRule["dxfId"])])
  705. ) {
  706. $conditionals[(string) $conditional["sqref"]][intval($cfRule["priority"])] = $cfRule;
  707. }
  708. }
  709. }
  710. foreach ($conditionals as $ref => $cfRules) {
  711. ksort($cfRules);
  712. $conditionalStyles = array();
  713. foreach ($cfRules as $cfRule) {
  714. $objConditional = new PHPExcel_Style_Conditional();
  715. $objConditional->setConditionType((string)$cfRule["type"]);
  716. $objConditional->setOperatorType((string)$cfRule["operator"]);
  717. if ((string)$cfRule["text"] != '') {
  718. $objConditional->setText((string)$cfRule["text"]);
  719. }
  720. if (count($cfRule->formula) > 1) {
  721. foreach ($cfRule->formula as $formula) {
  722. $objConditional->addCondition((string)$formula);
  723. }
  724. } else {
  725. $objConditional->addCondition((string)$cfRule->formula);
  726. }
  727. $objConditional->setStyle(clone $dxfs[intval($cfRule["dxfId"])]);
  728. $conditionalStyles[] = $objConditional;
  729. }
  730. // Extract all cell references in $ref
  731. $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($ref);
  732. foreach ($aReferences as $reference) {
  733. $docSheet->getStyle($reference)->setConditionalStyles($conditionalStyles);
  734. }
  735. }
  736. }
  737. $aKeys = array("sheet", "objects", "scenarios", "formatCells", "formatColumns", "formatRows", "insertColumns", "insertRows", "insertHyperlinks", "deleteColumns", "deleteRows", "selectLockedCells", "sort", "autoFilter", "pivotTables", "selectUnlockedCells");
  738. if (!$this->_readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) {
  739. foreach ($aKeys as $key) {
  740. $method = "set" . ucfirst($key);
  741. $docSheet->getProtection()->$method($xmlSheet->sheetProtection[$key] == "true");
  742. }
  743. }
  744. if (!$this->_readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) {
  745. $docSheet->getProtection()->setPassword((string) $xmlSheet->sheetProtection["password"], true);
  746. if ($xmlSheet->protectedRanges->protectedRange) {
  747. foreach ($xmlSheet->protectedRanges->protectedRange as $protectedRange) {
  748. $docSheet->protectCells((string) $protectedRange["sqref"], (string) $protectedRange["password"], true);
  749. }
  750. }
  751. }
  752. if ($xmlSheet && $xmlSheet->autoFilter && !$this->_readDataOnly) {
  753. $docSheet->setAutoFilter((string) $xmlSheet->autoFilter["ref"]);
  754. }
  755. if ($xmlSheet && $xmlSheet->mergeCells && $xmlSheet->mergeCells->mergeCell && !$this->_readDataOnly) {
  756. foreach ($xmlSheet->mergeCells->mergeCell as $mergeCell) {
  757. $docSheet->mergeCells((string) $mergeCell["ref"]);
  758. }
  759. }
  760. if ($xmlSheet && $xmlSheet->pageMargins && !$this->_readDataOnly) {
  761. $docPageMargins = $docSheet->getPageMargins();
  762. $docPageMargins->setLeft(floatval($xmlSheet->pageMargins["left"]));
  763. $docPageMargins->setRight(floatval($xmlSheet->pageMargins["right"]));
  764. $docPageMargins->setTop(floatval($xmlSheet->pageMargins["top"]));
  765. $docPageMargins->setBottom(floatval($xmlSheet->pageMargins["bottom"]));
  766. $docPageMargins->setHeader(floatval($xmlSheet->pageMargins["header"]));
  767. $docPageMargins->setFooter(floatval($xmlSheet->pageMargins["footer"]));
  768. }
  769. if ($xmlSheet && $xmlSheet->pageSetup && !$this->_readDataOnly) {
  770. $docPageSetup = $docSheet->getPageSetup();
  771. if (isset($xmlSheet->pageSetup["orientation"])) {
  772. $docPageSetup->setOrientation((string) $xmlSheet->pageSetup["orientation"]);
  773. }
  774. if (isset($xmlSheet->pageSetup["paperSize"])) {
  775. $docPageSetup->setPaperSize(intval($xmlSheet->pageSetup["paperSize"]));
  776. }
  777. if (isset($xmlSheet->pageSetup["scale"])) {
  778. $docPageSetup->setScale(intval($xmlSheet->pageSetup["scale"]), false);
  779. }
  780. if (isset($xmlSheet->pageSetup["fitToHeight"]) && intval($xmlSheet->pageSetup["fitToHeight"]) >= 0) {
  781. $docPageSetup->setFitToHeight(intval($xmlSheet->pageSetup["fitToHeight"]), false);
  782. }
  783. if (isset($xmlSheet->pageSetup["fitToWidth"]) && intval($xmlSheet->pageSetup["fitToWidth"]) >= 0) {
  784. $docPageSetup->setFitToWidth(intval($xmlSheet->pageSetup["fitToWidth"]), false);
  785. }
  786. if (isset($xmlSheet->pageSetup["firstPageNumber"]) && isset($xmlSheet->pageSetup["useFirstPageNumber"]) &&
  787. ((string)$xmlSheet->pageSetup["useFirstPageNumber"] == 'true' || (string)$xmlSheet->pageSetup["useFirstPageNumber"] == '1')) {
  788. $docPageSetup->setFirstPageNumber(intval($xmlSheet->pageSetup["firstPageNumber"]));
  789. }
  790. }
  791. if ($xmlSheet && $xmlSheet->headerFooter && !$this->_readDataOnly) {
  792. $docHeaderFooter = $docSheet->getHeaderFooter();
  793. if (isset($xmlSheet->headerFooter["differentOddEven"]) &&
  794. ((string)$xmlSheet->headerFooter["differentOddEven"] == 'true' || (string)$xmlSheet->headerFooter["differentOddEven"] == '1')) {
  795. $docHeaderFooter->setDifferentOddEven(true);
  796. } else {
  797. $docHeaderFooter->setDifferentOddEven(false);
  798. }
  799. if (isset($xmlSheet->headerFooter["differentFirst"]) &&
  800. ((string)$xmlSheet->headerFooter["differentFirst"] == 'true' || (string)$xmlSheet->headerFooter["differentFirst"] == '1')) {
  801. $docHeaderFooter->setDifferentFirst(true);
  802. } else {
  803. $docHeaderFooter->setDifferentFirst(false);
  804. }
  805. if (isset($xmlSheet->headerFooter["scaleWithDoc"]) &&
  806. ((string)$xmlSheet->headerFooter["scaleWithDoc"] == 'false' || (string)$xmlSheet->headerFooter["scaleWithDoc"] == '0')) {
  807. $docHeaderFooter->setScaleWithDocument(false);
  808. } else {
  809. $docHeaderFooter->setScaleWithDocument(true);
  810. }
  811. if (isset($xmlSheet->headerFooter["alignWithMargins"]) &&
  812. ((string)$xmlSheet->headerFooter["alignWithMargins"] == 'false' || (string)$xmlSheet->headerFooter["alignWithMargins"] == '0')) {
  813. $docHeaderFooter->setAlignWithMargins(false);
  814. } else {
  815. $docHeaderFooter->setAlignWithMargins(true);
  816. }
  817. $docHeaderFooter->setOddHeader((string) $xmlSheet->headerFooter->oddHeader);
  818. $docHeaderFooter->setOddFooter((string) $xmlSheet->headerFooter->oddFooter);
  819. $docHeaderFooter->setEvenHeader((string) $xmlSheet->headerFooter->evenHeader);
  820. $docHeaderFooter->setEvenFooter((string) $xmlSheet->headerFooter->evenFooter);
  821. $docHeaderFooter->setFirstHeader((string) $xmlSheet->headerFooter->firstHeader);
  822. $docHeaderFooter->setFirstFooter((string) $xmlSheet->headerFooter->firstFooter);
  823. }
  824. if ($xmlSheet && $xmlSheet->rowBreaks && $xmlSheet->rowBreaks->brk && !$this->_readDataOnly) {
  825. foreach ($xmlSheet->rowBreaks->brk as $brk) {
  826. if ($brk["man"]) {
  827. $docSheet->setBreak("A$brk[id]", PHPExcel_Worksheet::BREAK_ROW);
  828. }
  829. }
  830. }
  831. if ($xmlSheet && $xmlSheet->colBreaks && $xmlSheet->colBreaks->brk && !$this->_readDataOnly) {
  832. foreach ($xmlSheet->colBreaks->brk as $brk) {
  833. if ($brk["man"]) {
  834. $docSheet->setBreak(PHPExcel_Cell::stringFromColumnIndex($brk["id"]) . "1", PHPExcel_Worksheet::BREAK_COLUMN);
  835. }
  836. }
  837. }
  838. if ($xmlSheet && $xmlSheet->dataValidations && !$this->_readDataOnly) {
  839. foreach ($xmlSheet->dataValidations->dataValidation as $dataValidation) {
  840. // Uppercase coordinate
  841. $range = strtoupper($dataValidation["sqref"]);
  842. // Extract all cell references in $range
  843. $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($range);
  844. foreach ($aReferences as $reference) {
  845. // Create validation
  846. $docValidation = $docSheet->getCell($reference)->getDataValidation();
  847. $docValidation->setType((string) $dataValidation["type"]);
  848. $docValidation->setErrorStyle((string) $dataValidation["errorStyle"]);
  849. $docValidation->setOperator((string) $dataValidation["operator"]);
  850. $docValidation->setAllowBlank($dataValidation["allowBlank"] != 0);
  851. $docValidation->setShowDropDown($dataValidation["showDropDown"] == 0);
  852. $docValidation->setShowInputMessage($dataValidation["showInputMessage"] != 0);
  853. $docValidation->setShowErrorMessage($dataValidation["showErrorMessage"] != 0);
  854. $docValidation->setErrorTitle((string) $dataValidation["errorTitle"]);
  855. $docValidation->setError((string) $dataValidation["error"]);
  856. $docValidation->setPromptTitle((string) $dataValidation["promptTitle"]);
  857. $docValidation->setPrompt((string) $dataValidation["prompt"]);
  858. $docValidation->setFormula1((string) $dataValidation->formula1);
  859. $docValidation->setFormula2((string) $dataValidation->formula2);
  860. }
  861. }
  862. }
  863. // Add hyperlinks
  864. $hyperlinks = array();
  865. if (!$this->_readDataOnly) {
  866. // Locate hyperlink relations
  867. if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) {
  868. $relsWorksheet = simplexml_load_string($this->_getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels") ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  869. foreach ($relsWorksheet->Relationship as $ele) {
  870. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink") {
  871. $hyperlinks[(string)$ele["Id"]] = (string)$ele["Target"];
  872. }
  873. }
  874. }
  875. // Loop through hyperlinks
  876. if ($xmlSheet && $xmlSheet->hyperlinks) {
  877. foreach ($xmlSheet->hyperlinks->hyperlink as $hyperlink) {
  878. // Link url
  879. $linkRel = $hyperlink->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships');
  880. foreach (PHPExcel_Cell::extractAllCellReferencesInRange($hyperlink['ref']) as $cellReference) {
  881. if (isset($linkRel['id'])) {
  882. $docSheet->getCell( $cellReference )->getHyperlink()->setUrl( $hyperlinks[ (string)$linkRel['id'] ] );
  883. }
  884. if (isset($hyperlink['location'])) {
  885. $docSheet->getCell( $cellReference )->getHyperlink()->setUrl( 'sheet://' . (string)$hyperlink['location'] );
  886. }
  887. // Tooltip
  888. if (isset($hyperlink['tooltip'])) {
  889. $docSheet->getCell( $cellReference )->getHyperlink()->setTooltip( (string)$hyperlink['tooltip'] );
  890. }
  891. }
  892. }
  893. }
  894. }
  895. // Add comments
  896. $comments = array();
  897. $vmlComments = array();
  898. if (!$this->_readDataOnly) {
  899. // Locate comment relations
  900. if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) {
  901. $relsWorksheet = simplexml_load_string($this->_getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels") ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  902. foreach ($relsWorksheet->Relationship as $ele) {
  903. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments") {
  904. $comments[(string)$ele["Id"]] = (string)$ele["Target"];
  905. }
  906. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") {
  907. $vmlComments[(string)$ele["Id"]] = (string)$ele["Target"];
  908. }
  909. }
  910. }
  911. // Loop through comments
  912. foreach ($comments as $relName => $relPath) {
  913. // Load comments file
  914. $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath);
  915. $commentsFile = simplexml_load_string($this->_getFromZipArchive($zip, $relPath) );
  916. // Utility variables
  917. $authors = array();
  918. // Loop through authors
  919. foreach ($commentsFile->authors->author as $author) {
  920. $authors[] = (string)$author;
  921. }
  922. // Loop through contents
  923. foreach ($commentsFile->commentList->comment as $comment) {
  924. $docSheet->getComment( (string)$comment['ref'] )->setAuthor( $authors[(string)$comment['authorId']] );
  925. $docSheet->getComment( (string)$comment['ref'] )->setText( $this->_parseRichText($comment->text) );
  926. }
  927. }
  928. // Loop through VML comments
  929. foreach ($vmlComments as $relName => $relPath) {
  930. // Load VML comments file
  931. $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath);
  932. $vmlCommentsFile = simplexml_load_string( $this->_getFromZipArchive($zip, $relPath) );
  933. $vmlCommentsFile->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
  934. $shapes = $vmlCommentsFile->xpath('//v:shape');
  935. foreach ($shapes as $shape) {
  936. $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
  937. if (isset($shape['style'])) {
  938. $style = (string)$shape['style'];
  939. $fillColor = strtoupper( substr( (string)$shape['fillcolor'], 1 ) );
  940. $column = null;
  941. $row = null;
  942. $clientData = $shape->xpath('.//x:ClientData');
  943. if (is_array($clientData)) {
  944. $clientData = $clientData[0];
  945. if ( isset($clientData['ObjectType']) && (string)$clientData['ObjectType'] == 'Note' ) {
  946. $temp = $clientData->xpath('.//x:Row');
  947. if (is_array($temp)) $row = $temp[0];
  948. $temp = $clientData->xpath('.//x:Column');
  949. if (is_array($temp)) $column = $temp[0];
  950. }
  951. }
  952. if (!is_null($column) && !is_null($row)) {
  953. // Set comment properties
  954. $comment = $docSheet->getCommentByColumnAndRow($column, $row + 1);
  955. $comment->getFillColor()->setRGB( $fillColor );
  956. // Parse style
  957. $styleArray = explode(';', str_replace(' ', '', $style));
  958. foreach ($styleArray as $stylePair) {
  959. $stylePair = explode(':', $stylePair);
  960. if ($stylePair[0] == 'margin-left') $comment->setMarginLeft($stylePair[1]);
  961. if ($stylePair[0] == 'margin-top') $comment->setMarginTop($stylePair[1]);
  962. if ($stylePair[0] == 'width') $comment->setWidth($stylePair[1]);
  963. if ($stylePair[0] == 'height') $comment->setHeight($stylePair[1]);
  964. if ($stylePair[0] == 'visibility') $comment->setVisible( $stylePair[1] == 'visible' );
  965. }
  966. }
  967. }
  968. }
  969. }
  970. // Header/footer images
  971. if ($xmlSheet && $xmlSheet->legacyDrawingHF && !$this->_readDataOnly) {
  972. if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) {
  973. $relsWorksheet = simplexml_load_string($this->_getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels") ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  974. $vmlRelationship = '';
  975. foreach ($relsWorksheet->Relationship as $ele) {
  976. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") {
  977. $vmlRelationship = self::dir_add("$dir/$fileWorksheet", $ele["Target"]);
  978. }
  979. }
  980. if ($vmlRelationship != '') {
  981. // Fetch linked images
  982. $relsVML = simplexml_load_string($this->_getFromZipArchive($zip, dirname($vmlRelationship) . '/_rels/' . basename($vmlRelationship) . '.rels' )); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  983. $drawings = array();
  984. foreach ($relsVML->Relationship as $ele) {
  985. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") {
  986. $drawings[(string) $ele["Id"]] = self::dir_add($vmlRelationship, $ele["Target"]);
  987. }
  988. }
  989. // Fetch VML document
  990. $vmlDrawing = simplexml_load_string($this->_getFromZipArchive($zip, $vmlRelationship));
  991. $vmlDrawing->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
  992. $hfImages = array();
  993. $shapes = $vmlDrawing->xpath('//v:shape');
  994. foreach ($shapes as $shape) {
  995. $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
  996. $imageData = $shape->xpath('//v:imagedata');
  997. $imageData = $imageData[0];
  998. $imageData = $imageData->attributes('urn:schemas-microsoft-com:office:office');
  999. $style = self::toCSSArray( (string)$shape['style'] );
  1000. $hfImages[ (string)$shape['id'] ] = new PHPExcel_Worksheet_HeaderFooterDrawing();
  1001. if (isset($imageData['title'])) {
  1002. $hfImages[ (string)$shape['id'] ]->setName( (string)$imageData['title'] );
  1003. }
  1004. $hfImages[ (string)$shape['id'] ]->setPath("zip://$pFilename#" . $drawings[(string)$imageData['relid']], false);
  1005. $hfImages[ (string)$shape['id'] ]->setResizeProportional(false);
  1006. $hfImages[ (string)$shape['id'] ]->setWidth($style['width']);
  1007. $hfImages[ (string)$shape['id'] ]->setHeight($style['height']);
  1008. $hfImages[ (string)$shape['id'] ]->setOffsetX($style['margin-left']);
  1009. $hfImages[ (string)$shape['id'] ]->setOffsetY($style['margin-top']);
  1010. $hfImages[ (string)$shape['id'] ]->setResizeProportional(true);
  1011. }
  1012. $docSheet->getHeaderFooter()->setImages($hfImages);
  1013. }
  1014. }
  1015. }
  1016. }
  1017. // TODO: Make sure drawings and graph are loaded differently!
  1018. if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) {
  1019. $relsWorksheet = simplexml_load_string($this->_getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels") ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  1020. $drawings = array();
  1021. foreach ($relsWorksheet->Relationship as $ele) {
  1022. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing") {
  1023. $drawings[(string) $ele["Id"]] = self::dir_add("$dir/$fileWorksheet", $ele["Target"]);
  1024. }
  1025. }
  1026. if ($xmlSheet->drawing && !$this->_readDataOnly) {
  1027. foreach ($xmlSheet->drawing as $drawing) {
  1028. $fileDrawing = $drawings[(string) self::array_item($drawing->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")];
  1029. $relsDrawing = simplexml_load_string($this->_getFromZipArchive($zip, dirname($fileDrawing) . "/_rels/" . basename($fileDrawing) . ".rels") ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
  1030. $images = array();
  1031. if ($relsDrawing && $relsDrawing->Relationship) {
  1032. foreach ($relsDrawing->Relationship as $ele) {
  1033. if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") {
  1034. $images[(string) $ele["Id"]] = self::dir_add($fileDrawing, $ele["Target"]);
  1035. }
  1036. }
  1037. }
  1038. $xmlDrawing = simplexml_load_string($this->_getFromZipArchive($zip, $fileDrawing))->children("http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing");
  1039. if ($xmlDrawing->oneCellAnchor) {
  1040. foreach ($xmlDrawing->oneCellAnchor as $oneCellAnchor) {
  1041. if ($oneCellAnchor->pic->blipFill) {
  1042. $blip = $oneCellAnchor->pic->blipFill->children("http://schemas.openxmlformats.org/drawingml/2006/main")->blip;
  1043. $xfrm = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->xfrm;
  1044. $outerShdw = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->effectLst->outerShdw;
  1045. $objDrawing = new PHPExcel_Worksheet_Drawing;
  1046. $objDrawing->setName((string) self::array_item($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "name"));
  1047. $objDrawing->setDescription((string) self::array_item($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "descr"));
  1048. $objDrawing->setPath("zip://$pFilename#" . $images[(stri