getStyle(); if (!$style instanceof \PhpOffice\PhpWord\Style\Paragraph) { return ''; } $alignments = [ Jc::START => '\ql', Jc::END => '\qr', Jc::CENTER => '\qc', Jc::BOTH => '\qj', self::LEFT => '\ql', self::RIGHT => '\qr', self::JUSTIFY => '\qj', ]; $bidiAlignments = [ Jc::START => '\qr', Jc::END => '\ql', Jc::CENTER => '\qc', Jc::BOTH => '\qj', self::LEFT => '\ql', self::RIGHT => '\qr', self::JUSTIFY => '\qj', ]; $spaceAfter = $style->getSpaceAfter(); $spaceBefore = $style->getSpaceBefore(); $content = ''; if ($this->nestedLevel == 0) { $content .= '\pard\nowidctlpar '; } $alignment = $style->getAlignment(); $bidi = $style->isBidi(); if ($alignment === '' && $bidi !== null) { $alignment = Jc::START; } if (isset($alignments[$alignment])) { $content .= $bidi ? $bidiAlignments[$alignment] : $alignments[$alignment]; } $content .= $this->writeIndentation($style->getIndentation()); $content .= $this->getValueIf($spaceBefore !== null, '\sb' . round($spaceBefore ?? 0)); $content .= $this->getValueIf($spaceAfter !== null, '\sa' . round($spaceAfter ?? 0)); $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): void { $this->nestedLevel = $value; } }