Total Complexity | 5 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class Kirki_Field_Editor extends Kirki_Field { |
||
16 | |||
17 | /** |
||
18 | * Sets the control type. |
||
19 | * |
||
20 | * @access protected |
||
21 | */ |
||
22 | protected function set_type() { |
||
23 | global $wp_version; |
||
24 | |||
25 | if ( version_compare( $wp_version, '4.8' ) >= 0 ) { |
||
26 | $this->type = 'kirki-editor'; |
||
27 | return; |
||
28 | } |
||
29 | |||
30 | // Fallback for older WordPress versions. |
||
31 | $this->type = 'kirki-generic'; |
||
32 | if ( ! is_array( $this->choices ) ) { |
||
|
|||
33 | $this->choices = array(); |
||
34 | } |
||
35 | $this->choices['element'] = 'textarea'; |
||
36 | $this->choices['rows'] = '5'; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Sets the $sanitize_callback |
||
41 | * |
||
42 | * @access protected |
||
43 | */ |
||
44 | protected function set_sanitize_callback() { |
||
52 | } |
||
53 | } |
||
54 |