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.
132 lines
2.7 KiB
132 lines
2.7 KiB
<?php |
|
/** |
|
* |
|
* FormText.php |
|
* User: ChenLong |
|
* DateTime: 2020/3/11 14:40 |
|
*/ |
|
|
|
|
|
namespace sdModule\makeAdminBasics\htmlUnit; |
|
|
|
|
|
use sdModule\makeAdminBasics\Basics; |
|
|
|
/** |
|
* 多选 |
|
* Class FormCheckbox |
|
* @package sdModule\makeAdminBasics\htmlUnit |
|
*/ |
|
class FormCheckbox implements FormUnitInterface |
|
{ |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $label; |
|
|
|
/** |
|
* @var string |
|
*/ |
|
private $name; |
|
|
|
/** |
|
* @var |
|
*/ |
|
private $default; |
|
|
|
/** |
|
* 默认皮肤 |
|
* @var string |
|
*/ |
|
private $skin = 'lay-skin="primary"'; |
|
|
|
/** |
|
* |
|
* FormText constructor. |
|
* @param string $label |
|
* @param string $name |
|
*/ |
|
public function __construct(string $label, string $name) |
|
{ |
|
$this->label = $label; |
|
$this->name = $name; |
|
} |
|
|
|
/** |
|
* 设置默认值 |
|
* @param $value |
|
* @return mixed |
|
*/ |
|
public function setDefault($value) |
|
{ |
|
$value and $this->default = $value; |
|
return $this; |
|
} |
|
|
|
/** |
|
* 设置皮肤 |
|
* @param string $skin |
|
* @return $this |
|
*/ |
|
public function setSkin(string $skin = '') |
|
{ |
|
$this->skin = $skin; |
|
return $this; |
|
} |
|
|
|
|
|
/** |
|
* 获取html |
|
* @param array $data |
|
* @return mixed|string |
|
*/ |
|
public function getHtml($data = []) |
|
{ |
|
return <<<HTML |
|
|
|
<div class="layui-form-item">{$this->getLabel()} |
|
<div class="layui-input-block">{$this->getForm($data)}</div> |
|
</div> |
|
|
|
HTML; |
|
|
|
} |
|
|
|
/** |
|
* 获取label |
|
* @return string |
|
*/ |
|
private function getLabel() |
|
{ |
|
return Basics::indentAndLineFeed(4, Basics::BEFORE) . |
|
"<label class=\"layui-form-label\">{$this->label}</label>"; |
|
} |
|
|
|
/** |
|
* 获取表单html文本 |
|
* @param $data |
|
* @return string |
|
*/ |
|
private function getForm($data) |
|
{ |
|
$html = ''; |
|
$dataOriginTitle = is_string($data) ? |
|
explode(':', strtr($data, [':' => ':']))[0] |
|
: $this->name . '_data'; |
|
|
|
$html .= Basics::indentAndLineFeed(5, Basics::BEFORE) . |
|
implode(Basics::indentAndLineFeed(5, Basics::BEFORE), [ |
|
"{foreach \${$dataOriginTitle} as \$value => \$title}", |
|
$this->default |
|
? "<input type=\"checkbox\" name=\"{$this->name}[]\" value=\"{\$value}\" {if \$value == '$this->default'}checked{/if} title=\"{\$title}\" {$this->skin}/>" |
|
: "<input type=\"checkbox\" name=\"{$this->name}[]\" value=\"{\$value}\" title=\"{\$title}\" {$this->skin}/>" |
|
, |
|
"{/foreach}" |
|
]); |
|
|
|
return $html . Basics::indentAndLineFeed(4, Basics::BEFORE); |
|
} |
|
|
|
} |
|
|
|
|