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.
35 lines
551 B
35 lines
551 B
<?php |
|
/** |
|
* |
|
* HtmlUnitInterface.php |
|
* User: ChenLong |
|
* DateTime: 2020/3/12 15:54 |
|
*/ |
|
|
|
|
|
namespace sdModule\makeAdminBasics\htmlUnit; |
|
|
|
|
|
interface FormUnitInterface |
|
{ |
|
/** |
|
* HtmlUnitInterface constructor. |
|
* @param string $label |
|
* @param string $name |
|
*/ |
|
public function __construct(string $label, string $name); |
|
|
|
/** |
|
* 设置默认值 |
|
* @param $value |
|
* @return mixed |
|
*/ |
|
public function setDefault($value); |
|
|
|
/** |
|
* 获取html |
|
* @return mixed |
|
*/ |
|
public function getHtml(); |
|
} |
|
|
|
|