| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 53 | public function get_formatted_value() { |
||
| 54 | $options_values = $this->get_options_values(); |
||
| 55 | if ( empty( $options_values ) ) { |
||
| 56 | $options_values[] = ''; |
||
| 57 | } |
||
| 58 | |||
| 59 | $value = $this->get_value(); |
||
| 60 | $value = $this->get_values_from_options( array( $value ) ); |
||
| 61 | $value = ! empty( $value ) ? $value[0] : $options_values[0]; |
||
| 62 | |||
| 63 | return $value; |
||
| 64 | } |
||
| 65 | } |
||
| 66 |