@@ -101,16 +101,16 @@ discard block |
||
101 | 101 | } |
102 | 102 | if ( is_array( $value ) ) { |
103 | 103 | foreach ( array_keys( $value ) as $value_k ) { |
104 | - if ( ! is_string( $value[ $value_k ] ) ) { |
|
104 | + if ( ! is_string( $value[$value_k] ) ) { |
|
105 | 105 | continue; |
106 | 106 | } |
107 | 107 | if ( isset( $output['choice'] ) ) { |
108 | 108 | if ( $output['choice'] === $value_k ) { |
109 | - $value[ $output['choice'] ] = str_replace( '$', $value[ $output['choice'] ], $output['value_pattern'] ); |
|
109 | + $value[$output['choice']] = str_replace( '$', $value[$output['choice']], $output['value_pattern'] ); |
|
110 | 110 | } |
111 | 111 | continue; |
112 | 112 | } |
113 | - $value[ $value_k ] = str_replace( '$', $value[ $value_k ], $output['value_pattern'] ); |
|
113 | + $value[$value_k] = str_replace( '$', $value[$value_k], $output['value_pattern'] ); |
|
114 | 114 | } |
115 | 115 | } |
116 | 116 | $value = $this->apply_pattern_replace( $output, $value ); |
@@ -140,16 +140,16 @@ discard block |
||
140 | 140 | if ( is_array( $options ) ) { |
141 | 141 | if ( $option_name ) { |
142 | 142 | $subkey = str_replace( array( $option_name, '[', ']' ), '', $replace ); |
143 | - $replacement = ( isset( $options[ $subkey ] ) ) ? $options[ $subkey ] : ''; |
|
143 | + $replacement = ( isset( $options[$subkey] ) ) ? $options[$subkey] : ''; |
|
144 | 144 | break; |
145 | 145 | } |
146 | - $replacement = ( isset( $options[ $replace ] ) ) ? $options[ $replace ] : ''; |
|
146 | + $replacement = ( isset( $options[$replace] ) ) ? $options[$replace] : ''; |
|
147 | 147 | break; |
148 | 148 | } |
149 | 149 | $replacement = get_option( $replace ); |
150 | 150 | break; |
151 | 151 | case 'site_option': |
152 | - $replacement = ( is_array( $options ) && isset( $options[ $replace ] ) ) ? $options[ $replace ] : get_site_option( $replace ); |
|
152 | + $replacement = ( is_array( $options ) && isset( $options[$replace] ) ) ? $options[$replace] : get_site_option( $replace ); |
|
153 | 153 | break; |
154 | 154 | case 'user_meta': |
155 | 155 | $user_id = get_current_user_id(); |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | $replacement = ( false === $replacement ) ? '' : $replacement; |
165 | 165 | if ( is_array( $value ) ) { |
166 | 166 | foreach ( $value as $k => $v ) { |
167 | - $value[ $k ] = str_replace( $search, $replacement, $value[ $v ] ); |
|
167 | + $value[$k] = str_replace( $search, $replacement, $value[$v] ); |
|
168 | 168 | } |
169 | 169 | return $value; |
170 | 170 | } |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | } |
207 | 207 | // If 'choice' is defined check for sub-values too. |
208 | 208 | // Fixes https://github.com/aristath/kirki/issues/1416. |
209 | - if ( isset( $output['choice'] ) && isset( $value[ $output['choice'] ] ) && $exclude == $value[ $output['choice'] ] ) { |
|
209 | + if ( isset( $output['choice'] ) && isset( $value[$output['choice']] ) && $exclude == $value[$output['choice']] ) { |
|
210 | 210 | $skip = true; |
211 | 211 | } |
212 | 212 | } |
@@ -264,13 +264,13 @@ discard block |
||
264 | 264 | 'background', |
265 | 265 | ); |
266 | 266 | if ( in_array( $output['property'], $accepts_multiple, true ) ) { |
267 | - if ( isset( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) && ! is_array( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) ) { |
|
268 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = (array) $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ]; |
|
267 | + if ( isset( $this->styles[$output['media_query']][$output['element']][$output['property']] ) && ! is_array( $this->styles[$output['media_query']][$output['element']][$output['property']] ) ) { |
|
268 | + $this->styles[$output['media_query']][$output['element']][$output['property']] = (array) $this->styles[$output['media_query']][$output['element']][$output['property']]; |
|
269 | 269 | } |
270 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ][] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
270 | + $this->styles[$output['media_query']][$output['element']][$output['property']][] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
271 | 271 | return; |
272 | 272 | } |
273 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['units'] . $output['suffix']; |
|
273 | + $this->styles[$output['media_query']][$output['element']][$output['property']] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['units'] . $output['suffix']; |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | /** |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | 'background-position' => 'Kirki_Output_Property_Background_Position', |
291 | 291 | ) ); |
292 | 292 | if ( array_key_exists( $property, $properties ) ) { |
293 | - $classname = $properties[ $property ]; |
|
293 | + $classname = $properties[$property]; |
|
294 | 294 | $obj = new $classname( $property, $value ); |
295 | 295 | return $obj->get_value(); |
296 | 296 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | if ( false !== strpos( $output['property'], '%%' ) ) { |
45 | 45 | $property = str_replace( '%%', $key, $output['property'] ); |
46 | 46 | } |
47 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $property ] = $output['prefix'] . $this->process_property_value( $property, $value[ $key ] ) . $output['suffix']; |
|
47 | + $this->styles[$output['media_query']][$output['element']][$property] = $output['prefix'] . $this->process_property_value( $property, $value[$key] ) . $output['suffix']; |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | $class_name = 'WP_Customize_Control'; |
69 | 69 | // Get the classname from the array of control classnames. |
70 | 70 | if ( array_key_exists( $args['type'], $this->control_types ) ) { |
71 | - $class_name = $this->control_types[ $args['type'] ]; |
|
71 | + $class_name = $this->control_types[$args['type']]; |
|
72 | 72 | } |
73 | 73 | return $class_name; |
74 | 74 |
@@ -257,13 +257,13 @@ discard block |
||
257 | 257 | |
258 | 258 | // Get the config arguments, and merge them with the defaults. |
259 | 259 | $config_defaults = ( isset( Kirki::$config['global'] ) ) ? Kirki::$config['global'] : array(); |
260 | - if ( 'global' !== $this->kirki_config && isset( Kirki::$config[ $this->kirki_config ] ) ) { |
|
261 | - $config_defaults = Kirki::$config[ $this->kirki_config ]; |
|
260 | + if ( 'global' !== $this->kirki_config && isset( Kirki::$config[$this->kirki_config] ) ) { |
|
261 | + $config_defaults = Kirki::$config[$this->kirki_config]; |
|
262 | 262 | } |
263 | 263 | $config_defaults = ( is_array( $config_defaults ) ) ? $config_defaults : array(); |
264 | 264 | foreach ( $config_defaults as $key => $value ) { |
265 | - if ( isset( $defaults[ $key ] ) && ! empty( $value ) && $value !== $defaults[ $key ] ) { |
|
266 | - $defaults[ $key ] = $value; |
|
265 | + if ( isset( $defaults[$key] ) && ! empty( $value ) && $value !== $defaults[$key] ) { |
|
266 | + $defaults[$key] = $value; |
|
267 | 267 | } |
268 | 268 | } |
269 | 269 | |
@@ -308,11 +308,11 @@ discard block |
||
308 | 308 | // Get all arguments with their values. |
309 | 309 | $args = get_object_vars( $this ); |
310 | 310 | foreach ( array_keys( $args ) as $key ) { |
311 | - $args[ $key ] = $this->$key; |
|
311 | + $args[$key] = $this->$key; |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | // Add the field to the static $fields variable properly indexed. |
315 | - Kirki::$fields[ $this->settings ] = $args; |
|
315 | + Kirki::$fields[$this->settings] = $args; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | /** |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | if ( ! is_array( $args ) || ! isset( $args['selector'] ) || ! isset( $args['render_callback'] ) || ! is_callable( $args['render_callback'] ) ) { |
407 | 407 | /* translators: %1$s represents the field ID where the error occurs. */ |
408 | 408 | _doing_it_wrong( __METHOD__, sprintf( esc_attr__( '"partial_refresh" invalid entry in field %s', 'kirki' ), esc_attr( $this->settings ) ), '3.0.10' ); |
409 | - unset( $this->partial_refresh[ $id ] ); |
|
409 | + unset( $this->partial_refresh[$id] ); |
|
410 | 410 | continue; |
411 | 411 | } |
412 | 412 | } |
@@ -434,10 +434,10 @@ discard block |
||
434 | 434 | } |
435 | 435 | $settings = array(); |
436 | 436 | foreach ( $this->settings as $setting_key => $setting_value ) { |
437 | - $settings[ $setting_key ] = $setting_value; |
|
437 | + $settings[$setting_key] = $setting_value; |
|
438 | 438 | // If we're using serialized options then we need to spice this up. |
439 | 439 | if ( 'option' === $this->option_type && '' !== $this->option_name && ( false === strpos( $setting_key, '[' ) ) ) { |
440 | - $settings[ $setting_key ] = "{$this->option_name}[{$setting_value}]"; |
|
440 | + $settings[$setting_key] = "{$this->option_name}[{$setting_value}]"; |
|
441 | 441 | } |
442 | 442 | } |
443 | 443 | $this->settings = $settings; |
@@ -566,17 +566,17 @@ discard block |
||
566 | 566 | } |
567 | 567 | foreach ( $this->output as $key => $output ) { |
568 | 568 | if ( empty( $output ) || ! isset( $output['element'] ) ) { |
569 | - unset( $this->output[ $key ] ); |
|
569 | + unset( $this->output[$key] ); |
|
570 | 570 | continue; |
571 | 571 | } |
572 | 572 | if ( ! isset( $output['sanitize_callback'] ) && isset( $output['callback'] ) ) { |
573 | - $this->output[ $key ]['sanitize_callback'] = $output['callback']; |
|
573 | + $this->output[$key]['sanitize_callback'] = $output['callback']; |
|
574 | 574 | } |
575 | 575 | // Convert element arrays to strings. |
576 | 576 | if ( isset( $output['element'] ) && is_array( $output['element'] ) ) { |
577 | - $this->output[ $key ]['element'] = array_unique( $this->output[ $key ]['element'] ); |
|
578 | - sort( $this->output[ $key ]['element'] ); |
|
579 | - $this->output[ $key ]['element'] = implode( ',', $this->output[ $key ]['element'] ); |
|
577 | + $this->output[$key]['element'] = array_unique( $this->output[$key]['element'] ); |
|
578 | + sort( $this->output[$key]['element'] ); |
|
579 | + $this->output[$key]['element'] = implode( ',', $this->output[$key]['element'] ); |
|
580 | 580 | } |
581 | 581 | } |
582 | 582 | } |