123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <?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\Style;
-
- use PhpOffice\PhpWord\Shared\XMLWriter;
- use PhpOffice\PhpWord\Style\Alignment as AlignmentStyle;
- use PhpOffice\PhpWord\Style\Paragraph as ParagraphStyle;
- use PhpOffice\PhpWord\Style;
-
- /**
- * Paragraph style writer
- *
- * @since 0.10.0
- */
- class Paragraph extends AbstractStyle
- {
- /**
- * Without w:pPr
- *
- * @var bool
- */
- private $withoutPPR = false;
-
- /**
- * Is inline in element
- *
- * @var bool
- */
- private $isInline = false;
-
- /**
- * Write style.
- *
- * @return void
- */
- public function write()
- {
- $xmlWriter = $this->getXmlWriter();
-
- $isStyleName = $this->isInline && !is_null($this->style) && is_string($this->style);
- if ($isStyleName) {
- if (!$this->withoutPPR) {
- $xmlWriter->startElement('w:pPr');
- }
- $xmlWriter->startElement('w:pStyle');
- $xmlWriter->writeAttribute('w:val', $this->style);
- $xmlWriter->endElement();
- if (!$this->withoutPPR) {
- $xmlWriter->endElement();
- }
- } else {
- $this->writeStyle();
- }
- }
-
- /**
- * Write full style.
- *
- * @return void
- */
- private function writeStyle()
- {
- $style = $this->getStyle();
- if (!$style instanceof ParagraphStyle) {
- return;
- }
- $xmlWriter = $this->getXmlWriter();
- $styles = $style->getStyleValues();
-
- if (!$this->withoutPPR) {
- $xmlWriter->startElement('w:pPr');
- }
-
- // Style name
- if ($this->isInline === true) {
- $xmlWriter->writeElementIf($styles['name'] !== null, 'w:pStyle', 'w:val', $styles['name']);
- }
-
- // Alignment
- $styleWriter = new Alignment($xmlWriter, new AlignmentStyle(array('value' => $styles['alignment'])));
- $styleWriter->write();
-
- // Pagination
- $xmlWriter->writeElementIf($styles['pagination']['widowControl'] === false, 'w:widowControl', 'w:val', '0');
- $xmlWriter->writeElementIf($styles['pagination']['keepNext'] === true, 'w:keepNext', 'w:val', '1');
- $xmlWriter->writeElementIf($styles['pagination']['keepLines'] === true, 'w:keepLines', 'w:val', '1');
- $xmlWriter->writeElementIf($styles['pagination']['pageBreak'] === true, 'w:pageBreakBefore', 'w:val', '1');
-
- // Child style: indentation, spacing, and shading
- $this->writeChildStyle($xmlWriter, 'Indentation', $styles['indentation']);
- $this->writeChildStyle($xmlWriter, 'Spacing', $styles['spacing']);
- $this->writeChildStyle($xmlWriter, 'Shading', $styles['shading']);
-
- // Tabs
- $this->writeTabs($xmlWriter, $styles['tabs']);
-
- // Numbering
- $this->writeNumbering($xmlWriter, $styles['numbering']);
-
- // Border
- if ($style->hasBorder()) {
- $xmlWriter->startElement('w:pBdr');
-
- $styleWriter = new MarginBorder($xmlWriter);
- $styleWriter->setSizes($style->getBorderSize());
- $styleWriter->setColors($style->getBorderColor());
- $styleWriter->write();
-
- $xmlWriter->endElement();
- }
-
- if (!$this->withoutPPR) {
- $xmlWriter->endElement(); // w:pPr
- }
- }
-
- /**
- * Write tabs.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param \PhpOffice\PhpWord\Style\Tab[] $tabs
- * @return void
- */
- private function writeTabs(XMLWriter $xmlWriter, $tabs)
- {
- if (!empty($tabs)) {
- $xmlWriter->startElement("w:tabs");
- foreach ($tabs as $tab) {
- $styleWriter = new Tab($xmlWriter, $tab);
- $styleWriter->write();
- }
- $xmlWriter->endElement();
- }
- }
-
- /**
- * Write numbering.
- *
- * @param \PhpOffice\PhpWord\Shared\XMLWriter $xmlWriter
- * @param array $numbering
- * @return void
- */
- private function writeNumbering(XMLWriter $xmlWriter, $numbering)
- {
- $numStyle = $numbering['style'];
- $numLevel = $numbering['level'];
-
- /** @var \PhpOffice\PhpWord\Style\Numbering $numbering */
- $numbering = Style::getStyle($numStyle);
- if ($numStyle !== null && $numbering !== null) {
- $xmlWriter->startElement('w:numPr');
- $xmlWriter->startElement('w:numId');
- $xmlWriter->writeAttribute('w:val', $numbering->getIndex());
- $xmlWriter->endElement(); // w:numId
- $xmlWriter->startElement('w:ilvl');
- $xmlWriter->writeAttribute('w:val', $numLevel);
- $xmlWriter->endElement(); // w:ilvl
- $xmlWriter->endElement(); // w:numPr
-
- $xmlWriter->startElement('w:outlineLvl');
- $xmlWriter->writeAttribute('w:val', $numLevel);
- $xmlWriter->endElement(); // w:outlineLvl
- }
- }
-
- /**
- * Set without w:pPr.
- *
- * @param bool $value
- * @return void
- */
- public function setWithoutPPR($value)
- {
- $this->withoutPPR = $value;
- }
-
- /**
- * Set is inline.
- *
- * @param bool $value
- * @return void
- */
- public function setIsInline($value)
- {
- $this->isInline = $value;
- }
- }
|