2012-05-06 18:25:40 +02:00
|
|
|
<?php
|
|
|
|
|
/**
|
2014-03-26 16:33:20 +07:00
|
|
|
* PHPWord
|
2012-05-06 18:25:40 +02:00
|
|
|
*
|
2014-03-27 23:55:06 +07:00
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
|
|
|
* @copyright 2014 PHPWord
|
|
|
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
2012-05-06 18:25:40 +02:00
|
|
|
*/
|
2014-03-12 10:09:42 -04:00
|
|
|
|
2014-03-22 10:06:08 +04:00
|
|
|
namespace PhpOffice\PhpWord\Writer;
|
|
|
|
|
|
2014-04-11 16:16:22 +07:00
|
|
|
use PhpOffice\PhpWord\Element\Section;
|
2014-03-31 01:13:02 +07:00
|
|
|
use PhpOffice\PhpWord\Exception\Exception;
|
2014-03-22 10:06:08 +04:00
|
|
|
use PhpOffice\PhpWord\Media;
|
2014-04-11 16:16:22 +07:00
|
|
|
use PhpOffice\PhpWord\PhpWord;
|
2014-03-22 10:06:08 +04:00
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\ContentTypes;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\DocProps;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Document;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Footer;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Header;
|
2014-04-11 16:16:22 +07:00
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Notes;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Numbering;
|
|
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Rels;
|
2014-03-22 10:06:08 +04:00
|
|
|
use PhpOffice\PhpWord\Writer\Word2007\Styles;
|
|
|
|
|
|
2014-03-24 00:26:10 +07:00
|
|
|
/**
|
|
|
|
|
* Word2007 writer
|
|
|
|
|
*/
|
2014-04-08 00:23:49 +07:00
|
|
|
class Word2007 extends AbstractWriter implements WriterInterface
|
2013-12-16 06:40:30 -05:00
|
|
|
{
|
2014-03-24 00:26:10 +07:00
|
|
|
/**
|
2014-04-05 19:02:49 +07:00
|
|
|
* Content types values
|
2014-03-24 00:26:10 +07:00
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
2014-04-05 19:02:49 +07:00
|
|
|
private $cTypes = array('default' => array(), 'override' => array());
|
2014-03-24 00:26:10 +07:00
|
|
|
|
|
|
|
|
/**
|
2014-04-05 19:02:49 +07:00
|
|
|
* Document relationship
|
2014-03-24 00:26:10 +07:00
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
2014-04-05 19:02:49 +07:00
|
|
|
private $docRels = array();
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2014-03-24 00:26:10 +07:00
|
|
|
/**
|
|
|
|
|
* Create new Word2007 writer
|
|
|
|
|
*
|
2014-03-30 18:51:25 +07:00
|
|
|
* @param PhpWord
|
2014-03-24 00:26:10 +07:00
|
|
|
*/
|
2014-03-22 10:06:08 +04:00
|
|
|
public function __construct(PhpWord $phpWord = null)
|
2013-12-16 06:40:30 -05:00
|
|
|
{
|
2014-03-30 16:31:01 +07:00
|
|
|
// Assign PhpWord
|
|
|
|
|
$this->setPhpWord($phpWord);
|
|
|
|
|
|
|
|
|
|
// Set writer parts
|
|
|
|
|
$this->writerParts['contenttypes'] = new ContentTypes();
|
|
|
|
|
$this->writerParts['rels'] = new Rels();
|
|
|
|
|
$this->writerParts['docprops'] = new DocProps();
|
|
|
|
|
$this->writerParts['document'] = new Document();
|
|
|
|
|
$this->writerParts['styles'] = new Styles();
|
2014-04-11 16:16:22 +07:00
|
|
|
$this->writerParts['numbering'] = new Numbering();
|
2014-03-30 16:31:01 +07:00
|
|
|
$this->writerParts['header'] = new Header();
|
|
|
|
|
$this->writerParts['footer'] = new Footer();
|
2014-04-09 21:35:55 +07:00
|
|
|
$this->writerParts['footnotes'] = new Notes();
|
|
|
|
|
$this->writerParts['endnotes'] = new Notes();
|
2014-03-30 16:31:01 +07:00
|
|
|
foreach ($this->writerParts as $writer) {
|
2013-12-16 06:40:30 -05:00
|
|
|
$writer->setParentWriter($this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-24 00:26:10 +07:00
|
|
|
/**
|
|
|
|
|
* Save document by name
|
|
|
|
|
*
|
2014-04-08 03:03:14 +07:00
|
|
|
* @param string $filename
|
2014-03-24 00:26:10 +07:00
|
|
|
*/
|
2014-04-08 03:03:14 +07:00
|
|
|
public function save($filename = null)
|
2013-12-16 06:40:30 -05:00
|
|
|
{
|
2014-03-30 16:31:01 +07:00
|
|
|
if (!is_null($this->phpWord)) {
|
2014-04-08 03:03:14 +07:00
|
|
|
$filename = $this->getTempFile($filename);
|
|
|
|
|
$objZip = $this->getZipArchive($filename);
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2014-04-05 19:02:49 +07:00
|
|
|
// Content types
|
|
|
|
|
$this->cTypes['default'] = array(
|
|
|
|
|
'rels' => 'application/vnd.openxmlformats-package.relationships+xml',
|
|
|
|
|
'xml' => 'application/xml',
|
|
|
|
|
);
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2014-04-05 19:02:49 +07:00
|
|
|
// Add section media files
|
|
|
|
|
$sectionMedia = Media::getElements('section');
|
|
|
|
|
if (!empty($sectionMedia)) {
|
|
|
|
|
$this->addFilesToPackage($objZip, $sectionMedia);
|
|
|
|
|
foreach ($sectionMedia as $element) {
|
|
|
|
|
$this->docRels[] = $element;
|
2013-12-16 06:40:30 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-04 00:29:57 +07:00
|
|
|
// Add header/footer media files & relations
|
|
|
|
|
$this->addHeaderFooterMedia($objZip, 'header');
|
|
|
|
|
$this->addHeaderFooterMedia($objZip, 'footer');
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2014-04-04 00:29:57 +07:00
|
|
|
// Add header/footer contents
|
2014-04-08 16:09:31 +07:00
|
|
|
$rId = Media::countElements('section') + 6; // @see Rels::writeDocRels for 6 first elements
|
2014-04-03 11:34:06 +07:00
|
|
|
$sections = $this->phpWord->getSections();
|
|
|
|
|
foreach ($sections as $section) {
|
2014-04-08 16:09:31 +07:00
|
|
|
$this->addHeaderFooterContent($section, $objZip, 'header', $rId);
|
|
|
|
|
$this->addHeaderFooterContent($section, $objZip, 'footer', $rId);
|
2013-12-16 06:40:30 -05:00
|
|
|
}
|
|
|
|
|
|
2014-04-09 21:35:55 +07:00
|
|
|
$this->addNotes($objZip, $rId, 'footnote');
|
|
|
|
|
$this->addNotes($objZip, $rId, 'endnote');
|
2014-03-07 23:08:09 +01:00
|
|
|
|
2013-12-16 06:40:30 -05:00
|
|
|
// Write dynamic files
|
2014-04-05 19:02:49 +07:00
|
|
|
$objZip->addFromString('[Content_Types].xml', $this->getWriterPart('contenttypes')->writeContentTypes($this->cTypes));
|
2014-04-03 21:03:10 +07:00
|
|
|
$objZip->addFromString('_rels/.rels', $this->getWriterPart('rels')->writeMainRels());
|
2014-03-30 16:31:01 +07:00
|
|
|
$objZip->addFromString('docProps/app.xml', $this->getWriterPart('docprops')->writeDocPropsApp($this->phpWord));
|
|
|
|
|
$objZip->addFromString('docProps/core.xml', $this->getWriterPart('docprops')->writeDocPropsCore($this->phpWord));
|
2014-04-05 19:02:49 +07:00
|
|
|
$objZip->addFromString('word/_rels/document.xml.rels', $this->getWriterPart('rels')->writeDocRels($this->docRels));
|
2014-03-30 16:31:01 +07:00
|
|
|
$objZip->addFromString('word/document.xml', $this->getWriterPart('document')->writeDocument($this->phpWord));
|
|
|
|
|
$objZip->addFromString('word/styles.xml', $this->getWriterPart('styles')->writeStyles($this->phpWord));
|
2014-04-11 16:16:22 +07:00
|
|
|
$objZip->addFromString('word/numbering.xml', $this->getWriterPart('numbering')->writeNumbering());
|
2013-12-16 06:40:30 -05:00
|
|
|
|
2012-05-06 18:25:40 +02:00
|
|
|
// Write static files
|
2014-03-23 12:07:29 -04:00
|
|
|
$objZip->addFile(__DIR__ . '/../_staticDocParts/settings.xml', 'word/settings.xml');
|
|
|
|
|
$objZip->addFile(__DIR__ . '/../_staticDocParts/theme1.xml', 'word/theme/theme1.xml');
|
|
|
|
|
$objZip->addFile(__DIR__ . '/../_staticDocParts/webSettings.xml', 'word/webSettings.xml');
|
|
|
|
|
$objZip->addFile(__DIR__ . '/../_staticDocParts/fontTable.xml', 'word/fontTable.xml');
|
2013-12-16 06:40:30 -05:00
|
|
|
|
|
|
|
|
// Close file
|
|
|
|
|
if ($objZip->close() === false) {
|
2014-04-08 03:03:14 +07:00
|
|
|
throw new Exception("Could not close zip file $filename.");
|
2013-12-16 06:40:30 -05:00
|
|
|
}
|
|
|
|
|
|
2014-03-30 16:31:01 +07:00
|
|
|
$this->cleanupTempFile();
|
2013-12-16 06:40:30 -05:00
|
|
|
} else {
|
2014-03-22 10:06:08 +04:00
|
|
|
throw new Exception("PhpWord object unassigned.");
|
2013-12-16 06:40:30 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-12 10:09:42 -04:00
|
|
|
/**
|
2014-04-05 19:02:49 +07:00
|
|
|
* Add section files to package
|
2014-03-24 00:26:10 +07:00
|
|
|
*
|
|
|
|
|
* @param mixed $objZip
|
2014-04-05 00:08:00 +07:00
|
|
|
* @param mixed $elements
|
2014-03-24 00:26:10 +07:00
|
|
|
*/
|
2014-04-04 00:29:57 +07:00
|
|
|
private function addFilesToPackage($objZip, $elements)
|
2013-12-16 06:40:30 -05:00
|
|
|
{
|
2014-04-04 00:29:57 +07:00
|
|
|
foreach ($elements as $element) {
|
2014-04-05 19:02:49 +07:00
|
|
|
// Do not add link
|
2014-04-04 00:29:57 +07:00
|
|
|
if ($element['type'] == 'link') {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2014-04-05 19:02:49 +07:00
|
|
|
// Retrieve remote image
|
2014-04-04 00:29:57 +07:00
|
|
|
if (isset($element['isMemImage']) && $element['isMemImage']) {
|
2014-04-05 19:02:49 +07:00
|
|
|
$image = call_user_func($element['createFunction'], $element['source']);
|
2014-04-04 00:29:57 +07:00
|
|
|
ob_start();
|
2014-04-05 19:02:49 +07:00
|
|
|
call_user_func($element['imageFunction'], $image);
|
2014-04-04 00:29:57 +07:00
|
|
|
$imageContents = ob_get_contents();
|
|
|
|
|
ob_end_clean();
|
|
|
|
|
$objZip->addFromString('word/' . $element['target'], $imageContents);
|
|
|
|
|
imagedestroy($image);
|
|
|
|
|
} else {
|
|
|
|
|
$objZip->addFile($element['source'], 'word/' . $element['target']);
|
2014-04-05 19:02:49 +07:00
|
|
|
}
|
|
|
|
|
// Register content types
|
|
|
|
|
if ($element['type'] == 'image') {
|
|
|
|
|
$imageExtension = $element['imageExtension'];
|
|
|
|
|
$imageType = $element['imageType'];
|
|
|
|
|
if (!array_key_exists($imageExtension, $this->cTypes['default'])) {
|
|
|
|
|
$this->cTypes['default'][$imageExtension] = $imageType;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if (!array_key_exists('bin', $this->cTypes['default'])) {
|
|
|
|
|
$this->cTypes['default']['bin'] = 'application/vnd.openxmlformats-officedocument.oleObject';
|
|
|
|
|
}
|
2014-04-04 00:29:57 +07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-04-05 19:02:49 +07:00
|
|
|
* Add header/footer media files
|
2014-04-05 00:08:00 +07:00
|
|
|
*
|
|
|
|
|
* @param mixed $objZip
|
|
|
|
|
* @param string $docPart
|
2014-04-04 00:29:57 +07:00
|
|
|
*/
|
|
|
|
|
private function addHeaderFooterMedia($objZip, $docPart)
|
|
|
|
|
{
|
2014-04-05 19:02:49 +07:00
|
|
|
$elements = Media::getElements($docPart);
|
2014-04-04 00:29:57 +07:00
|
|
|
if (!empty($elements)) {
|
|
|
|
|
foreach ($elements as $file => $media) {
|
|
|
|
|
if (count($media) > 0) {
|
|
|
|
|
if (!empty($media)) {
|
|
|
|
|
$this->addFilesToPackage($objZip, $media);
|
|
|
|
|
}
|
2014-04-09 21:35:55 +07:00
|
|
|
$relsFile = "word/_rels/{$file}.xml.rels";
|
|
|
|
|
$objZip->addFromString($relsFile, $this->getWriterPart('rels')->writeMediaRels($media));
|
2014-04-04 00:29:57 +07:00
|
|
|
}
|
|
|
|
|
}
|
2013-12-16 06:40:30 -05:00
|
|
|
}
|
|
|
|
|
}
|
2014-04-05 19:02:49 +07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add header/footer content
|
|
|
|
|
*
|
2014-04-06 15:19:09 +07:00
|
|
|
* @param mixed $objZip
|
2014-04-05 19:02:49 +07:00
|
|
|
* @param string $elmType
|
2014-04-08 16:09:31 +07:00
|
|
|
* @param integer $rId
|
2014-04-05 19:02:49 +07:00
|
|
|
*/
|
2014-04-08 16:09:31 +07:00
|
|
|
private function addHeaderFooterContent(Section &$section, $objZip, $elmType, &$rId)
|
2014-04-05 19:02:49 +07:00
|
|
|
{
|
|
|
|
|
$getFunction = $elmType == 'header' ? 'getHeaders' : 'getFooters';
|
|
|
|
|
$writeFunction = $elmType == 'header' ? 'writeHeader' : 'writeFooter';
|
|
|
|
|
$elmCount = ($section->getSectionId() - 1) * 3;
|
|
|
|
|
$elmObjects = $section->$getFunction();
|
|
|
|
|
foreach ($elmObjects as $index => &$elmObject) {
|
|
|
|
|
$elmCount++;
|
2014-04-08 16:09:31 +07:00
|
|
|
$elmObject->setRelationId(++$rId);
|
2014-04-05 19:02:49 +07:00
|
|
|
$elmFile = "{$elmType}{$elmCount}.xml";
|
|
|
|
|
$objZip->addFromString("word/$elmFile", $this->getWriterPart($elmType)->$writeFunction($elmObject));
|
|
|
|
|
$this->cTypes['override']["/word/$elmFile"] = $elmType;
|
2014-04-08 16:09:31 +07:00
|
|
|
$this->docRels[] = array('target' => $elmFile, 'type' => $elmType, 'rID' => $rId);
|
2014-04-05 19:02:49 +07:00
|
|
|
}
|
|
|
|
|
}
|
2014-04-09 21:35:55 +07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add footnotes/endnotes
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $objZip
|
|
|
|
|
* @param integer $rId
|
2014-04-11 16:16:22 +07:00
|
|
|
* @param string $notesType
|
2014-04-09 21:35:55 +07:00
|
|
|
*/
|
|
|
|
|
private function addNotes($objZip, &$rId, $notesType = 'footnote')
|
|
|
|
|
{
|
|
|
|
|
$notesType = ($notesType == 'endnote') ? 'endnote' : 'footnote';
|
|
|
|
|
$notesTypes = "{$notesType}s";
|
|
|
|
|
$collection = 'PhpOffice\\PhpWord\\' . ucfirst($notesTypes);
|
|
|
|
|
$xmlFile = "{$notesTypes}.xml";
|
|
|
|
|
$relsFile = "word/_rels/{$xmlFile}.rels";
|
|
|
|
|
$xmlPath = "word/{$xmlFile}";
|
|
|
|
|
|
|
|
|
|
// Add footnotes media files, relations, and contents
|
|
|
|
|
if ($collection::countElements() > 0) {
|
|
|
|
|
$media = Media::getElements($notesType);
|
|
|
|
|
$elements = $collection::getElements();
|
|
|
|
|
$this->addFilesToPackage($objZip, $media);
|
|
|
|
|
if (!empty($media)) {
|
|
|
|
|
$objZip->addFromString($relsFile, $this->getWriterPart('rels')->writeMediaRels($media));
|
|
|
|
|
}
|
|
|
|
|
$objZip->addFromString($xmlPath, $this->getWriterPart($notesTypes)->writeNotes($elements, $notesTypes));
|
|
|
|
|
$this->cTypes['override']["/{$xmlPath}"] = $notesTypes;
|
|
|
|
|
$this->docRels[] = array('target' => $xmlFile, 'type' => $notesTypes, 'rID' => ++$rId);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-11 19:26:56 +07:00
|
|
|
}
|