1 | <?php |
||
6 | class EmailField extends NativeGenerator implements iField |
||
7 | { |
||
8 | private $properties; |
||
9 | private $name; |
||
10 | |||
11 | /** |
||
12 | * EmailField constructor. Pass attributes inside model. |
||
13 | * @param array $properties |
||
14 | * @param string $name |
||
15 | * @param string|null $value |
||
16 | */ |
||
17 | public function __construct($properties, $name, $value = null) |
||
22 | |||
23 | |||
24 | /** |
||
25 | * Build <input type="password" {$properties} /> response |
||
26 | * {@inheritDoc} |
||
27 | * @see \Ffcms\Core\Helper\HTML\Form\iField::make() |
||
28 | */ |
||
29 | public function make() |
||
35 | } |