Passed
Push — develop ( 78215b...68c116 )
by Aristeides
03:33
created
modules/css/class-kirki-output.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -81,13 +81,13 @@  discard block
 block discarded – undo
81 81
 	 * @return string|array
82 82
 	 */
83 83
 	protected function apply_sanitize_callback( $output, $value ) {
84
-		if ( isset( $output['sanitize_callback'] ) && null !== $output['sanitize_callback'] ) {
84
+		if ( isset( $output[ 'sanitize_callback' ] ) && null !== $output[ 'sanitize_callback' ] ) {
85 85
 
86 86
 			// If the sanitize_callback is invalid, return the value.
87
-			if ( ! is_callable( $output['sanitize_callback'] ) ) {
87
+			if ( ! is_callable( $output[ 'sanitize_callback' ] ) ) {
88 88
 				return $value;
89 89
 			}
90
-			return call_user_func( $output['sanitize_callback'], $this->value );
90
+			return call_user_func( $output[ 'sanitize_callback' ], $this->value );
91 91
 		}
92 92
 		return $value;
93 93
 	}
@@ -100,22 +100,22 @@  discard block
 block discarded – undo
100 100
 	 * @return string|array
101 101
 	 */
102 102
 	protected function apply_value_pattern( $output, $value ) {
103
-		if ( isset( $output['value_pattern'] ) && ! empty( $output['value_pattern'] ) && is_string( $output['value_pattern'] ) ) {
103
+		if ( isset( $output[ 'value_pattern' ] ) && ! empty( $output[ 'value_pattern' ] ) && is_string( $output[ 'value_pattern' ] ) ) {
104 104
 			if ( ! is_array( $value ) ) {
105
-				$value = str_replace( '$', $value, $output['value_pattern'] );
105
+				$value = str_replace( '$', $value, $output[ 'value_pattern' ] );
106 106
 			}
107 107
 			if ( is_array( $value ) ) {
108 108
 				foreach ( array_keys( $value ) as $value_k ) {
109 109
 					if ( ! is_string( $value[ $value_k ] ) ) {
110 110
 						continue;
111 111
 					}
112
-					if ( isset( $output['choice'] ) ) {
113
-						if ( $output['choice'] === $value_k ) {
114
-							$value[ $output['choice'] ] = str_replace( '$', $value[ $output['choice'] ], $output['value_pattern'] );
112
+					if ( isset( $output[ 'choice' ] ) ) {
113
+						if ( $output[ 'choice' ] === $value_k ) {
114
+							$value[ $output[ 'choice' ] ] = str_replace( '$', $value[ $output[ 'choice' ] ], $output[ 'value_pattern' ] );
115 115
 						}
116 116
 						continue;
117 117
 					}
118
-					$value[ $value_k ] = str_replace( '$', $value[ $value_k ], $output['value_pattern'] );
118
+					$value[ $value_k ] = str_replace( '$', $value[ $value_k ], $output[ 'value_pattern' ] );
119 119
 				}
120 120
 			}
121 121
 			$value = $this->apply_pattern_replace( $output, $value );
@@ -131,14 +131,14 @@  discard block
 block discarded – undo
131 131
 	 * @return string|array
132 132
 	 */
133 133
 	protected function apply_pattern_replace( $output, $value ) {
134
-		if ( isset( $output['pattern_replace'] ) && is_array( $output['pattern_replace'] ) ) {
134
+		if ( isset( $output[ 'pattern_replace' ] ) && is_array( $output[ 'pattern_replace' ] ) ) {
135 135
 			$option_type = ( '' !== Kirki::get_config_param( $this->config_id, 'option_type' ) ) ? Kirki::get_config_param( $this->config_id, 'option_type' ) : 'theme_mod';
136 136
 			$option_name = Kirki::get_config_param( $this->config_id, 'option_name' );
137 137
 			$options     = array();
138 138
 			if ( $option_name ) {
139 139
 				$options = ( 'site_option' === $option_type ) ? get_site_option( $option_name ) : get_option( $option_name );
140 140
 			}
141
-			foreach ( $output['pattern_replace'] as $search => $replace ) {
141
+			foreach ( $output[ 'pattern_replace' ] as $search => $replace ) {
142 142
 				$replacement = '';
143 143
 				switch ( $option_type ) {
144 144
 					case 'option':
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
 			}
199 199
 
200 200
 			// No need to proceed this if the current value is the same as in the "exclude" value.
201
-			if ( isset( $output['exclude'] ) && is_array( $output['exclude'] ) ) {
202
-				foreach ( $output['exclude'] as $exclude ) {
201
+			if ( isset( $output[ 'exclude' ] ) && is_array( $output[ 'exclude' ] ) ) {
202
+				foreach ( $output[ 'exclude' ] as $exclude ) {
203 203
 					if ( is_array( $value ) ) {
204 204
 						if ( is_array( $exclude ) ) {
205 205
 							$diff1 = array_diff( $value, $exclude );
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 						}
212 212
 						// If 'choice' is defined check for sub-values too.
213 213
 						// Fixes https://github.com/aristath/kirki/issues/1416.
214
-						if ( isset( $output['choice'] ) && isset( $value[ $output['choice'] ] ) && $exclude == $value[ $output['choice'] ] ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
214
+						if ( isset( $output[ 'choice' ] ) && isset( $value[ $output[ 'choice' ] ] ) && $exclude == $value[ $output[ 'choice' ] ] ) { // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
215 215
 							$skip = true;
216 216
 						}
217 217
 					}
@@ -232,10 +232,10 @@  discard block
 block discarded – undo
232 232
 			// Apply any value patterns defined.
233 233
 			$value = $this->apply_value_pattern( $output, $value );
234 234
 
235
-			if ( isset( $output['element'] ) && is_array( $output['element'] ) ) {
236
-				$output['element'] = array_unique( $output['element'] );
237
-				sort( $output['element'] );
238
-				$output['element'] = implode( ',', $output['element'] );
235
+			if ( isset( $output[ 'element' ] ) && is_array( $output[ 'element' ] ) ) {
236
+				$output[ 'element' ] = array_unique( $output[ 'element' ] );
237
+				sort( $output[ 'element' ] );
238
+				$output[ 'element' ] = implode( ',', $output[ 'element' ] );
239 239
 			}
240 240
 
241 241
 			$value = $this->process_value( $value, $output );
@@ -243,10 +243,10 @@  discard block
 block discarded – undo
243 243
 			if ( is_admin() && ! is_customize_preview() ) {
244 244
 
245 245
 				// Check if this is an admin style.
246
-				if ( ! isset( $output['context'] ) || ! in_array( 'editor', $output['context'] ) ) {
246
+				if ( ! isset( $output[ 'context' ] ) || ! in_array( 'editor', $output[ 'context' ] ) ) {
247 247
 					continue;
248 248
 				}
249
-			} elseif ( isset( $output['context'] ) && ! in_array( 'front', $output['context'] ) ) {
249
+			} elseif ( isset( $output[ 'context' ] ) && ! in_array( 'front', $output[ 'context' ] ) ) {
250 250
 
251 251
 				// Check if this is a frontend style.
252 252
 				continue;
@@ -265,13 +265,13 @@  discard block
 block discarded – undo
265 265
 	 * @return null
266 266
 	 */
267 267
 	protected function process_output( $output, $value ) {
268
-		if ( ! isset( $output['element'] ) || ! isset( $output['property'] ) ) {
268
+		if ( ! isset( $output[ 'element' ] ) || ! isset( $output[ 'property' ] ) ) {
269 269
 			return;
270 270
 		}
271
-		$output['media_query'] = ( isset( $output['media_query'] ) ) ? $output['media_query'] : 'global';
272
-		$output['prefix']      = ( isset( $output['prefix'] ) ) ? $output['prefix'] : '';
273
-		$output['units']       = ( isset( $output['units'] ) ) ? $output['units'] : '';
274
-		$output['suffix']      = ( isset( $output['suffix'] ) ) ? $output['suffix'] : '';
271
+		$output[ 'media_query' ] = ( isset( $output[ 'media_query' ] ) ) ? $output[ 'media_query' ] : 'global';
272
+		$output[ 'prefix' ]      = ( isset( $output[ 'prefix' ] ) ) ? $output[ 'prefix' ] : '';
273
+		$output[ 'units' ]       = ( isset( $output[ 'units' ] ) ) ? $output[ 'units' ] : '';
274
+		$output[ 'suffix' ]      = ( isset( $output[ 'suffix' ] ) ) ? $output[ 'suffix' ] : '';
275 275
 
276 276
 		// Properties that can accept multiple values.
277 277
 		// Useful for example for gradients where all browsers use the "background-image" property
@@ -280,15 +280,15 @@  discard block
 block discarded – undo
280 280
 			'background-image',
281 281
 			'background',
282 282
 		);
283
-		if ( in_array( $output['property'], $accepts_multiple, true ) ) {
284
-			if ( isset( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) && ! is_array( $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] ) ) {
285
-				$this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = (array) $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ];
283
+		if ( in_array( $output[ 'property' ], $accepts_multiple, true ) ) {
284
+			if ( isset( $this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ] ) && ! is_array( $this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ] ) ) {
285
+				$this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ] = (array) $this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ];
286 286
 			}
287
-			$this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ][] = $output['prefix'] . $value . $output['units'] . $output['suffix'];
287
+			$this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ][ ] = $output[ 'prefix' ] . $value . $output[ 'units' ] . $output[ 'suffix' ];
288 288
 			return;
289 289
 		}
290 290
 		if ( is_string( $value ) || is_numeric( $value ) ) {
291
-			$this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = $output['prefix'] . $this->process_property_value( $output['property'], $value ) . $output['units'] . $output['suffix'];
291
+			$this->styles[ $output[ 'media_query' ] ][ $output[ 'element' ] ][ $output[ 'property' ] ] = $output[ 'prefix' ] . $this->process_property_value( $output[ 'property' ], $value ) . $output[ 'units' ] . $output[ 'suffix' ];
292 292
 		}
293 293
 	}
294 294
 
@@ -327,8 +327,8 @@  discard block
 block discarded – undo
327 327
 	 * @return string|array
328 328
 	 */
329 329
 	protected function process_value( $value, $output ) {
330
-		if ( isset( $output['property'] ) ) {
331
-			return $this->process_property_value( $output['property'], $value );
330
+		if ( isset( $output[ 'property' ] ) ) {
331
+			return $this->process_property_value( $output[ 'property' ], $value );
332 332
 		}
333 333
 		return $value;
334 334
 	}
Please login to merge, or discard this patch.