123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- <?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.
- *
- * @link https://github.com/PHPOffice/PHPWord
- * @copyright 2010-2014 PHPWord contributors
- * @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
- */
-
- namespace PhpOffice\PhpWord\Writer\Word2007\Part;
-
- use PhpOffice\PhpWord\Settings as PhpWordSettings;
- use PhpOffice\PhpWord\Shared\XMLWriter;
- use PhpOffice\PhpWord\Style;
- use PhpOffice\PhpWord\Style\Font as FontStyle;
- use PhpOffice\PhpWord\Style\Paragraph as ParagraphStyle;
- use PhpOffice\PhpWord\Style\Table as TableStyle;
- use PhpOffice\PhpWord\Writer\Word2007\Style\Font as FontStyleWriter;
- use PhpOffice\PhpWord\Writer\Word2007\Style\Paragraph as ParagraphStyleWriter;
- use PhpOffice\PhpWord\Writer\Word2007\Style\Table as TableStyleWriter;
-
- /**
- * Word2007 styles part writer: word/styles.xml
- *
- * @todo Do something with the numbering style introduced in 0.10.0
- * @SuppressWarnings(PHPMD.UnusedPrivateMethod) For writeFontStyle, writeParagraphStyle, and writeTableStyle
- */
- class Styles extends AbstractPart
- {
- /**
- * Write part
- *
- * @return string
- */
- public function write()
- {
- $xmlWriter = $this->getXmlWriter();
-
- $xmlWriter->startDocument('1.0', 'UTF-8', 'yes');
- $xmlWriter->startElement('w:styles');
- $xmlWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships');
- $xmlWriter->writeAttribute('xmlns:w', 'http://schemas.openxmlformats.org/wordprocessingml/2006/main');
-
- // Write default styles
- $styles = Style::getStyles();
- $this->writeDefaultStyles($xmlWriter, $styles);
-
- // Write styles
- if (count($styles) > 0) {
- foreach ($styles as $styleName => $style) {
- if ($styleName == 'Normal') {
- continue;
- }
-
- // Get style class and execute if the private method exists
- $styleClass = substr(get_class($style), strrpos(get_class($style), '\\') + 1);
- $method = "write{$styleClass}Style";
- if (method_exists($this, $method)) {
- $this->$method($xmlWriter, $styleName, $style);
- }
- }
- }
-
- $xmlWriter->endElement(); // w:styles
-
- return $xmlWriter->getData();
- }
-
- /**
- * Write default font and other default styles.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param \PhpOffice\PhpWord\Style\AbstractStyle[] $styles
- * @return void
- */
- private function writeDefaultStyles(XMLWriter $xmlWriter, $styles)
- {
- $fontName = PhpWordSettings::getDefaultFontName();
- $fontSize = PhpWordSettings::getDefaultFontSize();
-
- // Default font
- $xmlWriter->startElement('w:docDefaults');
- $xmlWriter->startElement('w:rPrDefault');
- $xmlWriter->startElement('w:rPr');
- $xmlWriter->startElement('w:rFonts');
- $xmlWriter->writeAttribute('w:ascii', $fontName);
- $xmlWriter->writeAttribute('w:hAnsi', $fontName);
- $xmlWriter->writeAttribute('w:eastAsia', $fontName);
- $xmlWriter->writeAttribute('w:cs', $fontName);
- $xmlWriter->endElement(); // w:rFonts
- $xmlWriter->startElement('w:sz');
- $xmlWriter->writeAttribute('w:val', $fontSize * 2);
- $xmlWriter->endElement(); // w:sz
- $xmlWriter->startElement('w:szCs');
- $xmlWriter->writeAttribute('w:val', $fontSize * 2);
- $xmlWriter->endElement(); // w:szCs
- $xmlWriter->endElement(); // w:rPr
- $xmlWriter->endElement(); // w:rPrDefault
- $xmlWriter->endElement(); // w:docDefaults
-
- // Normal style
- $xmlWriter->startElement('w:style');
- $xmlWriter->writeAttribute('w:type', 'paragraph');
- $xmlWriter->writeAttribute('w:default', '1');
- $xmlWriter->writeAttribute('w:styleId', 'Normal');
- $xmlWriter->startElement('w:name');
- $xmlWriter->writeAttribute('w:val', 'Normal');
- $xmlWriter->endElement(); // w:name
- if (isset($styles['Normal'])) {
- $styleWriter = new ParagraphStyleWriter($xmlWriter, $styles['Normal']);
- $styleWriter->write();
- }
- $xmlWriter->endElement(); // w:style
-
- // FootnoteReference style
- if (!isset($styles['FootnoteReference'])) {
- $xmlWriter->startElement('w:style');
- $xmlWriter->writeAttribute('w:type', 'character');
- $xmlWriter->writeAttribute('w:styleId', 'FootnoteReference');
- $xmlWriter->startElement('w:name');
- $xmlWriter->writeAttribute('w:val', 'Footnote Reference');
- $xmlWriter->endElement(); // w:name
- $xmlWriter->writeElement('w:semiHidden');
- $xmlWriter->writeElement('w:unhideWhenUsed');
- $xmlWriter->startElement('w:rPr');
- $xmlWriter->startElement('w:vertAlign');
- $xmlWriter->writeAttribute('w:val', 'superscript');
- $xmlWriter->endElement(); // w:vertAlign
- $xmlWriter->endElement(); // w:rPr
- $xmlWriter->endElement(); // w:style
- }
- }
-
- /**
- * Write font style.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param string $styleName
- * @param \PhpOffice\PhpWord\Style\Font $style
- * @return void
- */
- private function writeFontStyle(XMLWriter $xmlWriter, $styleName, FontStyle $style)
- {
- $paragraphStyle = $style->getParagraph();
- $styleType = $style->getStyleType();
- $type = ($styleType == 'title') ? 'paragraph' : 'character';
- if (!is_null($paragraphStyle)) {
- $type = 'paragraph';
- }
-
- $xmlWriter->startElement('w:style');
- $xmlWriter->writeAttribute('w:type', $type);
-
- // Heading style
- if ($styleType == 'title') {
- $arrStyle = explode('_', $styleName);
- $styleId = 'Heading' . $arrStyle[1];
- $styleName = 'heading ' . $arrStyle[1];
- $styleLink = 'Heading' . $arrStyle[1] . 'Char';
- $xmlWriter->writeAttribute('w:styleId', $styleId);
-
- $xmlWriter->startElement('w:link');
- $xmlWriter->writeAttribute('w:val', $styleLink);
- $xmlWriter->endElement();
- }
-
- // Style name
- $xmlWriter->startElement('w:name');
- $xmlWriter->writeAttribute('w:val', $styleName);
- $xmlWriter->endElement();
-
- // Parent style
- $xmlWriter->writeElementIf(!is_null($paragraphStyle), 'w:basedOn', 'w:val', 'Normal');
-
- // w:pPr
- if (!is_null($paragraphStyle)) {
- $styleWriter = new ParagraphStyleWriter($xmlWriter, $paragraphStyle);
- $styleWriter->write();
- }
-
- // w:rPr
- $styleWriter = new FontStyleWriter($xmlWriter, $style);
- $styleWriter->write();
-
- $xmlWriter->endElement();
- }
-
- /**
- * Write paragraph style.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param string $styleName
- * @param \PhpOffice\PhpWord\Style\Paragraph $style
- * @return void
- */
- private function writeParagraphStyle(XMLWriter $xmlWriter, $styleName, ParagraphStyle $style)
- {
- $xmlWriter->startElement('w:style');
- $xmlWriter->writeAttribute('w:type', 'paragraph');
- $xmlWriter->writeAttribute('w:customStyle', '1');
- $xmlWriter->writeAttribute('w:styleId', $styleName);
- $xmlWriter->startElement('w:name');
- $xmlWriter->writeAttribute('w:val', $styleName);
- $xmlWriter->endElement();
-
- // Parent style
- $basedOn = $style->getBasedOn();
- $xmlWriter->writeElementIf(!is_null($basedOn), 'w:basedOn', 'w:val', $basedOn);
-
- // Next paragraph style
- $next = $style->getNext();
- $xmlWriter->writeElementIf(!is_null($next), 'w:next', 'w:val', $next);
-
- // w:pPr
- $styleWriter = new ParagraphStyleWriter($xmlWriter, $style);
- $styleWriter->write();
-
- $xmlWriter->endElement();
- }
-
- /**
- * Write table style.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param string $styleName
- * @param \PhpOffice\PhpWord\Style\Table $style
- * @return void
- */
- private function writeTableStyle(XMLWriter $xmlWriter, $styleName, TableStyle $style)
- {
- $xmlWriter->startElement('w:style');
- $xmlWriter->writeAttribute('w:type', 'table');
- $xmlWriter->writeAttribute('w:customStyle', '1');
- $xmlWriter->writeAttribute('w:styleId', $styleName);
- $xmlWriter->startElement('w:name');
- $xmlWriter->writeAttribute('w:val', $styleName);
- $xmlWriter->endElement();
- $xmlWriter->startElement('w:uiPriority');
- $xmlWriter->writeAttribute('w:val', '99');
- $xmlWriter->endElement();
-
- $styleWriter = new TableStyleWriter($xmlWriter, $style);
- $styleWriter->write();
-
- $xmlWriter->endElement(); // w:style
- }
- }
|