| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** PHPExcel root directory */ | 
					
						
							|  |  |  | if (!defined('PHPEXCEL_ROOT')) { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * @ignore | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../'); | 
					
						
							|  |  |  |     require(PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php'); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |  * PHPExcel_Reader_Excel2007 | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-05-02 22:50:37 +00:00
										 |  |  |  * Copyright (c) 2006 - 2015 PHPExcel | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category   PHPExcel | 
					
						
							|  |  |  |  * @package    PHPExcel_Reader | 
					
						
							| 
									
										
										
										
											2015-05-02 22:50:37 +00:00
										 |  |  |  * @copyright  Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel) | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |  * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  |  * @version    ##VERSION##, ##DATE##
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-11-05 21:23:38 +00:00
										 |  |  | class PHPExcel_Reader_Excel2007 extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * PHPExcel_ReferenceHelper instance | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var PHPExcel_ReferenceHelper | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private $referenceHelper = null; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * PHPExcel_Reader_Excel2007_Theme instance | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var PHPExcel_Reader_Excel2007_Theme | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static $theme = null; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a new PHPExcel_Reader_Excel2007 instance | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     public function __construct() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $this->readFilter = new PHPExcel_Reader_DefaultReadFilter(); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |         $this->referenceHelper = PHPExcel_ReferenceHelper::getInstance(); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Can the current PHPExcel_Reader_IReader read the file? | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param     string         $pFilename | 
					
						
							|  |  |  |      * @return     boolean | 
					
						
							|  |  |  |      * @throws PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function canRead($pFilename) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Check if file exists
 | 
					
						
							|  |  |  |         if (!file_exists($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-17 17:33:56 +00:00
										 |  |  |         $zipClass = PHPExcel_Settings::getZipClass(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         // Check if zip class exists
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  | //        if (!class_exists($zipClass, false)) {
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //            throw new PHPExcel_Reader_Exception($zipClass . " library is not enabled");
 | 
					
						
							|  |  |  | //        }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xl = false; | 
					
						
							|  |  |  |         // Load file
 | 
					
						
							|  |  |  |         $zip = new $zipClass; | 
					
						
							|  |  |  |         if ($zip->open($pFilename) === true) { | 
					
						
							|  |  |  |             // check if it is an OOXML archive
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |             $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             if ($rels !== false) { | 
					
						
							|  |  |  |                 foreach ($rels->Relationship as $rel) { | 
					
						
							|  |  |  |                     switch ($rel["Type"]) { | 
					
						
							|  |  |  |                         case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": | 
					
						
							|  |  |  |                             if (basename($rel["Target"]) == 'workbook.xml') { | 
					
						
							|  |  |  |                                 $xl = true; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             $zip->close(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $xl; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Reads names of the worksheets from a file, without parsing the whole file to a PHPExcel object | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param     string         $pFilename | 
					
						
							|  |  |  |      * @throws     PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function listWorksheetNames($pFilename) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Check if file exists
 | 
					
						
							|  |  |  |         if (!file_exists($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $worksheetNames = array(); | 
					
						
							| 
									
										
										
										
											2013-01-12 12:52:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-17 17:33:56 +00:00
										 |  |  |         $zipClass = PHPExcel_Settings::getZipClass(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $zip = new $zipClass; | 
					
						
							|  |  |  |         $zip->open($pFilename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //    The files we're looking at here are small enough that simpleXML is more efficient than XMLReader
 | 
					
						
							|  |  |  |         $rels = simplexml_load_string( | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |             $this->securityScan($this->getFromZipArchive($zip, "_rels/.rels"), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()) | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         ); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							|  |  |  |         foreach ($rels->Relationship as $rel) { | 
					
						
							|  |  |  |             switch ($rel["Type"]) { | 
					
						
							|  |  |  |                 case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": | 
					
						
							|  |  |  |                     $xmlWorkbook = simplexml_load_string( | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         $this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}"), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()) | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     );  //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if ($xmlWorkbook->sheets) { | 
					
						
							|  |  |  |                         foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { | 
					
						
							|  |  |  |                             // Check if sheet should be skipped
 | 
					
						
							|  |  |  |                             $worksheetNames[] = (string) $eleSheet["name"]; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $zip->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $worksheetNames; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param   string     $pFilename | 
					
						
							|  |  |  |      * @throws   PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function listWorksheetInfo($pFilename) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Check if file exists
 | 
					
						
							|  |  |  |         if (!file_exists($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $worksheetInfo = array(); | 
					
						
							| 
									
										
										
										
											2014-02-21 08:23:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-17 17:33:56 +00:00
										 |  |  |         $zipClass = PHPExcel_Settings::getZipClass(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $zip = new $zipClass; | 
					
						
							|  |  |  |         $zip->open($pFilename); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         foreach ($rels->Relationship as $rel) { | 
					
						
							|  |  |  |             if ($rel["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument") { | 
					
						
							|  |  |  |                 $dir = dirname($rel["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                 $relsWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel["Target"]) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 $relsWorkbook->registerXPathNamespace("rel", "http://schemas.openxmlformats.org/package/2006/relationships"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $worksheets = array(); | 
					
						
							|  |  |  |                 foreach ($relsWorkbook->Relationship as $ele) { | 
					
						
							|  |  |  |                     if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet") { | 
					
						
							|  |  |  |                         $worksheets[(string) $ele["Id"]] = $ele["Target"]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                 $xmlWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 if ($xmlWorkbook->sheets) { | 
					
						
							|  |  |  |                     $dir = dirname($rel["Target"]); | 
					
						
							|  |  |  |                     foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { | 
					
						
							|  |  |  |                         $tmpInfo = array( | 
					
						
							|  |  |  |                             'worksheetName' => (string) $eleSheet["name"], | 
					
						
							|  |  |  |                             'lastColumnLetter' => 'A', | 
					
						
							|  |  |  |                             'lastColumnIndex' => 0, | 
					
						
							|  |  |  |                             'totalRows' => 0, | 
					
						
							|  |  |  |                             'totalColumns' => 0, | 
					
						
							|  |  |  |                         ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         $xml = new XMLReader(); | 
					
						
							|  |  |  |                         $res = $xml->xml($this->securityScanFile('zip://'.PHPExcel_Shared_File::realpath($pFilename).'#'."$dir/$fileWorksheet"), null, PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                         $xml->setParserProperty(2, true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         $currCells = 0; | 
					
						
							|  |  |  |                         while ($xml->read()) { | 
					
						
							|  |  |  |                             if ($xml->name == 'row' && $xml->nodeType == XMLReader::ELEMENT) { | 
					
						
							|  |  |  |                                 $row = $xml->getAttribute('r'); | 
					
						
							|  |  |  |                                 $tmpInfo['totalRows'] = $row; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                 $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $currCells = 0; | 
					
						
							|  |  |  |                             } elseif ($xml->name == 'c' && $xml->nodeType == XMLReader::ELEMENT) { | 
					
						
							|  |  |  |                                 $currCells++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                         $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $xml->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1; | 
					
						
							|  |  |  |                         $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         $worksheetInfo[] = $tmpInfo; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $zip->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $worksheetInfo; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function castToBoolean($c) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //        echo 'Initial Cast to Boolean', PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         $value = isset($c->v) ? (string) $c->v : null; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if ($value == '0') { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |             return false; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } elseif ($value == '1') { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             return (bool)$c->v; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $value; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function castToError($c) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //        echo 'Initial Cast to Error', PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         return isset($c->v) ? (string) $c->v : null; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function castToString($c) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //        echo 'Initial Cast to String, PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         return isset($c->v) ? (string) $c->v : null; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private function castToFormula($c, $r, &$cellDataType, &$value, &$calculatedValue, &$sharedFormulas, $castBaseType) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //        echo 'Formula', PHP_EOL;
 | 
					
						
							|  |  |  | //        echo '$c->f is ', $c->f, PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         $cellDataType       = 'f'; | 
					
						
							|  |  |  |         $value              = "={$c->f}"; | 
					
						
							|  |  |  |         $calculatedValue    = self::$castBaseType($c); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Shared formula?
 | 
					
						
							|  |  |  |         if (isset($c->f['t']) && strtolower((string)$c->f['t']) == 'shared') { | 
					
						
							|  |  |  | //            echo 'SHARED FORMULA', PHP_EOL;
 | 
					
						
							|  |  |  |             $instance = (string)$c->f['si']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //            echo 'Instance ID = ', $instance, PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //            echo 'Shared Formula Array:', PHP_EOL;
 | 
					
						
							|  |  |  | //            print_r($sharedFormulas);
 | 
					
						
							|  |  |  |             if (!isset($sharedFormulas[(string)$c->f['si']])) { | 
					
						
							|  |  |  | //                echo 'SETTING NEW SHARED FORMULA', PHP_EOL;
 | 
					
						
							|  |  |  | //                echo 'Master is ', $r, PHP_EOL;
 | 
					
						
							|  |  |  | //                echo 'Formula is ', $value, PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                 $sharedFormulas[$instance] = array('master' => $r, 'formula' => $value); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                echo 'New Shared Formula Array:', PHP_EOL;
 | 
					
						
							|  |  |  | //                print_r($sharedFormulas);
 | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  | //                echo 'GETTING SHARED FORMULA', PHP_EOL;
 | 
					
						
							|  |  |  | //                echo 'Master is ', $sharedFormulas[$instance]['master'], PHP_EOL;
 | 
					
						
							|  |  |  | //                echo 'Formula is ', $sharedFormulas[$instance]['formula'], PHP_EOL;
 | 
					
						
							|  |  |  |                 $master = PHPExcel_Cell::coordinateFromString($sharedFormulas[$instance]['master']); | 
					
						
							|  |  |  |                 $current = PHPExcel_Cell::coordinateFromString($r); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 $difference = array(0, 0); | 
					
						
							|  |  |  |                 $difference[0] = PHPExcel_Cell::columnIndexFromString($current[0]) - PHPExcel_Cell::columnIndexFromString($master[0]); | 
					
						
							|  |  |  |                 $difference[1] = $current[1] - $master[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                 $value = $this->referenceHelper->updateFormulaReferences($sharedFormulas[$instance]['formula'], 'A1', $difference[0], $difference[1]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                echo 'Adjusted Formula is ', $value, PHP_EOL;
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |     private function getFromZipArchive($archive, $fileName = '') | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Root-relative paths
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         if (strpos($fileName, '//') !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $fileName = substr($fileName, strpos($fileName, '//') + 1); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         $fileName = PHPExcel_Shared_File::realpath($fileName); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Apache POI fixes
 | 
					
						
							|  |  |  |         $contents = $archive->getFromName($fileName); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |         if ($contents === false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $contents = $archive->getFromName(substr($fileName, 1)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $contents; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Loads PHPExcel from file | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param     string         $pFilename | 
					
						
							| 
									
										
										
										
											2014-06-12 08:20:16 +00:00
										 |  |  |      * @return  PHPExcel | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |      * @throws     PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function load($pFilename) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Check if file exists
 | 
					
						
							|  |  |  |         if (!file_exists($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Initialisations
 | 
					
						
							|  |  |  |         $excel = new PHPExcel; | 
					
						
							|  |  |  |         $excel->removeSheetByIndex(0); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         if (!$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $excel->removeCellStyleXfByIndex(0); // remove the default style
 | 
					
						
							|  |  |  |             $excel->removeCellXfByIndex(0); // remove the default style
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-11-17 17:33:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $zipClass = PHPExcel_Settings::getZipClass(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $zip = new $zipClass; | 
					
						
							|  |  |  |         $zip->open($pFilename); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //    Read the theme first, because we need the colour scheme when reading the styles
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $wbRels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "xl/_rels/workbook.xml.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         foreach ($wbRels->Relationship as $rel) { | 
					
						
							|  |  |  |             switch ($rel["Type"]) { | 
					
						
							|  |  |  |                 case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme": | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     $themeOrderArray = array('lt1', 'dk1', 'lt2', 'dk2'); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $themeOrderAdditional = count($themeOrderArray); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xmlTheme = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "xl/{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if (is_object($xmlTheme)) { | 
					
						
							|  |  |  |                         $xmlThemeName = $xmlTheme->attributes(); | 
					
						
							|  |  |  |                         $xmlTheme = $xmlTheme->children("http://schemas.openxmlformats.org/drawingml/2006/main"); | 
					
						
							|  |  |  |                         $themeName = (string)$xmlThemeName['name']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         $colourScheme = $xmlTheme->themeElements->clrScheme->attributes(); | 
					
						
							|  |  |  |                         $colourSchemeName = (string)$colourScheme['name']; | 
					
						
							|  |  |  |                         $colourScheme = $xmlTheme->themeElements->clrScheme->children("http://schemas.openxmlformats.org/drawingml/2006/main"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         $themeColours = array(); | 
					
						
							|  |  |  |                         foreach ($colourScheme as $k => $xmlColour) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                             $themePos = array_search($k, $themeOrderArray); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if ($themePos === false) { | 
					
						
							|  |  |  |                                 $themePos = $themeOrderAdditional++; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             if (isset($xmlColour->sysClr)) { | 
					
						
							|  |  |  |                                 $xmlColourData = $xmlColour->sysClr->attributes(); | 
					
						
							|  |  |  |                                 $themeColours[$themePos] = $xmlColourData['lastClr']; | 
					
						
							|  |  |  |                             } elseif (isset($xmlColour->srgbClr)) { | 
					
						
							|  |  |  |                                 $xmlColourData = $xmlColour->srgbClr->attributes(); | 
					
						
							|  |  |  |                                 $themeColours[$themePos] = $xmlColourData['val']; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         self::$theme = new PHPExcel_Reader_Excel2007_Theme($themeName, $colourSchemeName, $themeColours); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $rels = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "_rels/.rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         foreach ($rels->Relationship as $rel) { | 
					
						
							|  |  |  |             switch ($rel["Type"]) { | 
					
						
							|  |  |  |                 case "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties": | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if (is_object($xmlCore)) { | 
					
						
							|  |  |  |                         $xmlCore->registerXPathNamespace("dc", "http://purl.org/dc/elements/1.1/"); | 
					
						
							|  |  |  |                         $xmlCore->registerXPathNamespace("dcterms", "http://purl.org/dc/terms/"); | 
					
						
							|  |  |  |                         $xmlCore->registerXPathNamespace("cp", "http://schemas.openxmlformats.org/package/2006/metadata/core-properties"); | 
					
						
							|  |  |  |                         $docProps = $excel->getProperties(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         $docProps->setCreator((string) self::getArrayItem($xmlCore->xpath("dc:creator"))); | 
					
						
							|  |  |  |                         $docProps->setLastModifiedBy((string) self::getArrayItem($xmlCore->xpath("cp:lastModifiedBy"))); | 
					
						
							|  |  |  |                         $docProps->setCreated(strtotime(self::getArrayItem($xmlCore->xpath("dcterms:created")))); //! respect xsi:type
 | 
					
						
							|  |  |  |                         $docProps->setModified(strtotime(self::getArrayItem($xmlCore->xpath("dcterms:modified")))); //! respect xsi:type
 | 
					
						
							|  |  |  |                         $docProps->setTitle((string) self::getArrayItem($xmlCore->xpath("dc:title"))); | 
					
						
							|  |  |  |                         $docProps->setDescription((string) self::getArrayItem($xmlCore->xpath("dc:description"))); | 
					
						
							|  |  |  |                         $docProps->setSubject((string) self::getArrayItem($xmlCore->xpath("dc:subject"))); | 
					
						
							|  |  |  |                         $docProps->setKeywords((string) self::getArrayItem($xmlCore->xpath("cp:keywords"))); | 
					
						
							|  |  |  |                         $docProps->setCategory((string) self::getArrayItem($xmlCore->xpath("cp:category"))); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties": | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if (is_object($xmlCore)) { | 
					
						
							|  |  |  |                         $docProps = $excel->getProperties(); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         if (isset($xmlCore->Company)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             $docProps->setCompany((string) $xmlCore->Company); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($xmlCore->Manager)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             $docProps->setManager((string) $xmlCore->Manager); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties": | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xmlCore = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if (is_object($xmlCore)) { | 
					
						
							|  |  |  |                         $docProps = $excel->getProperties(); | 
					
						
							|  |  |  |                         foreach ($xmlCore as $xmlProperty) { | 
					
						
							|  |  |  |                             $cellDataOfficeAttributes = $xmlProperty->attributes(); | 
					
						
							|  |  |  |                             if (isset($cellDataOfficeAttributes['name'])) { | 
					
						
							|  |  |  |                                 $propertyName = (string) $cellDataOfficeAttributes['name']; | 
					
						
							|  |  |  |                                 $cellDataOfficeChildren = $xmlProperty->children('http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'); | 
					
						
							|  |  |  |                                 $attributeType = $cellDataOfficeChildren->getName(); | 
					
						
							|  |  |  |                                 $attributeValue = (string) $cellDataOfficeChildren->{$attributeType}; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                 $attributeValue = PHPExcel_DocumentProperties::convertProperty($attributeValue, $attributeType); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $attributeType = PHPExcel_DocumentProperties::convertPropertyType($attributeType); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                 $docProps->setCustomProperty($propertyName, $attributeValue, $attributeType); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 //Ribbon
 | 
					
						
							|  |  |  |                 case "http://schemas.microsoft.com/office/2006/relationships/ui/extensibility": | 
					
						
							|  |  |  |                     $customUI = $rel['Target']; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                     if (!is_null($customUI)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $this->readRibbon($excel, $customUI, $zip); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument": | 
					
						
							|  |  |  |                     $dir = dirname($rel["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $relsWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel["Target"]) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $relsWorkbook->registerXPathNamespace("rel", "http://schemas.openxmlformats.org/package/2006/relationships"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $sharedStrings = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings']")); | 
					
						
							|  |  |  |                     $xmlStrings = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if (isset($xmlStrings) && isset($xmlStrings->si)) { | 
					
						
							|  |  |  |                         foreach ($xmlStrings->si as $val) { | 
					
						
							|  |  |  |                             if (isset($val->t)) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 $sharedStrings[] = PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $val->t); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } elseif (isset($val->r)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 $sharedStrings[] = $this->parseRichText($val); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $worksheets = array(); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     $macros = $customUI = null; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     foreach ($relsWorkbook->Relationship as $ele) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                         switch ($ele['Type']) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                             case "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet": | 
					
						
							|  |  |  |                                 $worksheets[(string) $ele["Id"]] = $ele["Target"]; | 
					
						
							|  |  |  |                                 break; | 
					
						
							|  |  |  |                             // a vbaProject ? (: some macros)
 | 
					
						
							|  |  |  |                             case "http://schemas.microsoft.com/office/2006/relationships/vbaProject": | 
					
						
							|  |  |  |                                 $macros = $ele["Target"]; | 
					
						
							|  |  |  |                                 break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                     if (!is_null($macros)) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         $macrosCode = $this->getFromZipArchive($zip, 'xl/vbaProject.bin');//vbaProject.bin always in 'xl' dir and always named vbaProject.bin
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                         if ($macrosCode !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             $excel->setMacrosCode($macrosCode); | 
					
						
							|  |  |  |                             $excel->setHasMacros(true); | 
					
						
							|  |  |  |                             //short-circuit : not reading vbaProject.bin.rel to get Signature =>allways vbaProjectSignature.bin in 'xl' dir
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             $Certificate = $this->getFromZipArchive($zip, 'xl/vbaProjectSignature.bin'); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                             if ($Certificate !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $excel->setMacrosCertificate($Certificate); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     $styles     = array(); | 
					
						
							|  |  |  |                     $cellStyles = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles']")); | 
					
						
							|  |  |  |                     $xmlStyles = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $numFmts = null; | 
					
						
							|  |  |  |                     if ($xmlStyles && $xmlStyles->numFmts[0]) { | 
					
						
							|  |  |  |                         $numFmts = $xmlStyles->numFmts[0]; | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     if (isset($numFmts) && ($numFmts !== null)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $numFmts->registerXPathNamespace("sml", "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     if (!$this->readDataOnly && $xmlStyles) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         foreach ($xmlStyles->cellXfs->xf as $xf) { | 
					
						
							|  |  |  |                             $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if ($xf["numFmtId"]) { | 
					
						
							|  |  |  |                                 if (isset($numFmts)) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                     if (isset($tmpNumFmt["formatCode"])) { | 
					
						
							|  |  |  |                                         $numFmt = (string) $tmpNumFmt["formatCode"]; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 if ((int)$xf["numFmtId"] < 164) { | 
					
						
							|  |  |  |                                     $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2013-06-25 22:13:13 +00:00
										 |  |  |                             $quotePrefix = false; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if (isset($xf["quotePrefix"])) { | 
					
						
							| 
									
										
										
										
											2013-06-25 22:13:13 +00:00
										 |  |  |                                 $quotePrefix = (boolean) $xf["quotePrefix"]; | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             //$numFmt = str_replace('mm', 'i', $numFmt);
 | 
					
						
							|  |  |  |                             //$numFmt = str_replace('h', 'H', $numFmt);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             $style = (object) array( | 
					
						
							|  |  |  |                                 "numFmt" => $numFmt, | 
					
						
							|  |  |  |                                 "font" => $xmlStyles->fonts->font[intval($xf["fontId"])], | 
					
						
							|  |  |  |                                 "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])], | 
					
						
							|  |  |  |                                 "border" => $xmlStyles->borders->border[intval($xf["borderId"])], | 
					
						
							|  |  |  |                                 "alignment" => $xf->alignment, | 
					
						
							|  |  |  |                                 "protection" => $xf->protection, | 
					
						
							|  |  |  |                                 "quotePrefix" => $quotePrefix, | 
					
						
							|  |  |  |                             ); | 
					
						
							|  |  |  |                             $styles[] = $style; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // add style to cellXf collection
 | 
					
						
							|  |  |  |                             $objStyle = new PHPExcel_Style; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                             self::readStyle($objStyle, $style); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             $excel->addCellXf($objStyle); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         foreach ($xmlStyles->cellStyleXfs->xf as $xf) { | 
					
						
							|  |  |  |                             $numFmt = PHPExcel_Style_NumberFormat::FORMAT_GENERAL; | 
					
						
							|  |  |  |                             if ($numFmts && $xf["numFmtId"]) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                 $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]")); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 if (isset($tmpNumFmt["formatCode"])) { | 
					
						
							|  |  |  |                                     $numFmt = (string) $tmpNumFmt["formatCode"]; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 } elseif ((int)$xf["numFmtId"] < 165) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     $numFmt = PHPExcel_Style_NumberFormat::builtInFormatCode((int)$xf["numFmtId"]); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             $cellStyle = (object) array( | 
					
						
							|  |  |  |                                 "numFmt" => $numFmt, | 
					
						
							|  |  |  |                                 "font" => $xmlStyles->fonts->font[intval($xf["fontId"])], | 
					
						
							|  |  |  |                                 "fill" => $xmlStyles->fills->fill[intval($xf["fillId"])], | 
					
						
							|  |  |  |                                 "border" => $xmlStyles->borders->border[intval($xf["borderId"])], | 
					
						
							|  |  |  |                                 "alignment" => $xf->alignment, | 
					
						
							|  |  |  |                                 "protection" => $xf->protection, | 
					
						
							|  |  |  |                                 "quotePrefix" => $quotePrefix, | 
					
						
							|  |  |  |                             ); | 
					
						
							|  |  |  |                             $cellStyles[] = $cellStyle; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // add style to cellStyleXf collection
 | 
					
						
							|  |  |  |                             $objStyle = new PHPExcel_Style; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                             self::readStyle($objStyle, $cellStyle); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             $excel->addCellStyleXf($objStyle); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $dxfs = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     if (!$this->readDataOnly && $xmlStyles) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         //    Conditional Styles
 | 
					
						
							|  |  |  |                         if ($xmlStyles->dxfs) { | 
					
						
							|  |  |  |                             foreach ($xmlStyles->dxfs->dxf as $dxf) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 $style = new PHPExcel_Style(false, true); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 self::readStyle($style, $dxf); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $dxfs[] = $style; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         //    Cell Styles
 | 
					
						
							|  |  |  |                         if ($xmlStyles->cellStyles) { | 
					
						
							|  |  |  |                             foreach ($xmlStyles->cellStyles->cellStyle as $cellStyle) { | 
					
						
							|  |  |  |                                 if (intval($cellStyle['builtinId']) == 0) { | 
					
						
							|  |  |  |                                     if (isset($cellStyles[intval($cellStyle['xfId'])])) { | 
					
						
							|  |  |  |                                         // Set default style
 | 
					
						
							|  |  |  |                                         $style = new PHPExcel_Style; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         self::readStyle($style, $cellStyles[intval($cellStyle['xfId'])]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                         // normal style, currently not using it for anything
 | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     $xmlWorkbook = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "{$rel['Target']}")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     // Set base date
 | 
					
						
							|  |  |  |                     if ($xmlWorkbook->workbookPr) { | 
					
						
							|  |  |  |                         PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_WINDOWS_1900); | 
					
						
							|  |  |  |                         if (isset($xmlWorkbook->workbookPr['date1904'])) { | 
					
						
							|  |  |  |                             if (self::boolean((string) $xmlWorkbook->workbookPr['date1904'])) { | 
					
						
							|  |  |  |                                 PHPExcel_Shared_Date::setExcelCalendar(PHPExcel_Shared_Date::CALENDAR_MAC_1904); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $sheetId = 0; // keep track of new sheet id in final workbook
 | 
					
						
							|  |  |  |                     $oldSheetId = -1; // keep track of old sheet id in final workbook
 | 
					
						
							|  |  |  |                     $countSkippedSheets = 0; // keep track of number of skipped sheets
 | 
					
						
							|  |  |  |                     $mapSheetId = array(); // mapping of sheet ids from old to new
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $charts = $chartDetails = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if ($xmlWorkbook->sheets) { | 
					
						
							|  |  |  |                         foreach ($xmlWorkbook->sheets->sheet as $eleSheet) { | 
					
						
							|  |  |  |                             ++$oldSheetId; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Check if sheet should be skipped
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (isset($this->loadSheetsOnly) && !in_array((string) $eleSheet["name"], $this->loadSheetsOnly)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 ++$countSkippedSheets; | 
					
						
							|  |  |  |                                 $mapSheetId[$oldSheetId] = null; | 
					
						
							|  |  |  |                                 continue; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Map old sheet id in original workbook to new sheet id.
 | 
					
						
							|  |  |  |                             // They will differ if loadSheetsOnly() is being used
 | 
					
						
							|  |  |  |                             $mapSheetId[$oldSheetId] = $oldSheetId - $countSkippedSheets; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Load sheet
 | 
					
						
							|  |  |  |                             $docSheet = $excel->createSheet(); | 
					
						
							|  |  |  |                             //    Use false for $updateFormulaCellReferences to prevent adjustment of worksheet
 | 
					
						
							|  |  |  |                             //        references in formula cells... during the load, all formulae should be correct,
 | 
					
						
							|  |  |  |                             //        and we're simply bringing the worksheet name in line with the formula, not the
 | 
					
						
							|  |  |  |                             //        reverse
 | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                             $docSheet->setTitle((string) $eleSheet["name"], false); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; | 
					
						
							|  |  |  |                             $xmlSheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "$dir/$fileWorksheet")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions());  //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                             $sharedFormulas = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (isset($eleSheet["state"]) && (string) $eleSheet["state"] != '') { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 $docSheet->setSheetState((string) $eleSheet["state"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetViews) && isset($xmlSheet->sheetViews->sheetView)) { | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getSheetView()->setZoomScale(intval($xmlSheet->sheetViews->sheetView['zoomScale'])); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getSheetView()->setZoomScaleNormal(intval($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['view'])) { | 
					
						
							|  |  |  |                                     $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) { | 
					
						
							|  |  |  |                                     $docSheet->setShowGridLines(self::boolean((string)$xmlSheet->sheetViews->sheetView['showGridLines'])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['showRowColHeaders'])) { | 
					
						
							|  |  |  |                                     $docSheet->setShowRowColHeaders(self::boolean((string)$xmlSheet->sheetViews->sheetView['showRowColHeaders'])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView['rightToLeft'])) { | 
					
						
							|  |  |  |                                     $docSheet->setRightToLeft(self::boolean((string)$xmlSheet->sheetViews->sheetView['rightToLeft'])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView->pane)) { | 
					
						
							|  |  |  |                                     if (isset($xmlSheet->sheetViews->sheetView->pane['topLeftCell'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         $docSheet->freezePane((string)$xmlSheet->sheetViews->sheetView->pane['topLeftCell']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } else { | 
					
						
							|  |  |  |                                         $xSplit = 0; | 
					
						
							|  |  |  |                                         $ySplit = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if (isset($xmlSheet->sheetViews->sheetView->pane['xSplit'])) { | 
					
						
							|  |  |  |                                             $xSplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['xSplit']); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if (isset($xmlSheet->sheetViews->sheetView->pane['ySplit'])) { | 
					
						
							|  |  |  |                                             $ySplit = 1 + intval($xmlSheet->sheetViews->sheetView->pane['ySplit']); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         $docSheet->freezePaneByColumnAndRow($xSplit, $ySplit); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetViews->sheetView->selection)) { | 
					
						
							|  |  |  |                                     if (isset($xmlSheet->sheetViews->sheetView->selection['sqref'])) { | 
					
						
							|  |  |  |                                         $sqref = (string)$xmlSheet->sheetViews->sheetView->selection['sqref']; | 
					
						
							|  |  |  |                                         $sqref = explode(' ', $sqref); | 
					
						
							|  |  |  |                                         $sqref = $sqref[0]; | 
					
						
							|  |  |  |                                         $docSheet->setSelectedCells($sqref); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->tabColor)) { | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetPr->tabColor['rgb'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getTabColor()->setARGB((string)$xmlSheet->sheetPr->tabColor['rgb']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr['codeName'])) { | 
					
						
							|  |  |  |                                 $docSheet->setCodeName((string) $xmlSheet->sheetPr['codeName']); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->outlinePr)) { | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetPr->outlinePr['summaryRight']) && | 
					
						
							|  |  |  |                                     !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryRight'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setShowSummaryRight(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setShowSummaryRight(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetPr->outlinePr['summaryBelow']) && | 
					
						
							|  |  |  |                                     !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryBelow'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setShowSummaryBelow(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setShowSummaryBelow(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetPr) && isset($xmlSheet->sheetPr->pageSetUpPr)) { | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetPr->pageSetUpPr['fitToPage']) && | 
					
						
							|  |  |  |                                     !self::boolean((string) $xmlSheet->sheetPr->pageSetUpPr['fitToPage'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getPageSetup()->setFitToPage(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getPageSetup()->setFitToPage(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if (isset($xmlSheet->sheetFormatPr)) { | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetFormatPr['customHeight']) && | 
					
						
							|  |  |  |                                     self::boolean((string) $xmlSheet->sheetFormatPr['customHeight']) && | 
					
						
							|  |  |  |                                     isset($xmlSheet->sheetFormatPr['defaultRowHeight'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getDefaultRowDimension()->setRowHeight((float)$xmlSheet->sheetFormatPr['defaultRowHeight']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetFormatPr['defaultColWidth'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getDefaultColumnDimension()->setWidth((float)$xmlSheet->sheetFormatPr['defaultColWidth']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->sheetFormatPr['zeroHeight']) && | 
					
						
							|  |  |  |                                     ((string)$xmlSheet->sheetFormatPr['zeroHeight'] == '1')) { | 
					
						
							|  |  |  |                                     $docSheet->getDefaultRowDimension()->setZeroHeight(true); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (isset($xmlSheet->cols) && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->cols->col as $col) { | 
					
						
							| 
									
										
										
										
											2013-12-30 22:19:05 +00:00
										 |  |  |                                     for ($i = intval($col["min"]) - 1; $i < intval($col["max"]); ++$i) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         if ($col["style"] && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setXfIndex(intval($col["style"])); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         if (self::boolean($col["bestFit"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             //$docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setAutoSize(true);
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                         if (self::boolean($col["hidden"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         // echo PHPExcel_Cell::stringFromColumnIndex($i), ': HIDDEN COLUMN',PHP_EOL;
 | 
					
						
							|  |  |  |                                             $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setVisible(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                         if (self::boolean($col["collapsed"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setCollapsed(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                         if ($col["outlineLevel"] > 0) { | 
					
						
							|  |  |  |                                             $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setOutlineLevel(intval($col["outlineLevel"])); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         $docSheet->getColumnDimension(PHPExcel_Cell::stringFromColumnIndex($i))->setWidth(floatval($col["width"])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if (intval($col["max"]) == 16384) { | 
					
						
							|  |  |  |                                             break; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (isset($xmlSheet->printOptions) && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 if (self::boolean((string) $xmlSheet->printOptions['gridLinesSet'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setShowGridlines(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (self::boolean((string) $xmlSheet->printOptions['gridLines'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->setPrintGridlines(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (self::boolean((string) $xmlSheet->printOptions['horizontalCentered'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getPageSetup()->setHorizontalCentered(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (self::boolean((string) $xmlSheet->printOptions['verticalCentered'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docSheet->getPageSetup()->setVerticalCentered(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if ($xmlSheet && $xmlSheet->sheetData && $xmlSheet->sheetData->row) { | 
					
						
							|  |  |  |                                 foreach ($xmlSheet->sheetData->row as $row) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     if ($row["ht"] && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $docSheet->getRowDimension(intval($row["r"]))->setRowHeight(floatval($row["ht"])); | 
					
						
							|  |  |  |                                     } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     if (self::boolean($row["hidden"]) && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         $docSheet->getRowDimension(intval($row["r"]))->setVisible(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                     if (self::boolean($row["collapsed"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         $docSheet->getRowDimension(intval($row["r"]))->setCollapsed(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                     if ($row["outlineLevel"] > 0) { | 
					
						
							|  |  |  |                                         $docSheet->getRowDimension(intval($row["r"]))->setOutlineLevel(intval($row["outlineLevel"])); | 
					
						
							|  |  |  |                                     } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     if ($row["s"] && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $docSheet->getRowDimension(intval($row["r"]))->setXfIndex(intval($row["s"])); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     foreach ($row->c as $c) { | 
					
						
							|  |  |  |                                         $r                     = (string) $c["r"]; | 
					
						
							|  |  |  |                                         $cellDataType         = (string) $c["t"]; | 
					
						
							|  |  |  |                                         $value                = null; | 
					
						
							|  |  |  |                                         $calculatedValue     = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Read cell?
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         if ($this->getReadFilter() !== null) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $coordinates = PHPExcel_Cell::coordinateFromString($r); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             if (!$this->getReadFilter()->readCell($coordinates[0], $coordinates[1], $docSheet->getTitle())) { | 
					
						
							|  |  |  |                                                 continue; | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     //                                    echo 'Reading cell ', $coordinates[0], $coordinates[1], PHP_EOL;
 | 
					
						
							|  |  |  |     //                                    print_r($c);
 | 
					
						
							|  |  |  |     //                                    echo PHP_EOL;
 | 
					
						
							|  |  |  |     //                                    echo 'Cell Data Type is ', $cellDataType, ': ';
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |                                         // Read cell!
 | 
					
						
							|  |  |  |                                         switch ($cellDataType) { | 
					
						
							|  |  |  |                                             case "s": | 
					
						
							|  |  |  |     //                                            echo 'String', PHP_EOL;
 | 
					
						
							|  |  |  |                                                 if ((string)$c->v != '') { | 
					
						
							|  |  |  |                                                     $value = $sharedStrings[intval($c->v)]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                     if ($value instanceof PHPExcel_RichText) { | 
					
						
							|  |  |  |                                                         $value = clone $value; | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                 } else { | 
					
						
							|  |  |  |                                                     $value = ''; | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                             case "b": | 
					
						
							|  |  |  |     //                                            echo 'Boolean', PHP_EOL;
 | 
					
						
							|  |  |  |                                                 if (!isset($c->f)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $value = self::castToBoolean($c); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } else { | 
					
						
							|  |  |  |                                                     // Formula
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToBoolean'); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     if (isset($c->f['t'])) { | 
					
						
							|  |  |  |                                                         $att = array(); | 
					
						
							|  |  |  |                                                         $att = $c->f; | 
					
						
							|  |  |  |                                                         $docSheet->getCell($r)->setFormulaAttributes($att); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |     //                                                echo '$calculatedValue = ', $calculatedValue, PHP_EOL;
 | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                             case "inlineStr": | 
					
						
							| 
									
										
										
										
											2015-05-24 11:27:36 +00:00
										 |  |  | //                                                echo 'Inline String', PHP_EOL;
 | 
					
						
							|  |  |  |                                                 if (isset($c->f)) { | 
					
						
							|  |  |  |                                                     $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); | 
					
						
							|  |  |  |                                                 } else { | 
					
						
							|  |  |  |                                                     $value = $this->parseRichText($c->is); | 
					
						
							|  |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 break; | 
					
						
							|  |  |  |                                             case "e": | 
					
						
							|  |  |  |     //                                            echo 'Error', PHP_EOL;
 | 
					
						
							|  |  |  |                                                 if (!isset($c->f)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $value = self::castToError($c); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } else { | 
					
						
							|  |  |  |                                                     // Formula
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError'); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     //                                                echo '$calculatedValue = ', $calculatedValue, PHP_EOL;
 | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                             default: | 
					
						
							| 
									
										
										
										
											2015-05-24 11:27:36 +00:00
										 |  |  | //                                                echo 'Default', PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 if (!isset($c->f)) { | 
					
						
							|  |  |  |     //                                                echo 'Not a Formula', PHP_EOL;
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $value = self::castToString($c); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } else { | 
					
						
							|  |  |  |     //                                                echo 'Treat as Formula', PHP_EOL;
 | 
					
						
							|  |  |  |                                                     // Formula
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                                     $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToString'); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     //                                                echo '$calculatedValue = ', $calculatedValue, PHP_EOL;
 | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |     //                                    echo 'Value is ', $value, PHP_EOL;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Check for numeric values
 | 
					
						
							|  |  |  |                                         if (is_numeric($value) && $cellDataType != 's') { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                             if ($value == (int)$value) { | 
					
						
							|  |  |  |                                                 $value = (int)$value; | 
					
						
							|  |  |  |                                             } elseif ($value == (float)$value) { | 
					
						
							|  |  |  |                                                 $value = (float)$value; | 
					
						
							|  |  |  |                                             } elseif ($value == (double)$value) { | 
					
						
							|  |  |  |                                                 $value = (double)$value; | 
					
						
							|  |  |  |                                             } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Rich text?
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         if ($value instanceof PHPExcel_RichText && $this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $value = $value->getPlainText(); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         $cell = $docSheet->getCell($r); | 
					
						
							|  |  |  |                                         // Assign value
 | 
					
						
							|  |  |  |                                         if ($cellDataType != '') { | 
					
						
							|  |  |  |                                             $cell->setValueExplicit($value, $cellDataType); | 
					
						
							|  |  |  |                                         } else { | 
					
						
							|  |  |  |                                             $cell->setValue($value); | 
					
						
							|  |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         if ($calculatedValue !== null) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $cell->setCalculatedValue($calculatedValue); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Style information?
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         if ($c["s"] && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             // no style index means 0, it seems
 | 
					
						
							|  |  |  |                                             $cell->setXfIndex(isset($styles[intval($c["s"])]) ? | 
					
						
							|  |  |  |                                                 intval($c["s"]) : 0); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             $conditionals = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (!$this->readDataOnly && $xmlSheet && $xmlSheet->conditionalFormatting) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->conditionalFormatting as $conditional) { | 
					
						
							|  |  |  |                                     foreach ($conditional->cfRule as $cfRule) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                         if (((string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_NONE || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CELLIS || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_CONTAINSTEXT || (string)$cfRule["type"] == PHPExcel_Style_Conditional::CONDITION_EXPRESSION) && isset($dxfs[intval($cfRule["dxfId"])])) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $conditionals[(string) $conditional["sqref"]][intval($cfRule["priority"])] = $cfRule; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 foreach ($conditionals as $ref => $cfRules) { | 
					
						
							|  |  |  |                                     ksort($cfRules); | 
					
						
							|  |  |  |                                     $conditionalStyles = array(); | 
					
						
							|  |  |  |                                     foreach ($cfRules as $cfRule) { | 
					
						
							|  |  |  |                                         $objConditional = new PHPExcel_Style_Conditional(); | 
					
						
							|  |  |  |                                         $objConditional->setConditionType((string)$cfRule["type"]); | 
					
						
							|  |  |  |                                         $objConditional->setOperatorType((string)$cfRule["operator"]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if ((string)$cfRule["text"] != '') { | 
					
						
							|  |  |  |                                             $objConditional->setText((string)$cfRule["text"]); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if (count($cfRule->formula) > 1) { | 
					
						
							|  |  |  |                                             foreach ($cfRule->formula as $formula) { | 
					
						
							|  |  |  |                                                 $objConditional->addCondition((string)$formula); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } else { | 
					
						
							|  |  |  |                                             $objConditional->addCondition((string)$cfRule->formula); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         $objConditional->setStyle(clone $dxfs[intval($cfRule["dxfId"])]); | 
					
						
							|  |  |  |                                         $conditionalStyles[] = $objConditional; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     // Extract all cell references in $ref
 | 
					
						
							|  |  |  |                                     $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($ref); | 
					
						
							|  |  |  |                                     foreach ($aReferences as $reference) { | 
					
						
							|  |  |  |                                         $docSheet->getStyle($reference)->setConditionalStyles($conditionalStyles); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             $aKeys = array("sheet", "objects", "scenarios", "formatCells", "formatColumns", "formatRows", "insertColumns", "insertRows", "insertHyperlinks", "deleteColumns", "deleteRows", "selectLockedCells", "sort", "autoFilter", "pivotTables", "selectUnlockedCells"); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($aKeys as $key) { | 
					
						
							|  |  |  |                                     $method = "set" . ucfirst($key); | 
					
						
							|  |  |  |                                     $docSheet->getProtection()->$method(self::boolean((string) $xmlSheet->sheetProtection[$key])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 $docSheet->getProtection()->setPassword((string) $xmlSheet->sheetProtection["password"], true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 if ($xmlSheet->protectedRanges->protectedRange) { | 
					
						
							|  |  |  |                                     foreach ($xmlSheet->protectedRanges->protectedRange as $protectedRange) { | 
					
						
							|  |  |  |                                         $docSheet->protectCells((string) $protectedRange["sqref"], (string) $protectedRange["password"], true); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->autoFilter && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2014-07-27 14:18:00 +00:00
										 |  |  |                                 $autoFilterRange = (string) $xmlSheet->autoFilter["ref"]; | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                 if (strpos($autoFilterRange, ':') !== false) { | 
					
						
							|  |  |  |                                     $autoFilter = $docSheet->getAutoFilter(); | 
					
						
							|  |  |  |                                     $autoFilter->setRange($autoFilterRange); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     foreach ($xmlSheet->autoFilter->filterColumn as $filterColumn) { | 
					
						
							|  |  |  |                                         $column = $autoFilter->getColumnByOffset((integer) $filterColumn["colId"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Check for standard filters
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                         if ($filterColumn->filters) { | 
					
						
							|  |  |  |                                             $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_FILTER); | 
					
						
							|  |  |  |                                             $filters = $filterColumn->filters; | 
					
						
							|  |  |  |                                             if ((isset($filters["blank"])) && ($filters["blank"] == 1)) { | 
					
						
							| 
									
										
										
										
											2015-05-17 12:16:53 +00:00
										 |  |  |                                                 //    Operator is undefined, but always treated as EQUAL
 | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule(null, '')->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_FILTER); | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    Standard filters are always an OR join, so no join rule needs to be set
 | 
					
						
							|  |  |  |                                             //    Entries can be either filter elements
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             foreach ($filters->filter as $filterRule) { | 
					
						
							| 
									
										
										
										
											2015-05-17 13:00:02 +00:00
										 |  |  |                                                 //    Operator is undefined, but always treated as EQUAL
 | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule(null, (string) $filterRule["val"])->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_FILTER); | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    Or Date Group elements
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             foreach ($filters->dateGroupItem as $dateGroupItem) { | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule( | 
					
						
							| 
									
										
										
										
											2015-05-17 13:00:02 +00:00
										 |  |  |                                                     //    Operator is undefined, but always treated as EQUAL
 | 
					
						
							|  |  |  |                                                     null, | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                                     array( | 
					
						
							|  |  |  |                                                         'year' => (string) $dateGroupItem["year"], | 
					
						
							|  |  |  |                                                         'month' => (string) $dateGroupItem["month"], | 
					
						
							|  |  |  |                                                         'day' => (string) $dateGroupItem["day"], | 
					
						
							|  |  |  |                                                         'hour' => (string) $dateGroupItem["hour"], | 
					
						
							|  |  |  |                                                         'minute' => (string) $dateGroupItem["minute"], | 
					
						
							|  |  |  |                                                         'second' => (string) $dateGroupItem["second"], | 
					
						
							|  |  |  |                                                     ), | 
					
						
							|  |  |  |                                                     (string) $dateGroupItem["dateTimeGrouping"] | 
					
						
							|  |  |  |                                                 ) | 
					
						
							|  |  |  |                                                 ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DATEGROUP); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Check for custom filters
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                         if ($filterColumn->customFilters) { | 
					
						
							|  |  |  |                                             $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER); | 
					
						
							|  |  |  |                                             $customFilters = $filterColumn->customFilters; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    Custom filters can an AND or an OR join;
 | 
					
						
							|  |  |  |                                             //        and there should only ever be one or two entries
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             if ((isset($customFilters["and"])) && ($customFilters["and"] == 1)) { | 
					
						
							|  |  |  |                                                 $column->setJoin(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_COLUMN_JOIN_AND); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                             foreach ($customFilters->customFilter as $filterRule) { | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule( | 
					
						
							|  |  |  |                                                     (string) $filterRule["operator"], | 
					
						
							|  |  |  |                                                     (string) $filterRule["val"] | 
					
						
							|  |  |  |                                                 ) | 
					
						
							|  |  |  |                                                 ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Check for dynamic filters
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                         if ($filterColumn->dynamicFilter) { | 
					
						
							|  |  |  |                                             $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    We should only ever have one dynamic filter
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             foreach ($filterColumn->dynamicFilter as $filterRule) { | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule( | 
					
						
							| 
									
										
										
										
											2015-05-17 13:00:02 +00:00
										 |  |  |                                                     //    Operator is undefined, but always treated as EQUAL
 | 
					
						
							|  |  |  |                                                     null, | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                                     (string) $filterRule["val"], | 
					
						
							|  |  |  |                                                     (string) $filterRule["type"] | 
					
						
							|  |  |  |                                                 ) | 
					
						
							|  |  |  |                                                 ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER); | 
					
						
							|  |  |  |                                                 if (isset($filterRule["val"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     $column->setAttribute('val', (string) $filterRule["val"]); | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                                 if (isset($filterRule["maxVal"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     $column->setAttribute('maxVal', (string) $filterRule["maxVal"]); | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Check for dynamic filters
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                         if ($filterColumn->top10) { | 
					
						
							|  |  |  |                                             $column->setFilterType(PHPExcel_Worksheet_AutoFilter_Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    We should only ever have one top10 filter
 | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                             foreach ($filterColumn->top10 as $filterRule) { | 
					
						
							|  |  |  |                                                 $column->createRule()->setRule( | 
					
						
							|  |  |  |                                                     (((isset($filterRule["percent"])) && ($filterRule["percent"] == 1)) | 
					
						
							|  |  |  |                                                         ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT | 
					
						
							|  |  |  |                                                         : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE | 
					
						
							|  |  |  |                                                     ), | 
					
						
							|  |  |  |                                                     (string) $filterRule["val"], | 
					
						
							|  |  |  |                                                     (((isset($filterRule["top"])) && ($filterRule["top"] == 1)) | 
					
						
							|  |  |  |                                                         ? PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP | 
					
						
							|  |  |  |                                                         : PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM | 
					
						
							|  |  |  |                                                     ) | 
					
						
							|  |  |  |                                                 ) | 
					
						
							|  |  |  |                                                 ->setRuleType(PHPExcel_Worksheet_AutoFilter_Column_Rule::AUTOFILTER_RULETYPE_TOPTENFILTER); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->mergeCells && $xmlSheet->mergeCells->mergeCell && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->mergeCells->mergeCell as $mergeCell) { | 
					
						
							|  |  |  |                                     $mergeRef = (string) $mergeCell["ref"]; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     if (strpos($mergeRef, ':') !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $docSheet->mergeCells((string) $mergeCell["ref"]); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->pageMargins && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $docPageMargins = $docSheet->getPageMargins(); | 
					
						
							|  |  |  |                                 $docPageMargins->setLeft(floatval($xmlSheet->pageMargins["left"])); | 
					
						
							|  |  |  |                                 $docPageMargins->setRight(floatval($xmlSheet->pageMargins["right"])); | 
					
						
							|  |  |  |                                 $docPageMargins->setTop(floatval($xmlSheet->pageMargins["top"])); | 
					
						
							|  |  |  |                                 $docPageMargins->setBottom(floatval($xmlSheet->pageMargins["bottom"])); | 
					
						
							|  |  |  |                                 $docPageMargins->setHeader(floatval($xmlSheet->pageMargins["header"])); | 
					
						
							|  |  |  |                                 $docPageMargins->setFooter(floatval($xmlSheet->pageMargins["footer"])); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->pageSetup && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $docPageSetup = $docSheet->getPageSetup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["orientation"])) { | 
					
						
							|  |  |  |                                     $docPageSetup->setOrientation((string) $xmlSheet->pageSetup["orientation"]); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["paperSize"])) { | 
					
						
							|  |  |  |                                     $docPageSetup->setPaperSize(intval($xmlSheet->pageSetup["paperSize"])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["scale"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docPageSetup->setScale(intval($xmlSheet->pageSetup["scale"]), false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["fitToHeight"]) && intval($xmlSheet->pageSetup["fitToHeight"]) >= 0) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docPageSetup->setFitToHeight(intval($xmlSheet->pageSetup["fitToHeight"]), false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["fitToWidth"]) && intval($xmlSheet->pageSetup["fitToWidth"]) >= 0) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docPageSetup->setFitToWidth(intval($xmlSheet->pageSetup["fitToWidth"]), false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->pageSetup["firstPageNumber"]) && isset($xmlSheet->pageSetup["useFirstPageNumber"]) && | 
					
						
							|  |  |  |                                     self::boolean((string) $xmlSheet->pageSetup["useFirstPageNumber"])) { | 
					
						
							|  |  |  |                                     $docPageSetup->setFirstPageNumber(intval($xmlSheet->pageSetup["firstPageNumber"])); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->headerFooter && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $docHeaderFooter = $docSheet->getHeaderFooter(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->headerFooter["differentOddEven"]) && | 
					
						
							|  |  |  |                                     self::boolean((string)$xmlSheet->headerFooter["differentOddEven"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setDifferentOddEven(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setDifferentOddEven(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->headerFooter["differentFirst"]) && | 
					
						
							|  |  |  |                                     self::boolean((string)$xmlSheet->headerFooter["differentFirst"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setDifferentFirst(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setDifferentFirst(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->headerFooter["scaleWithDoc"]) && | 
					
						
							|  |  |  |                                     !self::boolean((string)$xmlSheet->headerFooter["scaleWithDoc"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setScaleWithDocument(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setScaleWithDocument(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                                 if (isset($xmlSheet->headerFooter["alignWithMargins"]) && | 
					
						
							|  |  |  |                                     !self::boolean((string)$xmlSheet->headerFooter["alignWithMargins"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setAlignWithMargins(false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $docHeaderFooter->setAlignWithMargins(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 $docHeaderFooter->setOddHeader((string) $xmlSheet->headerFooter->oddHeader); | 
					
						
							|  |  |  |                                 $docHeaderFooter->setOddFooter((string) $xmlSheet->headerFooter->oddFooter); | 
					
						
							|  |  |  |                                 $docHeaderFooter->setEvenHeader((string) $xmlSheet->headerFooter->evenHeader); | 
					
						
							|  |  |  |                                 $docHeaderFooter->setEvenFooter((string) $xmlSheet->headerFooter->evenFooter); | 
					
						
							|  |  |  |                                 $docHeaderFooter->setFirstHeader((string) $xmlSheet->headerFooter->firstHeader); | 
					
						
							|  |  |  |                                 $docHeaderFooter->setFirstFooter((string) $xmlSheet->headerFooter->firstFooter); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->rowBreaks && $xmlSheet->rowBreaks->brk && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->rowBreaks->brk as $brk) { | 
					
						
							|  |  |  |                                     if ($brk["man"]) { | 
					
						
							|  |  |  |                                         $docSheet->setBreak("A$brk[id]", PHPExcel_Worksheet::BREAK_ROW); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->colBreaks && $xmlSheet->colBreaks->brk && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->colBreaks->brk as $brk) { | 
					
						
							|  |  |  |                                     if ($brk["man"]) { | 
					
						
							|  |  |  |                                         $docSheet->setBreak(PHPExcel_Cell::stringFromColumnIndex((string) $brk["id"]) . "1", PHPExcel_Worksheet::BREAK_COLUMN); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if ($xmlSheet && $xmlSheet->dataValidations && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 foreach ($xmlSheet->dataValidations->dataValidation as $dataValidation) { | 
					
						
							|  |  |  |                                     // Uppercase coordinate
 | 
					
						
							|  |  |  |                                     $range = strtoupper($dataValidation["sqref"]); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                     $rangeSet = explode(' ', $range); | 
					
						
							|  |  |  |                                     foreach ($rangeSet as $range) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $stRange = $docSheet->shrinkRangeToFit($range); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Extract all cell references in $range
 | 
					
						
							|  |  |  |                                         $aReferences = PHPExcel_Cell::extractAllCellReferencesInRange($stRange); | 
					
						
							|  |  |  |                                         foreach ($aReferences as $reference) { | 
					
						
							|  |  |  |                                             // Create validation
 | 
					
						
							|  |  |  |                                             $docValidation = $docSheet->getCell($reference)->getDataValidation(); | 
					
						
							|  |  |  |                                             $docValidation->setType((string) $dataValidation["type"]); | 
					
						
							|  |  |  |                                             $docValidation->setErrorStyle((string) $dataValidation["errorStyle"]); | 
					
						
							|  |  |  |                                             $docValidation->setOperator((string) $dataValidation["operator"]); | 
					
						
							|  |  |  |                                             $docValidation->setAllowBlank($dataValidation["allowBlank"] != 0); | 
					
						
							|  |  |  |                                             $docValidation->setShowDropDown($dataValidation["showDropDown"] == 0); | 
					
						
							|  |  |  |                                             $docValidation->setShowInputMessage($dataValidation["showInputMessage"] != 0); | 
					
						
							|  |  |  |                                             $docValidation->setShowErrorMessage($dataValidation["showErrorMessage"] != 0); | 
					
						
							|  |  |  |                                             $docValidation->setErrorTitle((string) $dataValidation["errorTitle"]); | 
					
						
							|  |  |  |                                             $docValidation->setError((string) $dataValidation["error"]); | 
					
						
							|  |  |  |                                             $docValidation->setPromptTitle((string) $dataValidation["promptTitle"]); | 
					
						
							|  |  |  |                                             $docValidation->setPrompt((string) $dataValidation["prompt"]); | 
					
						
							|  |  |  |                                             $docValidation->setFormula1((string) $dataValidation->formula1); | 
					
						
							|  |  |  |                                             $docValidation->setFormula2((string) $dataValidation->formula2); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Add hyperlinks
 | 
					
						
							|  |  |  |                             $hyperlinks = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (!$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 // Locate hyperlink relations
 | 
					
						
							|  |  |  |                                 if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     foreach ($relsWorksheet->Relationship as $ele) { | 
					
						
							|  |  |  |                                         if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink") { | 
					
						
							|  |  |  |                                             $hyperlinks[(string)$ele["Id"]] = (string)$ele["Target"]; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Loop through hyperlinks
 | 
					
						
							|  |  |  |                                 if ($xmlSheet && $xmlSheet->hyperlinks) { | 
					
						
							|  |  |  |                                     foreach ($xmlSheet->hyperlinks->hyperlink as $hyperlink) { | 
					
						
							|  |  |  |                                         // Link url
 | 
					
						
							|  |  |  |                                         $linkRel = $hyperlink->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         foreach (PHPExcel_Cell::extractAllCellReferencesInRange($hyperlink['ref']) as $cellReference) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             $cell = $docSheet->getCell($cellReference); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             if (isset($linkRel['id'])) { | 
					
						
							|  |  |  |                                                 $hyperlinkUrl = $hyperlinks[ (string)$linkRel['id'] ]; | 
					
						
							|  |  |  |                                                 if (isset($hyperlink['location'])) { | 
					
						
							|  |  |  |                                                     $hyperlinkUrl .= '#' . (string) $hyperlink['location']; | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 $cell->getHyperlink()->setUrl($hyperlinkUrl); | 
					
						
							|  |  |  |                                             } elseif (isset($hyperlink['location'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 $cell->getHyperlink()->setUrl('sheet://' . (string)$hyperlink['location']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             // Tooltip
 | 
					
						
							|  |  |  |                                             if (isset($hyperlink['tooltip'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 $cell->getHyperlink()->setTooltip((string)$hyperlink['tooltip']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Add comments
 | 
					
						
							|  |  |  |                             $comments = array(); | 
					
						
							|  |  |  |                             $vmlComments = array(); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             if (!$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 // Locate comment relations
 | 
					
						
							|  |  |  |                                 if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     foreach ($relsWorksheet->Relationship as $ele) { | 
					
						
							|  |  |  |                                         if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments") { | 
					
						
							|  |  |  |                                             $comments[(string)$ele["Id"]] = (string)$ele["Target"]; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") { | 
					
						
							|  |  |  |                                             $vmlComments[(string)$ele["Id"]] = (string)$ele["Target"]; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Loop through comments
 | 
					
						
							|  |  |  |                                 foreach ($comments as $relName => $relPath) { | 
					
						
							|  |  |  |                                     // Load comments file
 | 
					
						
							|  |  |  |                                     $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     $commentsFile = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $relPath)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                     // Utility variables
 | 
					
						
							|  |  |  |                                     $authors = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     // Loop through authors
 | 
					
						
							|  |  |  |                                     foreach ($commentsFile->authors->author as $author) { | 
					
						
							|  |  |  |                                         $authors[] = (string)$author; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     // Loop through contents
 | 
					
						
							|  |  |  |                                     foreach ($commentsFile->commentList->comment as $comment) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                         if (!empty($comment['authorId'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             $docSheet->getComment((string)$comment['ref'])->setAuthor($authors[(string)$comment['authorId']]); | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         $docSheet->getComment((string)$comment['ref'])->setText($this->parseRichText($comment->text)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Loop through VML comments
 | 
					
						
							|  |  |  |                                 foreach ($vmlComments as $relName => $relPath) { | 
					
						
							|  |  |  |                                     // Load VML comments file
 | 
					
						
							|  |  |  |                                     $relPath = PHPExcel_Shared_File::realpath(dirname("$dir/$fileWorksheet") . "/" . $relPath); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                     $vmlCommentsFile = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $relPath)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     $vmlCommentsFile->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     $shapes = $vmlCommentsFile->xpath('//v:shape'); | 
					
						
							|  |  |  |                                     foreach ($shapes as $shape) { | 
					
						
							|  |  |  |                                         $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if (isset($shape['style'])) { | 
					
						
							|  |  |  |                                             $style        = (string)$shape['style']; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             $fillColor    = strtoupper(substr((string)$shape['fillcolor'], 1)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $column       = null; | 
					
						
							|  |  |  |                                             $row          = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             $clientData   = $shape->xpath('.//x:ClientData'); | 
					
						
							|  |  |  |                                             if (is_array($clientData) && !empty($clientData)) { | 
					
						
							|  |  |  |                                                 $clientData   = $clientData[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 if (isset($clientData['ObjectType']) && (string)$clientData['ObjectType'] == 'Note') { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $temp = $clientData->xpath('.//x:Row'); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     if (is_array($temp)) { | 
					
						
							|  |  |  |                                                         $row = $temp[0]; | 
					
						
							|  |  |  |                                                     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                                     $temp = $clientData->xpath('.//x:Column'); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     if (is_array($temp)) { | 
					
						
							|  |  |  |                                                         $column = $temp[0]; | 
					
						
							|  |  |  |                                                     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             if (($column !== null) && ($row !== null)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 // Set comment properties
 | 
					
						
							|  |  |  |                                                 $comment = $docSheet->getCommentByColumnAndRow((string) $column, $row + 1); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 $comment->getFillColor()->setRGB($fillColor); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                                 // Parse style
 | 
					
						
							|  |  |  |                                                 $styleArray = explode(';', str_replace(' ', '', $style)); | 
					
						
							|  |  |  |                                                 foreach ($styleArray as $stylePair) { | 
					
						
							|  |  |  |                                                     $stylePair = explode(':', $stylePair); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     if ($stylePair[0] == 'margin-left') { | 
					
						
							|  |  |  |                                                         $comment->setMarginLeft($stylePair[1]); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($stylePair[0] == 'margin-top') { | 
					
						
							|  |  |  |                                                         $comment->setMarginTop($stylePair[1]); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($stylePair[0] == 'width') { | 
					
						
							|  |  |  |                                                         $comment->setWidth($stylePair[1]); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($stylePair[0] == 'height') { | 
					
						
							|  |  |  |                                                         $comment->setHeight($stylePair[1]); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($stylePair[0] == 'visibility') { | 
					
						
							|  |  |  |                                                         $comment->setVisible($stylePair[1] == 'visible'); | 
					
						
							|  |  |  |                                                     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Header/footer images
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                 if ($xmlSheet && $xmlSheet->legacyDrawingHF && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $vmlRelationship = ''; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         foreach ($relsWorksheet->Relationship as $ele) { | 
					
						
							|  |  |  |                                             if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing") { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                 $vmlRelationship = self::dirAdd("$dir/$fileWorksheet", $ele["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if ($vmlRelationship != '') { | 
					
						
							|  |  |  |                                             // Fetch linked images
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                             $relsVML = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname($vmlRelationship) . '/_rels/' . basename($vmlRelationship) . '.rels')), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $drawings = array(); | 
					
						
							|  |  |  |                                             foreach ($relsVML->Relationship as $ele) { | 
					
						
							|  |  |  |                                                 if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $drawings[(string) $ele["Id"]] = self::dirAdd($vmlRelationship, $ele["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             // Fetch VML document
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                             $vmlDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $vmlRelationship)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             $vmlDrawing->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             $hfImages = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             $shapes = $vmlDrawing->xpath('//v:shape'); | 
					
						
							|  |  |  |                                             foreach ($shapes as $idx => $shape) { | 
					
						
							|  |  |  |                                                 $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml'); | 
					
						
							|  |  |  |                                                 $imageData = $shape->xpath('//v:imagedata'); | 
					
						
							|  |  |  |                                                 $imageData = $imageData[$idx]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                 $imageData = $imageData->attributes('urn:schemas-microsoft-com:office:office'); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 $style = self::toCSSArray((string)$shape['style']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ] = new PHPExcel_Worksheet_HeaderFooterDrawing(); | 
					
						
							|  |  |  |                                                 if (isset($imageData['title'])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     $hfImages[ (string)$shape['id'] ]->setName((string)$imageData['title']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $drawings[(string)$imageData['relid']], false); | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setResizeProportional(false); | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setWidth($style['width']); | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setHeight($style['height']); | 
					
						
							|  |  |  |                                                 if (isset($style['margin-left'])) { | 
					
						
							|  |  |  |                                                     $hfImages[ (string)$shape['id'] ]->setOffsetX($style['margin-left']); | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setOffsetY($style['margin-top']); | 
					
						
							|  |  |  |                                                 $hfImages[ (string)$shape['id'] ]->setResizeProportional(true); | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             $docSheet->getHeaderFooter()->setImages($hfImages); | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-17 17:33:56 +00:00
										 |  |  |                             // TODO: Autoshapes from twoCellAnchors!
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if ($zip->locateName(dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                 $relsWorksheet = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . "/_rels/" . basename($fileWorksheet) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $drawings = array(); | 
					
						
							|  |  |  |                                 foreach ($relsWorksheet->Relationship as $ele) { | 
					
						
							|  |  |  |                                     if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing") { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         $drawings[(string) $ele["Id"]] = self::dirAdd("$dir/$fileWorksheet", $ele["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                 if ($xmlSheet->drawing && !$this->readDataOnly) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     foreach ($xmlSheet->drawing as $drawing) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         $fileDrawing = $drawings[(string) self::getArrayItem($drawing->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "id")]; | 
					
						
							|  |  |  |                                         $relsDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, dirname($fileDrawing) . "/_rels/" . basename($fileDrawing) . ".rels")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); //~ http://schemas.openxmlformats.org/package/2006/relationships");
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $images = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         if ($relsDrawing && $relsDrawing->Relationship) { | 
					
						
							|  |  |  |                                             foreach ($relsDrawing->Relationship as $ele) { | 
					
						
							|  |  |  |                                                 if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image") { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $images[(string) $ele["Id"]] = self::dirAdd($fileDrawing, $ele["Target"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } elseif ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart") { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     if ($this->includeCharts) { | 
					
						
							|  |  |  |                                                         $charts[self::dirAdd($fileDrawing, $ele["Target"])] = array( | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                             'id'        => (string) $ele["Id"], | 
					
						
							|  |  |  |                                                             'sheet'    => $docSheet->getTitle() | 
					
						
							|  |  |  |                                                         ); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                         $xmlDrawing = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $fileDrawing)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions())->children("http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                                         if ($xmlDrawing->oneCellAnchor) { | 
					
						
							|  |  |  |                                             foreach ($xmlDrawing->oneCellAnchor as $oneCellAnchor) { | 
					
						
							|  |  |  |                                                 if ($oneCellAnchor->pic->blipFill) { | 
					
						
							|  |  |  |                                                     $blip = $oneCellAnchor->pic->blipFill->children("http://schemas.openxmlformats.org/drawingml/2006/main")->blip; | 
					
						
							|  |  |  |                                                     $xfrm = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->xfrm; | 
					
						
							|  |  |  |                                                     $outerShdw = $oneCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->effectLst->outerShdw; | 
					
						
							|  |  |  |                                                     $objDrawing = new PHPExcel_Worksheet_Drawing; | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $objDrawing->setName((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "name")); | 
					
						
							|  |  |  |                                                     $objDrawing->setDescription((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), "descr")); | 
					
						
							|  |  |  |                                                     $objDrawing->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $images[(string) self::getArrayItem($blip->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "embed")], false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $objDrawing->setCoordinates(PHPExcel_Cell::stringFromColumnIndex((string) $oneCellAnchor->from->col) . ($oneCellAnchor->from->row + 1)); | 
					
						
							|  |  |  |                                                     $objDrawing->setOffsetX(PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->colOff)); | 
					
						
							|  |  |  |                                                     $objDrawing->setOffsetY(PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->rowOff)); | 
					
						
							|  |  |  |                                                     $objDrawing->setResizeProportional(false); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $objDrawing->setWidth(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cx"))); | 
					
						
							|  |  |  |                                                     $objDrawing->setHeight(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cy"))); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     if ($xfrm) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                         $objDrawing->setRotation(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), "rot"))); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($outerShdw) { | 
					
						
							|  |  |  |                                                         $shadow = $objDrawing->getShadow(); | 
					
						
							|  |  |  |                                                         $shadow->setVisible(true); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                         $shadow->setBlurRadius(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "blurRad"))); | 
					
						
							|  |  |  |                                                         $shadow->setDistance(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "dist"))); | 
					
						
							|  |  |  |                                                         $shadow->setDirection(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), "dir"))); | 
					
						
							|  |  |  |                                                         $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), "algn")); | 
					
						
							|  |  |  |                                                         $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), "val")); | 
					
						
							|  |  |  |                                                         $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), "val") / 1000); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                     $objDrawing->setWorksheet($docSheet); | 
					
						
							|  |  |  |                                                 } else { | 
					
						
							|  |  |  |                                                     //    ? Can charts be positioned with a oneCellAnchor ?
 | 
					
						
							|  |  |  |                                                     $coordinates    = PHPExcel_Cell::stringFromColumnIndex((string) $oneCellAnchor->from->col) . ($oneCellAnchor->from->row + 1); | 
					
						
							|  |  |  |                                                     $offsetX        = PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->colOff); | 
					
						
							|  |  |  |                                                     $offsetY        = PHPExcel_Shared_Drawing::EMUToPixels($oneCellAnchor->from->rowOff); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $width          = PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cx")); | 
					
						
							|  |  |  |                                                     $height         = PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), "cy")); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         if ($xmlDrawing->twoCellAnchor) { | 
					
						
							|  |  |  |                                             foreach ($xmlDrawing->twoCellAnchor as $twoCellAnchor) { | 
					
						
							|  |  |  |                                                 if ($twoCellAnchor->pic->blipFill) { | 
					
						
							|  |  |  |                                                     $blip = $twoCellAnchor->pic->blipFill->children("http://schemas.openxmlformats.org/drawingml/2006/main")->blip; | 
					
						
							|  |  |  |                                                     $xfrm = $twoCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->xfrm; | 
					
						
							|  |  |  |                                                     $outerShdw = $twoCellAnchor->pic->spPr->children("http://schemas.openxmlformats.org/drawingml/2006/main")->effectLst->outerShdw; | 
					
						
							|  |  |  |                                                     $objDrawing = new PHPExcel_Worksheet_Drawing; | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                     $objDrawing->setName((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), "name")); | 
					
						
							|  |  |  |                                                     $objDrawing->setDescription((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), "descr")); | 
					
						
							|  |  |  |                                                     $objDrawing->setPath("zip://".PHPExcel_Shared_File::realpath($pFilename)."#" . $images[(string) self::getArrayItem($blip->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"), "embed")], false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $objDrawing->setCoordinates(PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->from->col) . ($twoCellAnchor->from->row + 1)); | 
					
						
							|  |  |  |                                                     $objDrawing->setOffsetX(PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->colOff)); | 
					
						
							|  |  |  |                                                     $objDrawing->setOffsetY(PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->rowOff)); | 
					
						
							|  |  |  |                                                     $objDrawing->setResizeProportional(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                     if ($xfrm) { | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                         $objDrawing->setWidth(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), "cx"))); | 
					
						
							|  |  |  |                                                         $objDrawing->setHeight(PHPExcel_Shared_Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), "cy"))); | 
					
						
							|  |  |  |                                                         $objDrawing->setRotation(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), "rot"))); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                     if ($outerShdw) { | 
					
						
							|  |  |  |                                                         $shadow = $objDrawing->getShadow(); | 
					
						
							|  |  |  |                                                         $shadow->setVisible(true); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                         $shadow->setBlurRadius(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "blurRad"))); | 
					
						
							|  |  |  |                                                         $shadow->setDistance(PHPExcel_Shared_Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), "dist"))); | 
					
						
							|  |  |  |                                                         $shadow->setDirection(PHPExcel_Shared_Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), "dir"))); | 
					
						
							|  |  |  |                                                         $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), "algn")); | 
					
						
							|  |  |  |                                                         $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), "val")); | 
					
						
							|  |  |  |                                                         $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), "val") / 1000); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                     $objDrawing->setWorksheet($docSheet); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                                                 } elseif (($this->includeCharts) && ($twoCellAnchor->graphicFrame)) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     $fromCoordinate = PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->from->col) . ($twoCellAnchor->from->row + 1); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $fromOffsetX    = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->colOff); | 
					
						
							|  |  |  |                                                     $fromOffsetY    = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->from->rowOff); | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     $toCoordinate   = PHPExcel_Cell::stringFromColumnIndex((string) $twoCellAnchor->to->col) . ($twoCellAnchor->to->row + 1); | 
					
						
							|  |  |  |                                                     $toOffsetX      = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->to->colOff); | 
					
						
							|  |  |  |                                                     $toOffsetY      = PHPExcel_Shared_Drawing::EMUToPixels($twoCellAnchor->to->rowOff); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $graphic        = $twoCellAnchor->graphicFrame->children("http://schemas.openxmlformats.org/drawingml/2006/main")->graphic; | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     $chartRef       = $graphic->graphicData->children("http://schemas.openxmlformats.org/drawingml/2006/chart")->chart; | 
					
						
							|  |  |  |                                                     $thisChart      = (string) $chartRef->attributes("http://schemas.openxmlformats.org/officeDocument/2006/relationships"); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     $chartDetails[$docSheet->getTitle().'!'.$thisChart] = array( | 
					
						
							|  |  |  |                                                         'fromCoordinate'    => $fromCoordinate, | 
					
						
							|  |  |  |                                                         'fromOffsetX'       => $fromOffsetX, | 
					
						
							|  |  |  |                                                         'fromOffsetY'       => $fromOffsetY, | 
					
						
							|  |  |  |                                                         'toCoordinate'      => $toCoordinate, | 
					
						
							|  |  |  |                                                         'toOffsetX'         => $toOffsetX, | 
					
						
							|  |  |  |                                                         'toOffsetY'         => $toOffsetY, | 
					
						
							|  |  |  |                                                         'worksheetTitle'    => $docSheet->getTitle() | 
					
						
							|  |  |  |                                                     ); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Loop through definedNames
 | 
					
						
							|  |  |  |                             if ($xmlWorkbook->definedNames) { | 
					
						
							|  |  |  |                                 foreach ($xmlWorkbook->definedNames->definedName as $definedName) { | 
					
						
							|  |  |  |                                     // Extract range
 | 
					
						
							|  |  |  |                                     $extractedRange = (string)$definedName; | 
					
						
							|  |  |  |                                     $extractedRange = preg_replace('/\'(\w+)\'\!/', '', $extractedRange); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     if (($spos = strpos($extractedRange, '!')) !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                         $extractedRange = substr($extractedRange, 0, $spos).str_replace('$', '', substr($extractedRange, $spos)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } else { | 
					
						
							|  |  |  |                                         $extractedRange = str_replace('$', '', $extractedRange); | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     // Valid range?
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     if (stripos((string)$definedName, '#REF!') !== false || $extractedRange == '') { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         continue; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     // Some definedNames are only applicable if we are on the same sheet...
 | 
					
						
							|  |  |  |                                     if ((string)$definedName['localSheetId'] != '' && (string)$definedName['localSheetId'] == $sheetId) { | 
					
						
							|  |  |  |                                         // Switch on type
 | 
					
						
							|  |  |  |                                         switch ((string)$definedName['name']) { | 
					
						
							|  |  |  |                                             case '_xlnm._FilterDatabase': | 
					
						
							|  |  |  |                                                 if ((string)$definedName['hidden'] !== '1') { | 
					
						
							| 
									
										
										
										
											2014-07-27 14:18:00 +00:00
										 |  |  |                                                     $extractedRange = explode(',', $extractedRange); | 
					
						
							|  |  |  |                                                     foreach ($extractedRange as $range) { | 
					
						
							|  |  |  |                                                         $autoFilterRange = $range; | 
					
						
							| 
									
										
										
										
											2014-11-11 23:18:13 +00:00
										 |  |  |                                                         if (strpos($autoFilterRange, ':') !== false) { | 
					
						
							|  |  |  |                                                             $docSheet->getAutoFilter()->setRange($autoFilterRange); | 
					
						
							| 
									
										
										
										
											2014-07-27 14:18:00 +00:00
										 |  |  |                                                         } | 
					
						
							|  |  |  |                                                     } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                             case '_xlnm.Print_Titles': | 
					
						
							|  |  |  |                                                 // Split $extractedRange
 | 
					
						
							|  |  |  |                                                 $extractedRange = explode(',', $extractedRange); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                 // Set print titles
 | 
					
						
							|  |  |  |                                                 foreach ($extractedRange as $range) { | 
					
						
							|  |  |  |                                                     $matches = array(); | 
					
						
							|  |  |  |                                                     $range = str_replace('$', '', $range); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                                     // check for repeating columns, e g. 'A:A' or 'A:D'
 | 
					
						
							|  |  |  |                                                     if (preg_match('/!?([A-Z]+)\:([A-Z]+)$/', $range, $matches)) { | 
					
						
							|  |  |  |                                                         $docSheet->getPageSetup()->setColumnsToRepeatAtLeft(array($matches[1], $matches[2])); | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                                     } elseif (preg_match('/!?(\d+)\:(\d+)$/', $range, $matches)) { | 
					
						
							|  |  |  |                                                         // check for repeating rows, e.g. '1:1' or '1:5'
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                         $docSheet->getPageSetup()->setRowsToRepeatAtTop(array($matches[1], $matches[2])); | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                             case '_xlnm.Print_Area': | 
					
						
							|  |  |  |                                                 $rangeSets = explode(',', $extractedRange);        // FIXME: what if sheetname contains comma?
 | 
					
						
							|  |  |  |                                                 $newRangeSets = array(); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                                 foreach ($rangeSets as $rangeSet) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     $range = explode('!', $rangeSet);    // FIXME: what if sheetname contains exclamation mark?
 | 
					
						
							|  |  |  |                                                     $rangeSet = isset($range[1]) ? $range[1] : $range[0]; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     if (strpos($rangeSet, ':') === false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                         $rangeSet = $rangeSet . ':' . $rangeSet; | 
					
						
							|  |  |  |                                                     } | 
					
						
							|  |  |  |                                                     $newRangeSets[] = str_replace('$', '', $rangeSet); | 
					
						
							|  |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                                 $docSheet->getPageSetup()->setPrintArea(implode(',', $newRangeSets)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                             default: | 
					
						
							|  |  |  |                                                 break; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             // Next sheet id
 | 
					
						
							|  |  |  |                             ++$sheetId; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         // Loop through definedNames
 | 
					
						
							|  |  |  |                         if ($xmlWorkbook->definedNames) { | 
					
						
							|  |  |  |                             foreach ($xmlWorkbook->definedNames->definedName as $definedName) { | 
					
						
							|  |  |  |                                 // Extract range
 | 
					
						
							|  |  |  |                                 $extractedRange = (string)$definedName; | 
					
						
							|  |  |  |                                 $extractedRange = preg_replace('/\'(\w+)\'\!/', '', $extractedRange); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 if (($spos = strpos($extractedRange, '!')) !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                                     $extractedRange = substr($extractedRange, 0, $spos).str_replace('$', '', substr($extractedRange, $spos)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } else { | 
					
						
							|  |  |  |                                     $extractedRange = str_replace('$', '', $extractedRange); | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Valid range?
 | 
					
						
							|  |  |  |                                 if (stripos((string)$definedName, '#REF!') !== false || $extractedRange == '') { | 
					
						
							|  |  |  |                                     continue; | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                 // Some definedNames are only applicable if we are on the same sheet...
 | 
					
						
							|  |  |  |                                 if ((string)$definedName['localSheetId'] != '') { | 
					
						
							|  |  |  |                                     // Local defined name
 | 
					
						
							|  |  |  |                                     // Switch on type
 | 
					
						
							|  |  |  |                                     switch ((string)$definedName['name']) { | 
					
						
							|  |  |  |                                         case '_xlnm._FilterDatabase': | 
					
						
							|  |  |  |                                         case '_xlnm.Print_Titles': | 
					
						
							|  |  |  |                                         case '_xlnm.Print_Area': | 
					
						
							|  |  |  |                                             break; | 
					
						
							|  |  |  |                                         default: | 
					
						
							|  |  |  |                                             if ($mapSheetId[(integer) $definedName['localSheetId']] !== null) { | 
					
						
							|  |  |  |                                                 $range = explode('!', (string)$definedName); | 
					
						
							|  |  |  |                                                 if (count($range) == 2) { | 
					
						
							|  |  |  |                                                     $range[0] = str_replace("''", "'", $range[0]); | 
					
						
							|  |  |  |                                                     $range[0] = str_replace("'", "", $range[0]); | 
					
						
							|  |  |  |                                                     if ($worksheet = $docSheet->getParent()->getSheetByName($range[0])) { | 
					
						
							|  |  |  |                                                         $extractedRange = str_replace('$', '', $range[1]); | 
					
						
							|  |  |  |                                                         $scope = $docSheet->getParent()->getSheet($mapSheetId[(integer) $definedName['localSheetId']]); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                         $excel->addNamedRange(new PHPExcel_NamedRange((string)$definedName['name'], $worksheet, $extractedRange, true, $scope)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                     } | 
					
						
							|  |  |  |                                                 } | 
					
						
							|  |  |  |                                             } | 
					
						
							|  |  |  |                                             break; | 
					
						
							|  |  |  |                                     } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 } elseif (!isset($definedName['localSheetId'])) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     // "Global" definedNames
 | 
					
						
							|  |  |  |                                     $locatedSheet = null; | 
					
						
							|  |  |  |                                     $extractedSheetName = ''; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     if (strpos((string)$definedName, '!') !== false) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         // Extract sheet name
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                         $extractedSheetName = PHPExcel_Worksheet::extractSheetTitle((string)$definedName, true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         $extractedSheetName = $extractedSheetName[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Locate sheet
 | 
					
						
							|  |  |  |                                         $locatedSheet = $excel->getSheetByName($extractedSheetName); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                         // Modify range
 | 
					
						
							|  |  |  |                                         $range = explode('!', $extractedRange); | 
					
						
							|  |  |  |                                         $extractedRange = isset($range[1]) ? $range[1] : $range[0]; | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     if ($locatedSheet !== null) { | 
					
						
							|  |  |  |                                         $excel->addNamedRange(new PHPExcel_NamedRange((string)$definedName['name'], $locatedSheet, $extractedRange, false)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                     if ((!$this->readDataOnly) || (!empty($this->loadSheetsOnly))) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         // active sheet index
 | 
					
						
							|  |  |  |                         $activeTab = intval($xmlWorkbook->bookViews->workbookView["activeTab"]); // refers to old sheet index
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         // keep active sheet index if sheet is still loaded, else first sheet is set as the active
 | 
					
						
							|  |  |  |                         if (isset($mapSheetId[$activeTab]) && $mapSheetId[$activeTab] !== null) { | 
					
						
							|  |  |  |                             $excel->setActiveSheetIndex($mapSheetId[$activeTab]); | 
					
						
							|  |  |  |                         } else { | 
					
						
							|  |  |  |                             if ($excel->getSheetCount() == 0) { | 
					
						
							|  |  |  |                                 $excel->createSheet(); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             $excel->setActiveSheetIndex(0); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         if (!$this->readDataOnly) { | 
					
						
							|  |  |  |             $contentTypes = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, "[Content_Types].xml")), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             foreach ($contentTypes->Override as $contentType) { | 
					
						
							|  |  |  |                 switch ($contentType["ContentType"]) { | 
					
						
							|  |  |  |                     case "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         if ($this->includeCharts) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                             $chartEntryRef = ltrim($contentType['PartName'], '/'); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                             $chartElements = simplexml_load_string($this->securityScan($this->getFromZipArchive($zip, $chartEntryRef)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							| 
									
										
										
										
											2015-05-17 10:11:56 +00:00
										 |  |  |                             $objChart = PHPExcel_Reader_Excel2007_Chart::readChart($chartElements, basename($chartEntryRef, '.xml')); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  | //                            echo 'Chart ', $chartEntryRef, '<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                            var_dump($charts[$chartEntryRef]);
 | 
					
						
							| 
									
										
										
										
											2012-02-14 23:28:41 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if (isset($charts[$chartEntryRef])) { | 
					
						
							|  |  |  |                                 $chartPositionRef = $charts[$chartEntryRef]['sheet'].'!'.$charts[$chartEntryRef]['id']; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  | //                                echo 'Position Ref ', $chartPositionRef, '<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 if (isset($chartDetails[$chartPositionRef])) { | 
					
						
							|  |  |  | //                                    var_dump($chartDetails[$chartPositionRef]);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                                     $excel->getSheetByName($charts[$chartEntryRef]['sheet'])->addChart($objChart); | 
					
						
							|  |  |  |                                     $objChart->setWorksheet($excel->getSheetByName($charts[$chartEntryRef]['sheet'])); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     $objChart->setTopLeftPosition($chartDetails[$chartPositionRef]['fromCoordinate'], $chartDetails[$chartPositionRef]['fromOffsetX'], $chartDetails[$chartPositionRef]['fromOffsetY']); | 
					
						
							|  |  |  |                                     $objChart->setBottomRightPosition($chartDetails[$chartPositionRef]['toCoordinate'], $chartDetails[$chartPositionRef]['toOffsetX'], $chartDetails[$chartPositionRef]['toOffsetY']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $zip->close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $excel; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function readColor($color, $background = false) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if (isset($color["rgb"])) { | 
					
						
							|  |  |  |             return (string)$color["rgb"]; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |         } elseif (isset($color["indexed"])) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |             return PHPExcel_Style_Color::indexedColor($color["indexed"]-7, $background)->getARGB(); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |         } elseif (isset($color["theme"])) { | 
					
						
							|  |  |  |             if (self::$theme !== null) { | 
					
						
							|  |  |  |                 $returnColour = self::$theme->getColourByIndex((int)$color["theme"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 if (isset($color["tint"])) { | 
					
						
							|  |  |  |                     $tintAdjust = (float) $color["tint"]; | 
					
						
							|  |  |  |                     $returnColour = PHPExcel_Style_Color::changeBrightness($returnColour, $tintAdjust); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 return 'FF'.$returnColour; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($background) { | 
					
						
							|  |  |  |             return 'FFFFFFFF'; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return 'FF000000'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function readStyle($docStyle, $style) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         // format code
 | 
					
						
							|  |  |  | //        if (isset($style->numFmt)) {
 | 
					
						
							|  |  |  | //            if (isset($style->numFmt['formatCode'])) {
 | 
					
						
							|  |  |  | //                $docStyle->getNumberFormat()->setFormatCode((string) $style->numFmt['formatCode']);
 | 
					
						
							|  |  |  | //            } else {
 | 
					
						
							|  |  |  |                 $docStyle->getNumberFormat()->setFormatCode($style->numFmt); | 
					
						
							|  |  |  | //            }
 | 
					
						
							|  |  |  | //        }
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // font
 | 
					
						
							|  |  |  |         if (isset($style->font)) { | 
					
						
							|  |  |  |             $docStyle->getFont()->setName((string) $style->font->name["val"]); | 
					
						
							|  |  |  |             $docStyle->getFont()->setSize((string) $style->font->sz["val"]); | 
					
						
							|  |  |  |             if (isset($style->font->b)) { | 
					
						
							|  |  |  |                 $docStyle->getFont()->setBold(!isset($style->font->b["val"]) || self::boolean((string) $style->font->b["val"])); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (isset($style->font->i)) { | 
					
						
							|  |  |  |                 $docStyle->getFont()->setItalic(!isset($style->font->i["val"]) || self::boolean((string) $style->font->i["val"])); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (isset($style->font->strike)) { | 
					
						
							|  |  |  |                 $docStyle->getFont()->setStrikethrough(!isset($style->font->strike["val"]) || self::boolean((string) $style->font->strike["val"])); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             $docStyle->getFont()->getColor()->setARGB(self::readColor($style->font->color)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (isset($style->font->u) && !isset($style->font->u["val"])) { | 
					
						
							|  |  |  |                 $docStyle->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             } elseif (isset($style->font->u) && isset($style->font->u["val"])) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 $docStyle->getFont()->setUnderline((string)$style->font->u["val"]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (isset($style->font->vertAlign) && isset($style->font->vertAlign["val"])) { | 
					
						
							|  |  |  |                 $vertAlign = strtolower((string)$style->font->vertAlign["val"]); | 
					
						
							|  |  |  |                 if ($vertAlign == 'superscript') { | 
					
						
							|  |  |  |                     $docStyle->getFont()->setSuperScript(true); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if ($vertAlign == 'subscript') { | 
					
						
							|  |  |  |                     $docStyle->getFont()->setSubScript(true); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // fill
 | 
					
						
							|  |  |  |         if (isset($style->fill)) { | 
					
						
							|  |  |  |             if ($style->fill->gradientFill) { | 
					
						
							|  |  |  |                 $gradientFill = $style->fill->gradientFill[0]; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 if (!empty($gradientFill["type"])) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $docStyle->getFill()->setFillType((string) $gradientFill["type"]); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $docStyle->getFill()->setRotation(floatval($gradientFill["degree"])); | 
					
						
							|  |  |  |                 $gradientFill->registerXPathNamespace("sml", "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                 $docStyle->getFill()->getStartColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath("sml:stop[@position=0]"))->color)); | 
					
						
							|  |  |  |                 $docStyle->getFill()->getEndColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath("sml:stop[@position=1]"))->color)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } elseif ($style->fill->patternFill) { | 
					
						
							|  |  |  |                 $patternType = (string)$style->fill->patternFill["patternType"] != '' ? (string)$style->fill->patternFill["patternType"] : 'solid'; | 
					
						
							|  |  |  |                 $docStyle->getFill()->setFillType($patternType); | 
					
						
							|  |  |  |                 if ($style->fill->patternFill->fgColor) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                     $docStyle->getFill()->getStartColor()->setARGB(self::readColor($style->fill->patternFill->fgColor, true)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 } else { | 
					
						
							|  |  |  |                     $docStyle->getFill()->getStartColor()->setARGB('FF000000'); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 if ($style->fill->patternFill->bgColor) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                     $docStyle->getFill()->getEndColor()->setARGB(self::readColor($style->fill->patternFill->bgColor, true)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // border
 | 
					
						
							|  |  |  |         if (isset($style->border)) { | 
					
						
							|  |  |  |             $diagonalUp = self::boolean((string) $style->border["diagonalUp"]); | 
					
						
							|  |  |  |             $diagonalDown = self::boolean((string) $style->border["diagonalDown"]); | 
					
						
							|  |  |  |             if (!$diagonalUp && !$diagonalDown) { | 
					
						
							|  |  |  |                 $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_NONE); | 
					
						
							|  |  |  |             } elseif ($diagonalUp && !$diagonalDown) { | 
					
						
							|  |  |  |                 $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_UP); | 
					
						
							|  |  |  |             } elseif (!$diagonalUp && $diagonalDown) { | 
					
						
							|  |  |  |                 $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_DOWN); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $docStyle->getBorders()->setDiagonalDirection(PHPExcel_Style_Borders::DIAGONAL_BOTH); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             self::readBorder($docStyle->getBorders()->getLeft(), $style->border->left); | 
					
						
							|  |  |  |             self::readBorder($docStyle->getBorders()->getRight(), $style->border->right); | 
					
						
							|  |  |  |             self::readBorder($docStyle->getBorders()->getTop(), $style->border->top); | 
					
						
							|  |  |  |             self::readBorder($docStyle->getBorders()->getBottom(), $style->border->bottom); | 
					
						
							|  |  |  |             self::readBorder($docStyle->getBorders()->getDiagonal(), $style->border->diagonal); | 
					
						
							| 
									
										
										
										
											2013-06-25 22:13:13 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // alignment
 | 
					
						
							|  |  |  |         if (isset($style->alignment)) { | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setHorizontal((string) $style->alignment["horizontal"]); | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setVertical((string) $style->alignment["vertical"]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $textRotation = 0; | 
					
						
							|  |  |  |             if ((int)$style->alignment["textRotation"] <= 90) { | 
					
						
							|  |  |  |                 $textRotation = (int)$style->alignment["textRotation"]; | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             } elseif ((int)$style->alignment["textRotation"] > 90) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 $textRotation = 90 - (int)$style->alignment["textRotation"]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setTextRotation(intval($textRotation)); | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setWrapText(self::boolean((string) $style->alignment["wrapText"])); | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setShrinkToFit(self::boolean((string) $style->alignment["shrinkToFit"])); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |             $docStyle->getAlignment()->setIndent(intval((string)$style->alignment["indent"]) > 0 ? intval((string)$style->alignment["indent"]) : 0); | 
					
						
							|  |  |  |             $docStyle->getAlignment()->setReadorder(intval((string)$style->alignment["readingOrder"]) > 0 ? intval((string)$style->alignment["readingOrder"]) : 0); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // protection
 | 
					
						
							|  |  |  |         if (isset($style->protection)) { | 
					
						
							|  |  |  |             if (isset($style->protection['locked'])) { | 
					
						
							|  |  |  |                 if (self::boolean((string) $style->protection['locked'])) { | 
					
						
							|  |  |  |                     $docStyle->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_PROTECTED); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $docStyle->getProtection()->setLocked(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (isset($style->protection['hidden'])) { | 
					
						
							|  |  |  |                 if (self::boolean((string) $style->protection['hidden'])) { | 
					
						
							|  |  |  |                     $docStyle->getProtection()->setHidden(PHPExcel_Style_Protection::PROTECTION_PROTECTED); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $docStyle->getProtection()->setHidden(PHPExcel_Style_Protection::PROTECTION_UNPROTECTED); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // top-level style settings
 | 
					
						
							|  |  |  |         if (isset($style->quotePrefix)) { | 
					
						
							|  |  |  |             $docStyle->setQuotePrefix($style->quotePrefix); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private static function readBorder($docBorder, $eleBorder) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if (isset($eleBorder["style"])) { | 
					
						
							|  |  |  |             $docBorder->setBorderStyle((string) $eleBorder["style"]); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (isset($eleBorder->color)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             $docBorder->getColor()->setARGB(self::readColor($eleBorder->color)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private function parseRichText($is = null) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $value = new PHPExcel_RichText(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (isset($is->t)) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |             $value->createText(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $is->t)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |             if (is_object($is->r)) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                 foreach ($is->r as $run) { | 
					
						
							|  |  |  |                     if (!isset($run->rPr)) { | 
					
						
							|  |  |  |                         $objText = $value->createText(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $run->t)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     } else { | 
					
						
							|  |  |  |                         $objText = $value->createTextRun(PHPExcel_Shared_String::ControlCharacterOOXML2PHP((string) $run->t)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         if (isset($run->rPr->rFont["val"])) { | 
					
						
							|  |  |  |                             $objText->getFont()->setName((string) $run->rPr->rFont["val"]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         if (isset($run->rPr->sz["val"])) { | 
					
						
							|  |  |  |                             $objText->getFont()->setSize((string) $run->rPr->sz["val"]); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($run->rPr->color)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                             $objText->getFont()->setColor(new PHPExcel_Style_Color(self::readColor($run->rPr->color))); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         if ((isset($run->rPr->b["val"]) && self::boolean((string) $run->rPr->b["val"])) || | 
					
						
							|  |  |  |                             (isset($run->rPr->b) && !isset($run->rPr->b["val"]))) { | 
					
						
							|  |  |  |                             $objText->getFont()->setBold(true); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if ((isset($run->rPr->i["val"]) && self::boolean((string) $run->rPr->i["val"])) || | 
					
						
							|  |  |  |                             (isset($run->rPr->i) && !isset($run->rPr->i["val"]))) { | 
					
						
							|  |  |  |                             $objText->getFont()->setItalic(true); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($run->rPr->vertAlign) && isset($run->rPr->vertAlign["val"])) { | 
					
						
							|  |  |  |                             $vertAlign = strtolower((string)$run->rPr->vertAlign["val"]); | 
					
						
							|  |  |  |                             if ($vertAlign == 'superscript') { | 
					
						
							|  |  |  |                                 $objText->getFont()->setSuperScript(true); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             if ($vertAlign == 'subscript') { | 
					
						
							|  |  |  |                                 $objText->getFont()->setSubScript(true); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($run->rPr->u) && !isset($run->rPr->u["val"])) { | 
					
						
							|  |  |  |                             $objText->getFont()->setUnderline(PHPExcel_Style_Font::UNDERLINE_SINGLE); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         } elseif (isset($run->rPr->u) && isset($run->rPr->u["val"])) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                             $objText->getFont()->setUnderline((string)$run->rPr->u["val"]); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if ((isset($run->rPr->strike["val"]) && self::boolean((string) $run->rPr->strike["val"])) || | 
					
						
							|  |  |  |                             (isset($run->rPr->strike) && !isset($run->rPr->strike["val"]))) { | 
					
						
							|  |  |  |                             $objText->getFont()->setStrikethrough(true); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $value; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     private function readRibbon($excel, $customUITarget, $zip) | 
					
						
							| 
									
										
										
										
											2013-11-17 00:11:45 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $baseDir = dirname($customUITarget); | 
					
						
							|  |  |  |         $nameCustomUI = basename($customUITarget); | 
					
						
							| 
									
										
										
										
											2013-11-17 00:11:45 +00:00
										 |  |  |         // get the xml file (ribbon)
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $localRibbon = $this->getFromZipArchive($zip, $customUITarget); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $customUIImagesNames = array(); | 
					
						
							| 
									
										
										
										
											2013-11-17 00:11:45 +00:00
										 |  |  |         $customUIImagesBinaries = array(); | 
					
						
							|  |  |  |         // something like customUI/_rels/customUI.xml.rels
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $pathRels = $baseDir . '/_rels/' . $nameCustomUI . '.rels'; | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |         $dataRels = $this->getFromZipArchive($zip, $pathRels); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if ($dataRels) { | 
					
						
							| 
									
										
										
										
											2013-11-17 00:11:45 +00:00
										 |  |  |             // exists and not empty if the ribbon have some pictures (other than internal MSO)
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $UIRels = simplexml_load_string($this->securityScan($dataRels), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							|  |  |  |             if ($UIRels) { | 
					
						
							|  |  |  |                 // we need to save id and target to avoid parsing customUI.xml and "guess" if it's a pseudo callback who load the image
 | 
					
						
							|  |  |  |                 foreach ($UIRels->Relationship as $ele) { | 
					
						
							|  |  |  |                     if ($ele["Type"] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image') { | 
					
						
							| 
									
										
										
										
											2013-11-17 00:11:45 +00:00
										 |  |  |                         // an image ?
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $customUIImagesNames[(string) $ele['Id']] = (string)$ele['Target']; | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |                         $customUIImagesBinaries[(string)$ele['Target']] = $this->getFromZipArchive($zip, $baseDir . '/' . (string) $ele['Target']); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if ($localRibbon) { | 
					
						
							|  |  |  |             $excel->setRibbonXMLData($customUITarget, $localRibbon); | 
					
						
							|  |  |  |             if (count($customUIImagesNames) > 0 && count($customUIImagesBinaries) > 0) { | 
					
						
							|  |  |  |                 $excel->setRibbonBinObjects($customUIImagesNames, $customUIImagesBinaries); | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                 $excel->setRibbonBinObjects(null); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |             $excel->setRibbonXMLData(null); | 
					
						
							|  |  |  |             $excel->setRibbonBinObjects(null); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |     private static function getArrayItem($array, $key = 0) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         return (isset($array[$key]) ? $array[$key] : null); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-20 18:17:17 +00:00
										 |  |  |     private static function dirAdd($base, $add) | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         return preg_replace('~[^/]+/\.\./~', '', dirname($base) . "/$add"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     private static function toCSSArray($style) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $style = str_replace(array("\r","\n"), "", $style); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $temp = explode(';', $style); | 
					
						
							|  |  |  |         $style = array(); | 
					
						
							|  |  |  |         foreach ($temp as $item) { | 
					
						
							|  |  |  |             $item = explode(':', $item); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (strpos($item[1], 'px') !== false) { | 
					
						
							|  |  |  |                 $item[1] = str_replace('px', '', $item[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (strpos($item[1], 'pt') !== false) { | 
					
						
							|  |  |  |                 $item[1] = str_replace('pt', '', $item[1]); | 
					
						
							|  |  |  |                 $item[1] = PHPExcel_Shared_Font::fontSizeToPixels($item[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (strpos($item[1], 'in') !== false) { | 
					
						
							|  |  |  |                 $item[1] = str_replace('in', '', $item[1]); | 
					
						
							|  |  |  |                 $item[1] = PHPExcel_Shared_Font::inchSizeToPixels($item[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (strpos($item[1], 'cm') !== false) { | 
					
						
							|  |  |  |                 $item[1] = str_replace('cm', '', $item[1]); | 
					
						
							|  |  |  |                 $item[1] = PHPExcel_Shared_Font::centimeterSizeToPixels($item[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $style[$item[0]] = $item[1]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $style; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     private static function boolean($value = null) | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-02-23 15:35:05 +00:00
										 |  |  |         if (is_object($value)) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $value = (string) $value; | 
					
						
							| 
									
										
										
										
											2014-02-23 15:35:05 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if (is_numeric($value)) { | 
					
						
							|  |  |  |             return (bool) $value; | 
					
						
							| 
									
										
										
										
											2013-12-30 22:19:05 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         return ($value === 'true' || $value === 'TRUE'); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | } |