getStyle(); if (!$style instanceof \PhpOffice\PhpWord\Style\Paragraph) { return ''; } $alignments = array( Jc::START => '\ql', Jc::END => '\qr', Jc::CENTER => '\qc', Jc::BOTH => '\qj', ); $spaceAfter = $style->getSpaceAfter(); $spaceBefore = $style->getSpaceBefore(); $content = ''; if ($this->nestedLevel == 0) { $content .= '\pard\nowidctlpar '; } if (isset($alignments[$style->getAlignment()])) { $content .= $alignments[$style->getAlignment()]; } $content .= $this->writeIndentation($style->getIndentation()); $content .= $this->getValueIf($spaceBefore !== null, '\sb' . round($spaceBefore)); $content .= $this->getValueIf($spaceAfter !== null, '\sa' . round($spaceAfter)); $lineHeight = $style->getLineHeight(); if ($lineHeight) { $lineHeightAdjusted = (int) ($lineHeight * 240); $content .= "\\sl$lineHeightAdjusted\\slmult1"; } if ($style->hasPageBreakBefore()) { $content .= '\\page'; } $styles = $style->getStyleValues(); $content .= $this->writeTabs($styles['tabs']); return $content; } /** * Writes an \PhpOffice\PhpWord\Style\Indentation * * @param null|\PhpOffice\PhpWord\Style\Indentation $indent * @return string */ private function writeIndentation($indent = null) { if (isset($indent) && $indent instanceof \PhpOffice\PhpWord\Style\Indentation) { $writer = new Indentation($indent); return $writer->write(); } return ''; } /** * Writes tabs * * @param \PhpOffice\PhpWord\Style\Tab[] $tabs * @return string */ private function writeTabs($tabs = null) { $content = ''; if (!empty($tabs)) { foreach ($tabs as $tab) { $styleWriter = new Tab($tab); $content .= $styleWriter->write(); } } return $content; } /** * Set nested level. * * @param int $value */ public function setNestedLevel($value) { $this->nestedLevel = $value; } }