@@ -142,10 +142,10 @@ discard block |
||
142 | 142 | $js_var['index_key'] = $key; |
143 | 143 | $callback = $this->get_callback( $args ); |
144 | 144 | if ( is_callable( $callback ) ) { |
145 | - $field['scripts'][ $key ] = call_user_func_array( $callback, array( $js_var, $args ) ); |
|
145 | + $field['scripts'][$key] = call_user_func_array( $callback, array( $js_var, $args ) ); |
|
146 | 146 | continue; |
147 | 147 | } |
148 | - $field['scripts'][ $key ] = $this->script_var( $js_var ); |
|
148 | + $field['scripts'][$key] = $this->script_var( $js_var ); |
|
149 | 149 | } |
150 | 150 | $combo_extra_script = ''; |
151 | 151 | $combo_css_script = ''; |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | */ |
178 | 178 | protected function script_html_var( $args ) { |
179 | 179 | |
180 | - $script = ( isset( $args['choice'] ) ) ? "newval=newval['{$args['choice']}'];" : ''; |
|
180 | + $script = ( isset( $args['choice'] ) ) ? "newval=newval['{$args['choice']}'];" : ''; |
|
181 | 181 | |
182 | 182 | // Apply the value_pattern. |
183 | 183 | if ( isset( $args['value_pattern'] ) && '' !== $args['value_pattern'] ) { |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | $property_script = ''; |
252 | 252 | |
253 | 253 | // Define choice. |
254 | - $choice = ( isset( $args['choice'] ) && '' !== $args['choice'] ) ? $args['choice'] : ''; |
|
254 | + $choice = ( isset( $args['choice'] ) && '' !== $args['choice'] ) ? $args['choice'] : ''; |
|
255 | 255 | |
256 | 256 | $value_key = 'newval' . $args['index_key']; |
257 | 257 | $property_script .= $value_key . '=newval;'; |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | 'font-weight' => 'fontWeight', |
345 | 345 | 'font-style' => 'fontStyle', |
346 | 346 | ); |
347 | - $choice_condition = ( isset( $args['choice'] ) && '' !== $args['choice'] && isset( $css_build_array[ $args['choice'] ] ) ); |
|
347 | + $choice_condition = ( isset( $args['choice'] ) && '' !== $args['choice'] && isset( $css_build_array[$args['choice']] ) ); |
|
348 | 348 | $script .= ( ! $choice_condition ) ? $webfont_loader : ''; |
349 | 349 | foreach ( $css_build_array as $property => $var ) { |
350 | 350 | if ( $choice_condition && $property !== $args['choice'] ) { |
@@ -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,10 +164,10 @@ discard block |
||
164 | 164 | $replacement = ( false === $replacement ) ? '' : $replacement; |
165 | 165 | if ( is_array( $value ) ) { |
166 | 166 | foreach ( $value as $k => $v ) { |
167 | - if ( isset( $value[ $v ] ) ) { |
|
168 | - $value[ $k ] = str_replace( $search, $replacement, $value[ $v ] ); |
|
167 | + if ( isset( $value[$v] ) ) { |
|
168 | + $value[$k] = str_replace( $search, $replacement, $value[$v] ); |
|
169 | 169 | } else { |
170 | - $value[ $k ] = str_replace( $search, $replacement, $v ); |
|
170 | + $value[$k] = str_replace( $search, $replacement, $v ); |
|
171 | 171 | } |
172 | 172 | } |
173 | 173 | return $value; |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | } |
211 | 211 | // If 'choice' is defined check for sub-values too. |
212 | 212 | // Fixes https://github.com/aristath/kirki/issues/1416. |
213 | - if ( isset( $output['choice'] ) && isset( $value[ $output['choice'] ] ) && $exclude == $value[ $output['choice'] ] ) { |
|
213 | + if ( isset( $output['choice'] ) && isset( $value[$output['choice']] ) && $exclude == $value[$output['choice']] ) { |
|
214 | 214 | $skip = true; |
215 | 215 | } |
216 | 216 | } |
@@ -268,13 +268,13 @@ discard block |
||
268 | 268 | 'background', |
269 | 269 | ); |
270 | 270 | if ( in_array( $output['property'], $accepts_multiple, true ) ) { |
271 | - if ( isset( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) && ! is_array( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) ) { |
|
272 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = (array) $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ]; |
|
271 | + if ( isset( $this->styles[$output['media_query']][$output['element']][$output['property']] ) && ! is_array( $this->styles[$output['media_query']][$output['element']][$output['property']] ) ) { |
|
272 | + $this->styles[$output['media_query']][$output['element']][$output['property']] = (array) $this->styles[$output['media_query']][$output['element']][$output['property']]; |
|
273 | 273 | } |
274 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ][] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
274 | + $this->styles[$output['media_query']][$output['element']][$output['property']][] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
275 | 275 | return; |
276 | 276 | } |
277 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['units'] . $output['suffix']; |
|
277 | + $this->styles[$output['media_query']][$output['element']][$output['property']] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['units'] . $output['suffix']; |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | /** |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | ) |
297 | 297 | ); |
298 | 298 | if ( array_key_exists( $property, $properties ) ) { |
299 | - $classname = $properties[ $property ]; |
|
299 | + $classname = $properties[$property]; |
|
300 | 300 | $obj = new $classname( $property, $value ); |
301 | 301 | return $obj->get_value(); |
302 | 302 | } |