| 1 | <?php namespace XoopsModules\Smartobject\Form\Elements; |
||
| 19 | class SmartAutocompleteElement extends \XoopsFormText |
||
| 20 | { |
||
| 21 | public $_include_file; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * SmartAutocompleteElement constructor. |
||
| 25 | * @param string $caption |
||
| 26 | * @param string $name |
||
| 27 | * @param int $include_file |
||
| 28 | * @param int $size |
||
| 29 | * @param string $maxlength |
||
| 30 | * @param string $value |
||
| 31 | */ |
||
| 32 | public function __construct($caption, $name, $include_file, $size, $maxlength, $value = '') |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Prepare HTML for output |
||
| 40 | * |
||
| 41 | * @return string HTML |
||
| 42 | */ |
||
| 43 | public function render() |
||
| 55 | } |
||
| 56 |