| 1 | <?php |
||
| 7 | class Html extends Field |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Htmlable. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $html = ''; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new Html instance. |
||
| 18 | * |
||
| 19 | * @param mixed $html |
||
| 20 | */ |
||
| 21 | public function __construct($html) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Render html field. |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function render() |
||
| 43 | } |
||
| 44 |