1220 lines
54 KiB
PHP
Executable File
1220 lines
54 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* PHPExcel
|
|
*
|
|
* Copyright (c) 2006 - 2015 PHPExcel
|
|
*
|
|
* 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_Writer_Excel2007
|
|
* @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
* @version ##VERSION##, ##DATE##
|
|
*/
|
|
|
|
|
|
/**
|
|
* PHPExcel_Writer_Excel2007_Worksheet
|
|
*
|
|
* @category PHPExcel
|
|
* @package PHPExcel_Writer_Excel2007
|
|
* @copyright Copyright (c) 2006 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
|
|
*/
|
|
class PHPExcel_Writer_Excel2007_Worksheet extends PHPExcel_Writer_Excel2007_WriterPart
|
|
{
|
|
/**
|
|
* Write worksheet to XML format
|
|
*
|
|
* @param PHPExcel_Worksheet $pSheet
|
|
* @param string[] $pStringTable
|
|
* @param boolean $includeCharts Flag indicating if we should write charts
|
|
* @return string XML Output
|
|
* @throws PHPExcel_Writer_Exception
|
|
*/
|
|
public function writeWorksheet($pSheet = null, $pStringTable = null, $includeCharts = false)
|
|
{
|
|
if (!is_null($pSheet)) {
|
|
// Create XML writer
|
|
$objWriter = null;
|
|
if ($this->getParentWriter()->getUseDiskCaching()) {
|
|
$objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_DISK, $this->getParentWriter()->getDiskCachingDirectory());
|
|
} else {
|
|
$objWriter = new PHPExcel_Shared_XMLWriter(PHPExcel_Shared_XMLWriter::STORAGE_MEMORY);
|
|
}
|
|
|
|
// XML header
|
|
$objWriter->startDocument('1.0', 'UTF-8', 'yes');
|
|
|
|
// Worksheet
|
|
$objWriter->startElement('worksheet');
|
|
$objWriter->writeAttribute('xml:space', 'preserve');
|
|
$objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main');
|
|
$objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships');
|
|
|
|
// sheetPr
|
|
$this->writeSheetPr($objWriter, $pSheet);
|
|
|
|
// Dimension
|
|
$this->writeDimension($objWriter, $pSheet);
|
|
|
|
// sheetViews
|
|
$this->writeSheetViews($objWriter, $pSheet);
|
|
|
|
// sheetFormatPr
|
|
$this->writeSheetFormatPr($objWriter, $pSheet);
|
|
|
|
// cols
|
|
$this->writeCols($objWriter, $pSheet);
|
|
|
|
// sheetData
|
|
$this->writeSheetData($objWriter, $pSheet, $pStringTable);
|
|
|
|
// sheetProtection
|
|
$this->writeSheetProtection($objWriter, $pSheet);
|
|
|
|
// protectedRanges
|
|
$this->writeProtectedRanges($objWriter, $pSheet);
|
|
|
|
// autoFilter
|
|
$this->writeAutoFilter($objWriter, $pSheet);
|
|
|
|
// mergeCells
|
|
$this->writeMergeCells($objWriter, $pSheet);
|
|
|
|
// conditionalFormatting
|
|
$this->writeConditionalFormatting($objWriter, $pSheet);
|
|
|
|
// dataValidations
|
|
$this->writeDataValidations($objWriter, $pSheet);
|
|
|
|
// hyperlinks
|
|
$this->writeHyperlinks($objWriter, $pSheet);
|
|
|
|
// Print options
|
|
$this->writePrintOptions($objWriter, $pSheet);
|
|
|
|
// Page margins
|
|
$this->writePageMargins($objWriter, $pSheet);
|
|
|
|
// Page setup
|
|
$this->writePageSetup($objWriter, $pSheet);
|
|
|
|
// Header / footer
|
|
$this->writeHeaderFooter($objWriter, $pSheet);
|
|
|
|
// Breaks
|
|
$this->writeBreaks($objWriter, $pSheet);
|
|
|
|
// Drawings and/or Charts
|
|
$this->writeDrawings($objWriter, $pSheet, $includeCharts);
|
|
|
|
// LegacyDrawing
|
|
$this->writeLegacyDrawing($objWriter, $pSheet);
|
|
|
|
// LegacyDrawingHF
|
|
$this->writeLegacyDrawingHF($objWriter, $pSheet);
|
|
|
|
$objWriter->endElement();
|
|
|
|
// Return
|
|
return $objWriter->getData();
|
|
} else {
|
|
throw new PHPExcel_Writer_Exception("Invalid PHPExcel_Worksheet object passed.");
|
|
}
|
|
}
|
|
|
|
/**
|
<