| 
									
										
										
										
											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_Excel2003XML | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2013-12-31 18:36:33 +00:00
										 |  |  |  * @version    ##VERSION##, ##DATE##
 | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-11-05 21:23:38 +00:00
										 |  |  | class PHPExcel_Reader_Excel2003XML extends PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Formats | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     protected $styles = array(); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Character set used in the file | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var string | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |     protected $charSet = 'UTF-8'; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create a new PHPExcel_Reader_Excel2003XML | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     public function __construct() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |         $this->_readFilter = new PHPExcel_Reader_DefaultReadFilter(); | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //    Office                    xmlns:o="urn:schemas-microsoft-com:office:office"
 | 
					
						
							|  |  |  |         //    Excel                    xmlns:x="urn:schemas-microsoft-com:office:excel"
 | 
					
						
							|  |  |  |         //    XML Spreadsheet            xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
 | 
					
						
							|  |  |  |         //    Spreadsheet component    xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
 | 
					
						
							|  |  |  |         //    XML schema                 xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
 | 
					
						
							|  |  |  |         //    XML data type            xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
 | 
					
						
							|  |  |  |         //    MS-persist recordset    xmlns:rs="urn:schemas-microsoft-com:rowset"
 | 
					
						
							|  |  |  |         //    Rowset                    xmlns:z="#RowsetSchema"
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $signature = array( | 
					
						
							|  |  |  |                 '<?xml version="1.0"', | 
					
						
							|  |  |  |                 '<?mso-application progid="Excel.Sheet"?>' | 
					
						
							|  |  |  |             ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Open file
 | 
					
						
							|  |  |  |         $this->_openFile($pFilename); | 
					
						
							|  |  |  |         $fileHandle = $this->_fileHandle; | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |         // Read sample data (first 2 KB will do)
 | 
					
						
							|  |  |  |         $data = fread($fileHandle, 2048); | 
					
						
							|  |  |  |         fclose($fileHandle); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $valid = true; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($signature as $match) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             // every part of the signature must be present
 | 
					
						
							|  |  |  |             if (strpos($data, $match) === false) { | 
					
						
							|  |  |  |                 $valid = false; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         //    Retrieve charset encoding
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         if (preg_match('/<?xml.*encoding=[\'"](.*?)[\'"].*?>/um', $data, $matches)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             $this->charSet = strtoupper($matches[1]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  | //        echo 'Character Set is ', $this->charSet,'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $valid; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * 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."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!$this->canRead($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $worksheetNames = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							|  |  |  |         $namespaces = $xml->getNamespaces(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xml_ss = $xml->children($namespaces['ss']); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($xml_ss->Worksheet as $worksheet) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $worksheet_ss = $worksheet->attributes($namespaces['ss']); | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |             $worksheetNames[] = self::_convertStringEncoding((string) $worksheet_ss['Name'], $this->charSet); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $worksheetNames; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-03-31 19:17:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |      * 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(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							|  |  |  |         $namespaces = $xml->getNamespaces(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $worksheetID = 1; | 
					
						
							|  |  |  |         $xml_ss = $xml->children($namespaces['ss']); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($xml_ss->Worksheet as $worksheet) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $worksheet_ss = $worksheet->attributes($namespaces['ss']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $tmpInfo = array(); | 
					
						
							|  |  |  |             $tmpInfo['worksheetName'] = ''; | 
					
						
							|  |  |  |             $tmpInfo['lastColumnLetter'] = 'A'; | 
					
						
							|  |  |  |             $tmpInfo['lastColumnIndex'] = 0; | 
					
						
							|  |  |  |             $tmpInfo['totalRows'] = 0; | 
					
						
							|  |  |  |             $tmpInfo['totalColumns'] = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (isset($worksheet_ss['Name'])) { | 
					
						
							|  |  |  |                 $tmpInfo['worksheetName'] = (string) $worksheet_ss['Name']; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $tmpInfo['worksheetName'] = "Worksheet_{$worksheetID}"; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (isset($worksheet->Table->Row)) { | 
					
						
							|  |  |  |                 $rowIndex = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 foreach ($worksheet->Table->Row as $rowData) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $columnIndex = 0; | 
					
						
							|  |  |  |                     $rowHasData = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                     foreach ($rowData->Cell as $cell) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         if (isset($cell->Data)) { | 
					
						
							|  |  |  |                             $tmpInfo['lastColumnIndex'] = max($tmpInfo['lastColumnIndex'], $columnIndex); | 
					
						
							|  |  |  |                             $rowHasData = true; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         ++$columnIndex; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     ++$rowIndex; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     if ($rowHasData) { | 
					
						
							|  |  |  |                         $tmpInfo['totalRows'] = max($tmpInfo['totalRows'], $rowIndex); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $tmpInfo['lastColumnLetter'] = PHPExcel_Cell::stringFromColumnIndex($tmpInfo['lastColumnIndex']); | 
					
						
							|  |  |  |             $tmpInfo['totalColumns'] = $tmpInfo['lastColumnIndex'] + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $worksheetInfo[] = $tmpInfo; | 
					
						
							|  |  |  |             ++$worksheetID; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $worksheetInfo; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Loads PHPExcel from file | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param     string         $pFilename | 
					
						
							|  |  |  |      * @return     PHPExcel | 
					
						
							|  |  |  |      * @throws     PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function load($pFilename) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Create new PHPExcel
 | 
					
						
							|  |  |  |         $objPHPExcel = new PHPExcel(); | 
					
						
							| 
									
										
										
										
											2014-11-26 22:40:49 +00:00
										 |  |  |         $objPHPExcel->removeSheetByIndex(0); | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         // Load into this instance
 | 
					
						
							|  |  |  |         return $this->loadIntoExisting($pFilename, $objPHPExcel); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     protected static function identifyFixedStyleValue($styleList, &$styleAttributeValue) | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $styleAttributeValue = strtolower($styleAttributeValue); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($styleList as $style) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             if ($styleAttributeValue == strtolower($style)) { | 
					
						
							|  |  |  |                 $styleAttributeValue = $style; | 
					
						
							|  |  |  |                 return true; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * pixel units to excel width units(units of 1/256th of a character width) | 
					
						
							|  |  |  |      * @param pxs | 
					
						
							|  |  |  |      * @return | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     protected static function _pixel2WidthUnits($pxs) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-17 13:00:02 +00:00
										 |  |  |         $UNIT_OFFSET_MAP = array(0, 36, 73, 109, 146, 182, 219); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 13:00:02 +00:00
										 |  |  |         $widthUnits = 256 * ($pxs / 7); | 
					
						
							|  |  |  |         $widthUnits += $UNIT_OFFSET_MAP[($pxs % 7)]; | 
					
						
							|  |  |  |         return $widthUnits; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * excel width units(units of 1/256th of a character width) to pixel units | 
					
						
							|  |  |  |      * @param widthUnits | 
					
						
							|  |  |  |      * @return | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     protected static function _widthUnits2Pixel($widthUnits) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $pixels = ($widthUnits / 256) * 7; | 
					
						
							|  |  |  |         $offsetWidthUnits = $widthUnits % 256; | 
					
						
							|  |  |  |         $pixels += round($offsetWidthUnits / (256 / 7)); | 
					
						
							|  |  |  |         return $pixels; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     protected static function _hex2str($hex) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         return chr(hexdec($hex[1])); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Loads PHPExcel from file into PHPExcel instance | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param     string         $pFilename | 
					
						
							|  |  |  |      * @param    PHPExcel    $objPHPExcel | 
					
						
							|  |  |  |      * @return     PHPExcel | 
					
						
							|  |  |  |      * @throws     PHPExcel_Reader_Exception | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function loadIntoExisting($pFilename, PHPExcel $objPHPExcel) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |         $fromFormats    = array('\-', '\ '); | 
					
						
							|  |  |  |         $toFormats      = array('-', ' '); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $underlineStyles = array ( | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |             PHPExcel_Style_Font::UNDERLINE_NONE, | 
					
						
							|  |  |  |             PHPExcel_Style_Font::UNDERLINE_DOUBLE, | 
					
						
							|  |  |  |             PHPExcel_Style_Font::UNDERLINE_DOUBLEACCOUNTING, | 
					
						
							|  |  |  |             PHPExcel_Style_Font::UNDERLINE_SINGLE, | 
					
						
							|  |  |  |             PHPExcel_Style_Font::UNDERLINE_SINGLEACCOUNTING | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $verticalAlignmentStyles = array ( | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |             PHPExcel_Style_Alignment::VERTICAL_BOTTOM, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::VERTICAL_TOP, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::VERTICAL_CENTER, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::VERTICAL_JUSTIFY | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $horizontalAlignmentStyles = array ( | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_GENERAL, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_LEFT, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_RIGHT, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_CENTER, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_CENTER_CONTINUOUS, | 
					
						
							|  |  |  |             PHPExcel_Style_Alignment::HORIZONTAL_JUSTIFY | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $timezoneObj = new DateTimeZone('Europe/London'); | 
					
						
							|  |  |  |         $GMT = new DateTimeZone('UTC'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Check if file exists
 | 
					
						
							|  |  |  |         if (!file_exists($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception("Could not open " . $pFilename . " for reading! File does not exist."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$this->canRead($pFilename)) { | 
					
						
							|  |  |  |             throw new PHPExcel_Reader_Exception($pFilename . " is an Invalid Spreadsheet file."); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $xml = simplexml_load_string($this->securityScan(file_get_contents($pFilename)), 'SimpleXMLElement', PHPExcel_Settings::getLibXmlLoaderOptions()); | 
					
						
							|  |  |  |         $namespaces = $xml->getNamespaces(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $docProps = $objPHPExcel->getProperties(); | 
					
						
							|  |  |  |         if (isset($xml->DocumentProperties[0])) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |             foreach ($xml->DocumentProperties[0] as $propertyName => $propertyValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 switch ($propertyName) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Title': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setTitle(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Subject': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setSubject(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Author': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setCreator(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Created': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         $creationDate = strtotime($propertyValue); | 
					
						
							|  |  |  |                         $docProps->setCreated($creationDate); | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'LastAuthor': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setLastModifiedBy(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'LastSaved': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         $lastSaveDate = strtotime($propertyValue); | 
					
						
							|  |  |  |                         $docProps->setModified($lastSaveDate); | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Company': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setCompany(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Category': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setCategory(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Manager': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setManager(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Keywords': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setKeywords(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Description': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                         $docProps->setDescription(self::_convertStringEncoding($propertyValue, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (isset($xml->CustomDocumentProperties)) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |             foreach ($xml->CustomDocumentProperties[0] as $propertyName => $propertyValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 $propertyAttributes = $propertyValue->attributes($namespaces['dt']); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                 $propertyName = preg_replace_callback('/_x([0-9a-z]{4})_/', 'PHPExcel_Reader_Excel2003XML::_hex2str', $propertyName); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_UNKNOWN; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 switch ((string) $propertyAttributes) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'string': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_STRING; | 
					
						
							|  |  |  |                         $propertyValue = trim($propertyValue); | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'boolean': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_BOOLEAN; | 
					
						
							|  |  |  |                         $propertyValue = (bool) $propertyValue; | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'integer': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_INTEGER; | 
					
						
							|  |  |  |                         $propertyValue = intval($propertyValue); | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'float': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_FLOAT; | 
					
						
							|  |  |  |                         $propertyValue = floatval($propertyValue); | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'dateTime.tz': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $propertyType = PHPExcel_DocumentProperties::PROPERTY_TYPE_DATE; | 
					
						
							|  |  |  |                         $propertyValue = strtotime(trim($propertyValue)); | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 $docProps->setCustomProperty($propertyName, $propertyValue, $propertyType); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($xml->Styles[0] as $style) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $style_ss = $style->attributes($namespaces['ss']); | 
					
						
							|  |  |  |             $styleID = (string) $style_ss['ID']; | 
					
						
							|  |  |  | //            echo 'Style ID = '.$styleID.'<br />';
 | 
					
						
							|  |  |  |             if ($styleID == 'Default') { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                 $this->styles['Default'] = array(); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                 $this->styles[$styleID] = $this->styles['Default']; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             foreach ($style as $styleType => $styleData) { | 
					
						
							|  |  |  |                 $styleAttributes = $styleData->attributes($namespaces['ss']); | 
					
						
							|  |  |  | //                echo $styleType.'<br />';
 | 
					
						
							|  |  |  |                 switch ($styleType) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Alignment': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo $styleAttributeKey.' = '.$styleAttributeValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                             $styleAttributeValue = (string) $styleAttributeValue; | 
					
						
							|  |  |  |                             switch ($styleAttributeKey) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Vertical': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     if (self::identifyFixedStyleValue($verticalAlignmentStyles, $styleAttributeValue)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         $this->styles[$styleID]['alignment']['vertical'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Horizontal': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     if (self::identifyFixedStyleValue($horizontalAlignmentStyles, $styleAttributeValue)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         $this->styles[$styleID]['alignment']['horizontal'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'WrapText': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['alignment']['wrap'] = true; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Borders': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleData->Border as $borderStyle) { | 
					
						
							|  |  |  |                             $borderAttributes = $borderStyle->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                             $thisBorder = array(); | 
					
						
							|  |  |  |                             foreach ($borderAttributes as $borderStyleKey => $borderStyleValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                    echo $borderStyleKey.' = '.$borderStyleValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                 switch ($borderStyleKey) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'LineStyle': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $thisBorder['style'] = PHPExcel_Style_Border::BORDER_MEDIUM; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                                $thisBorder['style'] = $borderStyleValue;
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Weight': | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                                $thisBorder['style'] = $borderStyleValue;
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Position': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $borderPosition = strtolower($borderStyleValue); | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Color': | 
					
						
							|  |  |  |                                         $borderColour = substr($borderStyleValue, 1); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $thisBorder['color']['rgb'] = $borderColour; | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                             if (!empty($thisBorder)) { | 
					
						
							|  |  |  |                                 if (($borderPosition == 'left') || ($borderPosition == 'right') || ($borderPosition == 'top') || ($borderPosition == 'bottom')) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['borders'][$borderPosition] = $thisBorder; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Font': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo $styleAttributeKey.' = '.$styleAttributeValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                             $styleAttributeValue = (string) $styleAttributeValue; | 
					
						
							|  |  |  |                             switch ($styleAttributeKey) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'FontName': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['font']['name'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Size': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['font']['size'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Color': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['font']['color']['rgb'] = substr($styleAttributeValue, 1); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Bold': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['font']['bold'] = true; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Italic': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['font']['italic'] = true; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Underline': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     if (self::identifyFixedStyleValue($underlineStyles, $styleAttributeValue)) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         $this->styles[$styleID]['font']['underline'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     } | 
					
						
							|  |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Interior': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo $styleAttributeKey.' = '.$styleAttributeValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                             switch ($styleAttributeKey) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Color': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                     $this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'NumberFormat': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo $styleAttributeKey.' = '.$styleAttributeValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                             $styleAttributeValue = str_replace($fromFormats, $toFormats, $styleAttributeValue); | 
					
						
							|  |  |  |                             switch ($styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 case 'Short Date': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     $styleAttributeValue = 'dd/mm/yyyy'; | 
					
						
							|  |  |  |                                     break; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             if ($styleAttributeValue > '') { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 $this->styles[$styleID]['numberformat']['code'] = $styleAttributeValue; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                     case 'Protection': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         foreach ($styleAttributes as $styleAttributeKey => $styleAttributeValue) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo $styleAttributeKey.' = '.$styleAttributeValue.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  | //            print_r($this->styles[$styleID]);
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //            echo '<hr />';
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | //        echo '<hr />';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $worksheetID = 0; | 
					
						
							|  |  |  |         $xml_ss = $xml->children($namespaces['ss']); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |         foreach ($xml_ss->Worksheet as $worksheet) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             $worksheet_ss = $worksheet->attributes($namespaces['ss']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if ((isset($this->_loadSheetsOnly)) && (isset($worksheet_ss['Name'])) && | 
					
						
							|  |  |  |                 (!in_array($worksheet_ss['Name'], $this->_loadSheetsOnly))) { | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  | //            echo '<h3>Worksheet: ', $worksheet_ss['Name'],'<h3>';
 | 
					
						
							| 
									
										
										
										
											2010-12-28 22:38:20 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             // Create new Worksheet
 | 
					
						
							|  |  |  |             $objPHPExcel->createSheet(); | 
					
						
							|  |  |  |             $objPHPExcel->setActiveSheetIndex($worksheetID); | 
					
						
							|  |  |  |             if (isset($worksheet_ss['Name'])) { | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                 $worksheetName = self::_convertStringEncoding((string) $worksheet_ss['Name'], $this->charSet); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                 //    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 09:22:28 +00:00
										 |  |  |                 $objPHPExcel->getActiveSheet()->setTitle($worksheetName, false); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $columnID = 'A'; | 
					
						
							|  |  |  |             if (isset($worksheet->Table->Column)) { | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 foreach ($worksheet->Table->Column as $columnData) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $columnData_ss = $columnData->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                     if (isset($columnData_ss['Index'])) { | 
					
						
							|  |  |  |                         $columnID = PHPExcel_Cell::stringFromColumnIndex($columnData_ss['Index']-1); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if (isset($columnData_ss['Width'])) { | 
					
						
							|  |  |  |                         $columnWidth = $columnData_ss['Width']; | 
					
						
							|  |  |  | //                        echo '<b>Setting column width for '.$columnID.' to '.$columnWidth.'</b><br />';
 | 
					
						
							|  |  |  |                         $objPHPExcel->getActiveSheet()->getColumnDimension($columnID)->setWidth($columnWidth / 5.4); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     ++$columnID; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $rowID = 1; | 
					
						
							|  |  |  |             if (isset($worksheet->Table->Row)) { | 
					
						
							| 
									
										
										
										
											2014-11-26 22:40:49 +00:00
										 |  |  |                 $additionalMergedCells = 0; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                 foreach ($worksheet->Table->Row as $rowData) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     $rowHasData = false; | 
					
						
							|  |  |  |                     $row_ss = $rowData->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                     if (isset($row_ss['Index'])) { | 
					
						
							|  |  |  |                         $rowID = (integer) $row_ss['Index']; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  | //                    echo '<b>Row '.$rowID.'</b><br />';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                     $columnID = 'A'; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                     foreach ($rowData->Cell as $cell) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         $cell_ss = $cell->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                         if (isset($cell_ss['Index'])) { | 
					
						
							|  |  |  |                             $columnID = PHPExcel_Cell::stringFromColumnIndex($cell_ss['Index']-1); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         $cellRange = $columnID.$rowID; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                         if ($this->getReadFilter() !== null) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if (!$this->getReadFilter()->readCell($columnID, $rowID, $worksheetName)) { | 
					
						
							|  |  |  |                                 continue; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if ((isset($cell_ss['MergeAcross'])) || (isset($cell_ss['MergeDown']))) { | 
					
						
							|  |  |  |                             $columnTo = $columnID; | 
					
						
							|  |  |  |                             if (isset($cell_ss['MergeAcross'])) { | 
					
						
							| 
									
										
										
										
											2014-11-26 22:40:49 +00:00
										 |  |  |                                 $additionalMergedCells += (int)$cell_ss['MergeAcross']; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 $columnTo = PHPExcel_Cell::stringFromColumnIndex(PHPExcel_Cell::columnIndexFromString($columnID) + $cell_ss['MergeAcross'] -1); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             $rowTo = $rowID; | 
					
						
							|  |  |  |                             if (isset($cell_ss['MergeDown'])) { | 
					
						
							|  |  |  |                                 $rowTo = $rowTo + $cell_ss['MergeDown']; | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             $cellRange .= ':'.$columnTo.$rowTo; | 
					
						
							|  |  |  |                             $objPHPExcel->getActiveSheet()->mergeCells($cellRange); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         $cellIsSet = $hasCalculatedValue = false; | 
					
						
							|  |  |  |                         $cellDataFormula = ''; | 
					
						
							|  |  |  |                         if (isset($cell_ss['Formula'])) { | 
					
						
							|  |  |  |                             $cellDataFormula = $cell_ss['Formula']; | 
					
						
							|  |  |  |                             // added this as a check for array formulas
 | 
					
						
							|  |  |  |                             if (isset($cell_ss['ArrayRange'])) { | 
					
						
							|  |  |  |                                 $cellDataCSEFormula = $cell_ss['ArrayRange']; | 
					
						
							|  |  |  | //                                echo "found an array formula at ".$columnID.$rowID."<br />";
 | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             $hasCalculatedValue = true; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($cell->Data)) { | 
					
						
							|  |  |  |                             $cellValue = $cellData = $cell->Data; | 
					
						
							|  |  |  |                             $type = PHPExcel_Cell_DataType::TYPE_NULL; | 
					
						
							|  |  |  |                             $cellData_ss = $cellData->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                             if (isset($cellData_ss['Type'])) { | 
					
						
							|  |  |  |                                 $cellDataType = $cellData_ss['Type']; | 
					
						
							|  |  |  |                                 switch ($cellDataType) { | 
					
						
							|  |  |  |                                     /* | 
					
						
							|  |  |  |                                     const TYPE_STRING        = 's'; | 
					
						
							|  |  |  |                                     const TYPE_FORMULA        = 'f'; | 
					
						
							|  |  |  |                                     const TYPE_NUMERIC        = 'n'; | 
					
						
							|  |  |  |                                     const TYPE_BOOL            = 'b'; | 
					
						
							|  |  |  |                                     const TYPE_NULL            = 'null'; | 
					
						
							|  |  |  |                                     const TYPE_INLINE        = 'inlineStr'; | 
					
						
							|  |  |  |                                     const TYPE_ERROR        = 'e'; | 
					
						
							|  |  |  |                                     */ | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'String': | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                         $cellValue = self::_convertStringEncoding($cellValue, $this->charSet); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $type = PHPExcel_Cell_DataType::TYPE_STRING; | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Number': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; | 
					
						
							|  |  |  |                                         $cellValue = (float) $cellValue; | 
					
						
							|  |  |  |                                         if (floor($cellValue) == $cellValue) { | 
					
						
							|  |  |  |                                             $cellValue = (integer) $cellValue; | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Boolean': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $type = PHPExcel_Cell_DataType::TYPE_BOOL; | 
					
						
							|  |  |  |                                         $cellValue = ($cellValue != 0); | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'DateTime': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $type = PHPExcel_Cell_DataType::TYPE_NUMERIC; | 
					
						
							|  |  |  |                                         $cellValue = PHPExcel_Shared_Date::PHPToExcel(strtotime($cellValue)); | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                     case 'Error': | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                         $type = PHPExcel_Cell_DataType::TYPE_ERROR; | 
					
						
							|  |  |  |                                         break; | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                             if ($hasCalculatedValue) { | 
					
						
							|  |  |  | //                                echo 'FORMULA<br />';
 | 
					
						
							|  |  |  |                                 $type = PHPExcel_Cell_DataType::TYPE_FORMULA; | 
					
						
							|  |  |  |                                 $columnNumber = PHPExcel_Cell::columnIndexFromString($columnID); | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                 if (substr($cellDataFormula, 0, 3) == 'of:') { | 
					
						
							|  |  |  |                                     $cellDataFormula = substr($cellDataFormula, 3); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  | //                                    echo 'Before: ', $cellDataFormula,'<br />';
 | 
					
						
							|  |  |  |                                     $temp = explode('"', $cellDataFormula); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     $key = false; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                     foreach ($temp as &$value) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Only replace in alternate array entries (i.e. non-quoted blocks)
 | 
					
						
							|  |  |  |                                         if ($key = !$key) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             $value = str_replace(array('[.', '.', ']'), '', $value); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } else { | 
					
						
							|  |  |  |                                     //    Convert R1C1 style references to A1 style references (but only when not quoted)
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  | //                                    echo 'Before: ', $cellDataFormula,'<br />';
 | 
					
						
							|  |  |  |                                     $temp = explode('"', $cellDataFormula); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                     $key = false; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                     foreach ($temp as &$value) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                         //    Only replace in alternate array entries (i.e. non-quoted blocks)
 | 
					
						
							|  |  |  |                                         if ($key = !$key) { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                             preg_match_all('/(R(\[?-?\d*\]?))(C(\[?-?\d*\]?))/', $value, $cellReferences, PREG_SET_ORDER + PREG_OFFSET_CAPTURE); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             //    Reverse the matches array, otherwise all our offsets will become incorrect if we modify our way
 | 
					
						
							|  |  |  |                                             //        through the formula from left to right. Reversing means that we work right to left.through
 | 
					
						
							|  |  |  |                                             //        the formula
 | 
					
						
							|  |  |  |                                             $cellReferences = array_reverse($cellReferences); | 
					
						
							|  |  |  |                                             //    Loop through each R1C1 style reference in turn, converting it to its A1 style equivalent,
 | 
					
						
							|  |  |  |                                             //        then modify the formula to use that new reference
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                             foreach ($cellReferences as $cellReference) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 $rowReference = $cellReference[2][0]; | 
					
						
							|  |  |  |                                                 //    Empty R reference is the current row
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 if ($rowReference == '') { | 
					
						
							|  |  |  |                                                     $rowReference = $rowID; | 
					
						
							|  |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 //    Bracketed R references are relative to the current row
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 if ($rowReference{0} == '[') { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     $rowReference = $rowID + trim($rowReference, '[]'); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 $columnReference = $cellReference[4][0]; | 
					
						
							|  |  |  |                                                 //    Empty C reference is the current column
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 if ($columnReference == '') { | 
					
						
							|  |  |  |                                                     $columnReference = $columnNumber; | 
					
						
							|  |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 //    Bracketed C references are relative to the current column
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 if ($columnReference{0} == '[') { | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                     $columnReference = $columnNumber + trim($columnReference, '[]'); | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                                 } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                                 $A1CellReference = PHPExcel_Cell::stringFromColumnIndex($columnReference-1).$rowReference; | 
					
						
							| 
									
										
										
										
											2015-05-17 09:22:28 +00:00
										 |  |  |                                                 $value = substr_replace($value, $A1CellReference, $cellReference[0][1], strlen($cellReference[0][0])); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                             } | 
					
						
							|  |  |  |                                         } | 
					
						
							|  |  |  |                                     } | 
					
						
							|  |  |  |                                 } | 
					
						
							|  |  |  |                                 unset($value); | 
					
						
							|  |  |  |                                 //    Then rebuild the formula string
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                                 $cellDataFormula = implode('"', $temp); | 
					
						
							|  |  |  | //                                echo 'After: ', $cellDataFormula,'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //                            echo 'Cell '.$columnID.$rowID.' is a '.$type.' with a value of '.(($hasCalculatedValue) ? $cellDataFormula : $cellValue).'<br />';
 | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  |                             $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setValueExplicit((($hasCalculatedValue) ? $cellDataFormula : $cellValue), $type); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             if ($hasCalculatedValue) { | 
					
						
							|  |  |  | //                                echo 'Formula result is '.$cellValue.'<br />';
 | 
					
						
							|  |  |  |                                 $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setCalculatedValue($cellValue); | 
					
						
							|  |  |  |                             } | 
					
						
							|  |  |  |                             $cellIsSet = $rowHasData = true; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (isset($cell->Comment)) { | 
					
						
							|  |  |  | //                            echo '<b>comment found</b><br />';
 | 
					
						
							|  |  |  |                             $commentAttributes = $cell->Comment->attributes($namespaces['ss']); | 
					
						
							|  |  |  |                             $author = 'unknown'; | 
					
						
							|  |  |  |                             if (isset($commentAttributes->Author)) { | 
					
						
							|  |  |  |                                 $author = (string)$commentAttributes->Author; | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  | //                                echo 'Author: ', $author,'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                             $node = $cell->Comment->Data->asXML(); | 
					
						
							|  |  |  | //                            $annotation = str_replace('html:','',substr($node,49,-10));
 | 
					
						
							|  |  |  | //                            echo $annotation,'<br />';
 | 
					
						
							|  |  |  |                             $annotation = strip_tags($node); | 
					
						
							| 
									
										
										
										
											2015-05-13 10:27:01 +00:00
										 |  |  | //                            echo 'Annotation: ', $annotation,'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                             $objPHPExcel->getActiveSheet()->getComment($columnID.$rowID)->setAuthor(self::_convertStringEncoding($author, $this->charSet))->setText($this->_parseRichText($annotation)); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                         if (($cellIsSet) && (isset($cell_ss['StyleID']))) { | 
					
						
							|  |  |  |                             $style = (string) $cell_ss['StyleID']; | 
					
						
							|  |  |  | //                            echo 'Cell style for '.$columnID.$rowID.' is '.$style.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                             if ((isset($this->styles[$style])) && (!empty($this->styles[$style]))) { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo 'Cell '.$columnID.$rowID.'<br />';
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  | //                                print_r($this->styles[$style]);
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  | //                                echo '<br />';
 | 
					
						
							|  |  |  |                                 if (!$objPHPExcel->getActiveSheet()->cellExists($columnID.$rowID)) { | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |                                     $objPHPExcel->getActiveSheet()->getCell($columnID.$rowID)->setValue(null); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                                 } | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |                                 $objPHPExcel->getActiveSheet()->getStyle($cellRange)->applyFromArray($this->styles[$style]); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         ++$columnID; | 
					
						
							| 
									
										
										
										
											2014-11-26 22:24:53 +00:00
										 |  |  |                         while ($additionalMergedCells > 0) { | 
					
						
							|  |  |  |                             ++$columnID; | 
					
						
							|  |  |  |                             $additionalMergedCells--; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     } | 
					
						
							| 
									
										
										
										
											2011-01-21 13:11:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     if ($rowHasData) { | 
					
						
							|  |  |  |                         if (isset($row_ss['StyleID'])) { | 
					
						
							|  |  |  |                             $rowStyle = $row_ss['StyleID']; | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                         if (isset($row_ss['Height'])) { | 
					
						
							|  |  |  |                             $rowHeight = $row_ss['Height']; | 
					
						
							|  |  |  | //                            echo '<b>Setting row height to '.$rowHeight.'</b><br />';
 | 
					
						
							|  |  |  |                             $objPHPExcel->getActiveSheet()->getRowDimension($rowID)->setRowHeight($rowHeight); | 
					
						
							|  |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2010-12-28 22:38:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |                     ++$rowID; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             ++$worksheetID; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         // Return
 | 
					
						
							|  |  |  |         return $objPHPExcel; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-31 19:17:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     protected static function _convertStringEncoding($string, $charset) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         if ($charset != 'UTF-8') { | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |             return PHPExcel_Shared_String::ConvertEncoding($string, 'UTF-8', $charset); | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         return $string; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-03-04 14:39:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-31 19:17:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 11:04:38 +00:00
										 |  |  |     protected function _parseRichText($is = '') | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         $value = new PHPExcel_RichText(); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:11:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:39:04 +00:00
										 |  |  |         $value->createText(self::_convertStringEncoding($is, $this->charSet)); | 
					
						
							| 
									
										
										
										
											2011-01-21 13:11:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 21:38:52 +00:00
										 |  |  |         return $value; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-26 19:14:53 +00:00
										 |  |  | } |