Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function set_choices() { |
||
34 | |||
35 | if ( ! is_array( $this->choices ) ) { |
||
36 | $this->choices = array(); |
||
37 | } |
||
38 | |||
39 | $this->choices = wp_parse_args( |
||
40 | $this->choices, array( |
||
41 | 'on' => esc_attr__( 'On', 'kirki' ), |
||
42 | 'off' => esc_attr__( 'Off', 'kirki' ), |
||
43 | 'round' => false, |
||
44 | ) |
||
45 | ); |
||
46 | } |
||
47 | } |
||
48 |