| 1 | <?php |
||
| 6 | abstract class BaseAreaElement extends AbstractElement |
||
| 7 | { |
||
| 8 | protected $needClose = true; |
||
| 9 | |||
| 10 | public function __construct(?string $name = null, ?string $value = null) |
||
| 18 | |||
| 19 | public function afterElementPrepareToRender(): void |
||
| 20 | { |
||
| 21 | $this->parts->put('value', null); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getTagHtml() |
||
| 28 | } |