PHPWord/src/PhpWord/Element/PreserveText.php

101 lines
2.4 KiB
PHP
Raw Normal View History

2012-05-06 18:25:40 +02:00
<?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.
2012-05-06 18:25:40 +02:00
*
* @see https://github.com/PHPOffice/PHPWord
* @copyright 2010-2017 PHPWord contributors
2014-05-04 21:03:28 +04:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
2012-05-06 18:25:40 +02:00
*/
namespace PhpOffice\PhpWord\Element;
2016-01-23 19:16:34 +04:00
use PhpOffice\Common\Text as CommonText;
use PhpOffice\PhpWord\Style\Font;
use PhpOffice\PhpWord\Style\Paragraph;
/**
* Preserve text/field element
*/
class PreserveText extends AbstractElement
{
/**
* Text content
*
* @var string
*/
2014-04-03 08:44:41 +07:00
private $text;
/**
* Text style
*
* @var string|\PhpOffice\PhpWord\Style\Font
*/
2014-04-03 08:44:41 +07:00
private $fontStyle;
/**
* Paragraph style
*
* @var string|\PhpOffice\PhpWord\Style\Paragraph
*/
2014-04-03 08:44:41 +07:00
private $paragraphStyle;
/**
* Create a new Preserve Text Element
*
2014-03-17 07:26:25 +07:00
* @param string $text
* @param mixed $fontStyle
* @param mixed $paragraphStyle
*/
public function __construct($text = null, $fontStyle = null, $paragraphStyle = null)
{
$this->fontStyle = $this->setNewStyle(new Font('text'), $fontStyle);
$this->paragraphStyle = $this->setNewStyle(new Paragraph(), $paragraphStyle);
2016-01-23 19:16:34 +04:00
$this->text = CommonText::toUTF8($text);
$matches = preg_split('/({.*?})/', $this->text, null, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
2014-03-09 15:11:51 -04:00
if (isset($matches[0])) {
2014-04-03 08:44:41 +07:00
$this->text = $matches;
2014-03-09 15:11:51 -04:00
}
return $this;
}
/**
* Get Text style
*
* @return string|\PhpOffice\PhpWord\Style\Font
*/
public function getFontStyle()
{
2014-04-03 08:44:41 +07:00
return $this->fontStyle;
}
/**
* Get Paragraph style
*
* @return string|\PhpOffice\PhpWord\Style\Paragraph
*/
public function getParagraphStyle()
{
2014-04-03 08:44:41 +07:00
return $this->paragraphStyle;
}
/**
* Get Text content
*
* @return string
*/
public function getText()
{
2014-04-03 08:44:41 +07:00
return $this->text;
}
2012-05-06 18:25:40 +02:00
}