| 1 | <?php |
||
| 12 | class SmartAutocompleteElement extends XoopsFormText |
||
| 13 | { |
||
| 14 | public $_include_file; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * SmartAutocompleteElement constructor. |
||
| 18 | * @param string $caption |
||
| 19 | * @param string $name |
||
| 20 | * @param int $include_file |
||
| 21 | * @param int $size |
||
| 22 | * @param string $maxlength |
||
| 23 | * @param string $value |
||
| 24 | */ |
||
| 25 | public function __construct($caption, $name, $include_file, $size, $maxlength, $value = '') |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Prepare HTML for output |
||
| 33 | * |
||
| 34 | * @return string HTML |
||
| 35 | */ |
||
| 36 | public function render() |
||
| 60 | } |
||
| 61 |