Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function RenderHtml(): string |
||
28 | { |
||
29 | $html = parent::RenderHtml(); |
||
30 | $html .= '<datalist id="'. $this->listname.'">'; |
||
31 | foreach( $this->options as $option) |
||
32 | { |
||
33 | if(!$option = trim(strip_tags($option))) continue; |
||
34 | $html .= '<option value="'.$option.'">'; |
||
35 | } |
||
36 | $html .= '</datalist>'; |
||
37 | return $html; |
||
38 | } |
||
41 |