64 lines
1.1 KiB
PHP
64 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2010-2014 PHPWord contributors
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Element;
|
|
|
|
use PhpOffice\PhpWord\Shared\String;
|
|
|
|
/**
|
|
* Check box element
|
|
*/
|
|
class CheckBox extends Text
|
|
{
|
|
/**
|
|
* Name content
|
|
*
|
|
* @var string
|
|
*/
|
|
private $name;
|
|
|
|
/**
|
|
* Create new instance
|
|
*
|
|
* @param string $name
|
|
* @param string $text
|
|
* @param mixed $fontStyle
|
|
* @param mixed $paragraphStyle
|
|
* @return self
|
|
*/
|
|
public function __construct($name = null, $text = null, $fontStyle = null, $paragraphStyle = null)
|
|
{
|
|
$this->setName($name);
|
|
parent::__construct($text, $fontStyle, $paragraphStyle);
|
|
}
|
|
|
|
/**
|
|
* Set name content
|
|
*
|
|
* @param string $name
|
|
* @return self
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = String::toUTF8($name);
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get name content
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|