You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.1 KiB
116 lines
2.1 KiB
<?php |
|
/** |
|
* |
|
* FormText.php |
|
* User: ChenLong |
|
* DateTime: 2020/3/11 14:40 |
|
*/ |
|
|
|
|
|
namespace sdModule\makeAdminBasics\htmlUnit; |
|
|
|
|
|
use sdModule\makeAdminBasics\Basics; |
|
|
|
/** |
|
* 文本域(多行文本 |
|
* Class FormTime |
|
* @package sdModule\makeAdminBasics\htmlUnit |
|
*/ |
|
class FormTextarea implements FormUnitInterface |
|
{ |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $label; |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $name; |
|
|
|
/** |
|
* @var |
|
*/ |
|
private $default; |
|
|
|
/** |
|
* @var int |
|
*/ |
|
private $height = 200; |
|
|
|
/** |
|
* |
|
* FormText constructor. |
|
* @param string $label |
|
* @param string $name |
|
*/ |
|
public function __construct(string $label, string $name) |
|
{ |
|
$this->label = $label; |
|
$this->name = $name; |
|
} |
|
|
|
/** |
|
* 设置高度 |
|
* @param int $height |
|
* @return $this |
|
*/ |
|
public function setHeight(int $height) |
|
{ |
|
if ($height) { |
|
$this->height = $height; |
|
} |
|
return $this; |
|
} |
|
|
|
/** |
|
* 获取html |
|
* @return mixed|string |
|
*/ |
|
public function getHtml() |
|
{ |
|
return <<<HTML |
|
|
|
<div class="layui-form-item">{$this->getLabel()} |
|
<div class="layui-input-block">{$this->getForm()}</div> |
|
</div> |
|
|
|
HTML; |
|
|
|
} |
|
|
|
/** |
|
* 获取label |
|
* @return string |
|
*/ |
|
private function getLabel() |
|
{ |
|
return Basics::indentAndLineFeed(4, Basics::BEFORE) . "<label class=\"layui-form-label\">{$this->label}</label>"; |
|
} |
|
|
|
/** |
|
* 获取表单html文本 |
|
* @return string |
|
*/ |
|
private function getForm() |
|
{ |
|
$placeholder = "{:lang('please enter')}" ; |
|
return Basics::indentAndLineFeed(5, Basics::BEFORE) . |
|
"<textarea name=\"{$this->name}\" style=\"height: {$this->height}px\" placeholder=\"{$placeholder}\" class=\"layui-textarea\">{$this->default}</textarea>" |
|
. Basics::indentAndLineFeed(4, Basics::BEFORE); |
|
} |
|
|
|
/** |
|
* 设置默认值 |
|
* @param $value |
|
* @return mixed |
|
*/ |
|
public function setDefault($value) |
|
{ |
|
$value and $this->default = $value; |
|
return $this; |
|
} |
|
} |
|
|
|
|