| Conditions | 2 |
| Paths | 2 |
| Total Lines | 22 |
| Code Lines | 15 |
| Lines | 8 |
| Ratio | 36.36 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function html_input( $text ) { |
||
| 25 | @ob_start(); |
||
|
|
|||
| 26 | ?> |
||
| 27 | <div class="wl-input-wrapper"> |
||
| 28 | |||
| 29 | <select name="wl_metaboxes[<?php echo $this->meta_name ?>]" id="<?php echo esc_attr( $this->meta_name ); ?>" style="width:88%;"> |
||
| 30 | View Code Duplication | <?php foreach ( $this->raw_custom_field['options'] as $option => $label ): ?> |
|
| 31 | |||
| 32 | <option value="<?php echo esc_attr( $option ); ?>" <?php selected( $text, $option ); ?>> |
||
| 33 | <?php echo $label; ?> |
||
| 34 | </option> |
||
| 35 | |||
| 36 | <?php endforeach ?> |
||
| 37 | </select> |
||
| 38 | |||
| 39 | <div class="wl-input-notice"></div> |
||
| 40 | </div> |
||
| 41 | <?php |
||
| 42 | |||
| 43 | $html = ob_get_clean(); |
||
| 44 | return $html; |
||
| 45 | } |
||
| 46 | |||
| 48 |
If you suppress an error, we recommend checking for the error condition explicitly: