D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
html
/
novonote
/
adm
/
phpoffice
/
phpword
/
Writer
/
Filename :
EPub3.php
back
Copy
<?php /** * This file is part of PHPWord - A pure PHP library for reading and writing * word processing documents. * * PHPWord is free software distributed under the terms of the GNU Lesser * General Public License version 3 as published by the Free Software Foundation. * * For the full copyright and license information, please read the LICENSE * file that was distributed with this source code. For the full list of * contributors, visit https://github.com/PHPOffice/PHPWord/contributors. * * @see https://github.com/PHPOffice/PHPWord * * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3 */ namespace PhpOffice\PhpWord\Writer; use PhpOffice\PhpWord\PhpWord; use PhpOffice\PhpWord\Writer\EPub3\Part\AbstractPart; /** * EPub3 writer. */ class EPub3 extends AbstractWriter implements WriterInterface { /** * Create new EPub3 writer. */ public function __construct(?PhpWord $phpWord = null) { // Assign PhpWord $this->setPhpWord($phpWord); // Create parts $this->parts = [ 'Mimetype' => 'mimetype', 'Content' => 'content.opf', 'Toc' => 'toc.ncx', 'Styles' => 'styles.css', 'Manifest' => 'META-INF/container.xml', 'Nav' => 'nav.xhtml', 'ContentXhtml' => 'content.xhtml', ]; foreach (array_keys($this->parts) as $partName) { $partClass = static::class . '\\Part\\' . $partName; if (class_exists($partClass)) { /** @var WriterPartInterface $part */ $part = new $partClass($partName === 'Content' || $partName === 'ContentXhtml' ? $phpWord : null); $part->setParentWriter($this); $this->writerParts[strtolower($partName)] = $part; } } // Set package paths $this->mediaPaths = ['image' => 'Images/', 'object' => 'Objects/']; } /** * Save PhpWord to file. */ public function save(string $filename): void { $filename = $this->getTempFile($filename); $zip = $this->getZipArchive($filename); // Add mimetype first without compression $zip->addFromString('mimetype', 'application/epub+zip'); $zip->addEmptyDir('META-INF'); // Add other files foreach ($this->parts as $partName => $fileName) { if ($fileName === '') { continue; } $part = $this->getWriterPart($partName); if (!$part instanceof AbstractPart) { continue; } $zip->addFromString($fileName, $part->write()); } // Close zip archive $zip->close(); // Cleanup temp file $this->cleanupTempFile(); } }