36 lines
877 B
PHP
Raw Normal View History

<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
* @license http://www.gnu.org/licenses/lgpl.txt LGPL
*/
namespace PhpOffice\PhpWord\Writer\Word2007\Element;
2014-04-26 11:14:27 +07:00
use PhpOffice\PhpWord\Writer\Word2007\Style\Paragraph as ParagraphStyleWriter;
/**
* TextRun element writer
*
* @since 0.10.0
*/
class TextRun extends Element
{
/**
* Write textrun element
*/
public function write()
{
$paragraphStyle = $this->element->getParagraphStyle();
$styleWriter = new ParagraphStyleWriter($this->xmlWriter, $paragraphStyle);
2014-04-26 11:14:27 +07:00
$styleWriter->setIsInline(true);
$this->xmlWriter->startElement('w:p');
2014-04-26 11:14:27 +07:00
$styleWriter->write();
$this->parentWriter->writeContainerElements($this->xmlWriter, $this->element);
$this->xmlWriter->endElement(); // w:p
}
}