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