1 | <?php |
||
8 | class CaptchaField extends NativeGenerator implements iField |
||
9 | { |
||
10 | private $properties; |
||
11 | private $name; |
||
12 | |||
13 | /** |
||
14 | * CaptchaField constructor. Pass attributes inside model. |
||
15 | * @param array $properties |
||
16 | * @param string $name |
||
17 | * @param string|null $value |
||
18 | */ |
||
19 | public function __construct($properties, $name, $value = null) |
||
24 | |||
25 | /** |
||
26 | * Build captcha response |
||
27 | * {@inheritDoc} |
||
28 | * @see \Ffcms\Core\Helper\HTML\Form\iField::make() |
||
29 | */ |
||
30 | public function make() |
||
50 | } |