152 lines
4.2 KiB
PHP
Raw Normal View History

<?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
2014-05-04 21:03:28 +04:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Writer\RTF\Element;
use PhpOffice\PhpWord\Style;
use PhpOffice\PhpWord\Style\Font as FontStyle;
use PhpOffice\PhpWord\Writer\RTF\Style\Font as FontStyleWriter;
use PhpOffice\PhpWord\Writer\RTF\Style\Paragraph as ParagraphStyleWriter;
/**
* Text element RTF writer
*
* @since 0.10.0
*/
class Text extends AbstractElement
{
/**
* Write element
*/
public function write()
{
$fontStyle = $this->getFontStyle();
2014-05-06 23:37:14 +07:00
$content = '';
$content .= $this->writeParagraphStyle();
$content .= $this->writeFontStyleBegin($fontStyle);
if ($this->parentWriter->getLastParagraphStyle() != '' || $fontStyle) {
$content .= ' ';
}
$content .= $this->element->getText();
$content .= $this->writeFontStyleEnd($fontStyle);
if (!$this->withoutP) {
$content .= '\par' . PHP_EOL;
}
return $content;
}
/**
* Write paragraph style
*
* @return string
*/
private function writeParagraphStyle()
{
$content = '';
// Get paragraph style
$paragraphStyle = $this->element->getParagraphStyle();
if (is_string($paragraphStyle)) {
$paragraphStyle = Style::getStyle($paragraphStyle);
}
// Write style when applicable
if ($paragraphStyle && !$this->withoutP) {
if ($this->parentWriter->getLastParagraphStyle() != $this->element->getParagraphStyle()) {
$styleWriter = new ParagraphStyleWriter($paragraphStyle);
$content = $styleWriter->write();
$this->parentWriter->setLastParagraphStyle($this->element->getParagraphStyle());
} else {
$this->parentWriter->setLastParagraphStyle();
}
} else {
$this->parentWriter->setLastParagraphStyle();
}
return $content;
}
/**
* Write font style beginning
*
* @param \PhpOffice\PhpWord\Style\Font $style
* @return string
*/
private function writeFontStyleBegin($style)
{
if (!$style instanceof FontStyle) {
return '';
}
// Create style writer and set color/name index
$styleWriter = new FontStyleWriter($style);
if ($style->getColor() != null) {
$colorIndex = array_search($style->getColor(), $this->parentWriter->getColorTable());
if ($colorIndex !== false) {
$styleWriter->setColorIndex($colorIndex + 1);
}
}
if ($style->getName() != null) {
$fontIndex = array_search($style->getName(), $this->parentWriter->getFontTable());
if ($fontIndex !== false) {
$styleWriter->setNameIndex($fontIndex + 1);
}
}
// Write style
$content = $styleWriter->write();
return $content;
}
/**
* Write font style ending
*
* @param \PhpOffice\PhpWord\Style\Font $style
* @return string
*/
private function writeFontStyleEnd($style)
{
if (!$style instanceof FontStyle) {
return '';
}
$styleWriter = new FontStyleWriter($style);
$content = $styleWriter->writeEnd();
return $content;
}
/**
* Get font style
*
* @return \PhpOffice\PhpWord\Style\Font
*/
private function getFontStyle()
{
$fontStyle = $this->element->getFontStyle();
if (is_string($fontStyle)) {
$fontStyle = Style::getStyle($fontStyle);
}
return $fontStyle;
}
}