Completed
Push — develop ( 5f2b0c...a03475 )
by Aristeides
02:53 queued 02:48
created
core/class-kirki-section.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 		$section_classname = 'WP_Customize_Section';
51 51
 
52 52
 		if ( isset( $args['type'] ) && array_key_exists( $args['type'], $this->section_types ) ) {
53
-			$section_classname = $this->section_types[ $args['type'] ];
53
+			$section_classname = $this->section_types[$args['type']];
54 54
 		}
55 55
 
56 56
 		// Add the section.
Please login to merge, or discard this patch.
core/class-kirki-panel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 		if ( ! isset( $args['type'] ) || ! array_key_exists( $args['type'], $this->panel_types ) ) {
50 50
 			$args['type'] = 'default';
51 51
 		}
52
-		$panel_classname = $this->panel_types[ $args['type'] ];
52
+		$panel_classname = $this->panel_types[$args['type']];
53 53
 
54 54
 		$wp_customize->add_panel( new $panel_classname( $wp_customize, sanitize_key( $args['id'] ), $args ) );
55 55
 
Please login to merge, or discard this patch.
settings/class-kirki-settings-repeater-setting.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@
 block discarded – undo
70 70
 			// Make sure that every row is an array, not an object.
71 71
 			foreach ( $sanitized as $key => $_value ) {
72 72
 				if ( empty( $_value ) ) {
73
-					unset( $sanitized[ $key ] );
73
+					unset( $sanitized[$key] );
74 74
 				} else {
75
-					$sanitized[ $key ] = (array) $_value;
75
+					$sanitized[$key] = (array) $_value;
76 76
 				}
77 77
 			}
78 78
 
Please login to merge, or discard this patch.
field/class-kirki-field-sortable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		}
53 53
 		$sanitized_value = array();
54 54
 		foreach ( $value as $sub_value ) {
55
-			if ( isset( $this->choices[ $sub_value ] ) ) {
55
+			if ( isset( $this->choices[$sub_value] ) ) {
56 56
 				$sanitized_value[] = esc_attr( $sub_value );
57 57
 			}
58 58
 		}
Please login to merge, or discard this patch.
field/class-kirki-field-select.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
 			foreach ( $value as $key => $subvalue ) {
78 78
 				if ( '' !== $subvalue || isset( $this->choices[''] ) ) {
79 79
 					$key = sanitize_key( $key );
80
-					$value[ $key ] = esc_attr( $subvalue );
80
+					$value[$key] = esc_attr( $subvalue );
81 81
 				}
82 82
 			}
83 83
 			return $value;
Please login to merge, or discard this patch.
core/class-kirki-helper.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
 		}
43 43
 		$count = count( $args );
44 44
 		for ( $i = 1; $i < $count; $i++ ) {
45
-			if ( is_array( $args[ $i ] ) ) {
46
-				$array = self::recurse( $array, $args[ $i ] );
45
+			if ( is_array( $args[$i] ) ) {
46
+				$array = self::recurse( $array, $args[$i] );
47 47
 			}
48 48
 		}
49 49
 		return $array;
@@ -61,15 +61,15 @@  discard block
 block discarded – undo
61 61
 	public static function recurse( $array, $array1 ) {
62 62
 		foreach ( $array1 as $key => $value ) {
63 63
 			// Create new key in $array, if it is empty or not an array.
64
-			if ( ! isset( $array[ $key ] ) || ( isset( $array[ $key ] ) && ! is_array( $array[ $key ] ) ) ) {
65
-				$array[ $key ] = array();
64
+			if ( ! isset( $array[$key] ) || ( isset( $array[$key] ) && ! is_array( $array[$key] ) ) ) {
65
+				$array[$key] = array();
66 66
 			}
67 67
 
68 68
 			// Overwrite the value in the base array.
69 69
 			if ( is_array( $value ) ) {
70
-				$value = self::recurse( $array[ $key ], $value );
70
+				$value = self::recurse( $array[$key], $value );
71 71
 			}
72
-			$array[ $key ] = $value;
72
+			$array[$key] = $value;
73 73
 		}
74 74
 		return $array;
75 75
 	}
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 		// Properly format the array.
152 152
 		$items = array();
153 153
 		foreach ( $posts as $post ) {
154
-			$items[ $post->ID ] = $post->post_title;
154
+			$items[$post->ID] = $post->post_title;
155 155
 		}
156 156
 		wp_reset_postdata();
157 157
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 		foreach ( $taxonomies as $taxonomy ) {
180 180
 			$id           = $taxonomy;
181 181
 			$taxonomy     = get_taxonomy( $taxonomy );
182
-			$items[ $id ] = $taxonomy->labels->name;
182
+			$items[$id] = $taxonomy->labels->name;
183 183
 		}
184 184
 
185 185
 		return $items;
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
 
205 205
 		// Build the array.
206 206
 		foreach ( $post_types as $post_type ) {
207
-			$items[ $post_type->name ] = $post_type->labels->name;
207
+			$items[$post_type->name] = $post_type->labels->name;
208 208
 		}
209 209
 
210 210
 		return $items;
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 
229 229
 		// Build the array.
230 230
 		foreach ( $terms as $term ) {
231
-			$items[ $term->term_id ] = $term->name;
231
+			$items[$term->term_id] = $term->name;
232 232
 		}
233 233
 
234 234
 		return $items;
@@ -599,8 +599,8 @@  discard block
 block discarded – undo
599 599
 				unset( $colors['primary'] );
600 600
 				$position_colors = array();
601 601
 				foreach ( $colors as $color_family ) {
602
-					if ( isset( $color_family[ $key ] ) ) {
603
-						$position_colors[] = $color_family[ $key ];
602
+					if ( isset( $color_family[$key] ) ) {
603
+						$position_colors[] = $color_family[$key];
604 604
 					}
605 605
 				}
606 606
 				return $position_colors;
@@ -616,8 +616,8 @@  discard block
 block discarded – undo
616 616
 			case 'primary':
617 617
 				return $colors['primary'];
618 618
 			default:
619
-				if ( isset( $colors[ $context ] ) ) {
620
-					return $colors[ $context ];
619
+				if ( isset( $colors[$context] ) ) {
620
+					return $colors[$context];
621 621
 				}
622 622
 				return $colors['primary'];
623 623
 		} // End switch().
Please login to merge, or discard this patch.
core/class-kirki-values.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -43,73 +43,73 @@  discard block
 block discarded – undo
43 43
 		$config_id = ( '' === $config_id ) ? 'global' : $config_id;
44 44
 
45 45
 		// Fallback to 'global' if $config_id is not found.
46
-		if ( ! isset( Kirki::$config[ $config_id ] ) ) {
46
+		if ( ! isset( Kirki::$config[$config_id] ) ) {
47 47
 			$config_id = 'global';
48 48
 		}
49 49
 
50
-		if ( 'theme_mod' === Kirki::$config[ $config_id ]['option_type'] ) {
50
+		if ( 'theme_mod' === Kirki::$config[$config_id]['option_type'] ) {
51 51
 
52 52
 			// We're using theme_mods so just get the value using get_theme_mod.
53 53
 			$default_value = null;
54
-			if ( isset( Kirki::$fields[ $field_id ] ) && isset( Kirki::$fields[ $field_id ]['default'] ) ) {
55
-				$default_value = Kirki::$fields[ $field_id ]['default'];
54
+			if ( isset( Kirki::$fields[$field_id] ) && isset( Kirki::$fields[$field_id]['default'] ) ) {
55
+				$default_value = Kirki::$fields[$field_id]['default'];
56 56
 			}
57 57
 			$value = get_theme_mod( $field_id, $default_value );
58 58
 
59 59
 			// If the field is a background field, then get the sub-fields
60 60
 			// and return an array of the values.
61
-			if ( isset( Kirki::$fields[ $field_id ] ) && isset( Kirki::$fields[ $field_id ]['type'] ) && 'background' === Kirki::$fields[ $field_id ]['type'] ) {
61
+			if ( isset( Kirki::$fields[$field_id] ) && isset( Kirki::$fields[$field_id]['type'] ) && 'background' === Kirki::$fields[$field_id]['type'] ) {
62 62
 				$value = array();
63 63
 				if ( null === $default_value ) {
64 64
 					$default_value = array();
65 65
 				}
66 66
 				foreach ( $default_value as $property_key => $property_default ) {
67
-					$value[ $property_key ] = get_theme_mod( $field_id . '_' . $property_key, $property_default );
67
+					$value[$property_key] = get_theme_mod( $field_id . '_' . $property_key, $property_default );
68 68
 				}
69 69
 			}
70
-		} elseif ( 'option' === Kirki::$config[ $config_id ]['option_type'] ) {
70
+		} elseif ( 'option' === Kirki::$config[$config_id]['option_type'] ) {
71 71
 
72 72
 			// We're using options.
73
-			if ( '' !== Kirki::$config[ $config_id ]['option_name'] ) {
73
+			if ( '' !== Kirki::$config[$config_id]['option_name'] ) {
74 74
 
75 75
 				// Options are serialized as a single option in the db.
76 76
 				// We'll have to get the option and then get the item from the array.
77
-				$options = get_option( Kirki::$config[ $config_id ]['option_name'] );
77
+				$options = get_option( Kirki::$config[$config_id]['option_name'] );
78 78
 
79
-				if ( ! isset( Kirki::$fields[ $field_id ] ) && isset( Kirki::$fields[ Kirki::$config[ $config_id ]['option_name'] . '[' . $field_id . ']' ] ) ) {
80
-					$field_id = Kirki::$config[ $config_id ]['option_name'] . '[' . $field_id . ']';
79
+				if ( ! isset( Kirki::$fields[$field_id] ) && isset( Kirki::$fields[Kirki::$config[$config_id]['option_name'] . '[' . $field_id . ']'] ) ) {
80
+					$field_id = Kirki::$config[$config_id]['option_name'] . '[' . $field_id . ']';
81 81
 				}
82
-				$setting_modified = str_replace( ']', '', str_replace( Kirki::$config[ $config_id ]['option_name'] . '[', '', $field_id ) );
82
+				$setting_modified = str_replace( ']', '', str_replace( Kirki::$config[$config_id]['option_name'] . '[', '', $field_id ) );
83 83
 
84 84
 				// If this is a background field, get the individual sub-fields and return an array.
85
-				if ( 'background' === Kirki::$fields[ $field_id ]['type'] ) {
85
+				if ( 'background' === Kirki::$fields[$field_id]['type'] ) {
86 86
 					$value = array();
87 87
 
88
-					foreach ( Kirki::$fields[ $field_id ]['default'] as $property => $property_default ) {
88
+					foreach ( Kirki::$fields[$field_id]['default'] as $property => $property_default ) {
89 89
 
90
-						if ( isset( $options[ $setting_modified . '_' . $property ] ) ) {
91
-							$value[ $property ] = $options[ $setting_modified . '_' . $property ];
90
+						if ( isset( $options[$setting_modified . '_' . $property] ) ) {
91
+							$value[$property] = $options[$setting_modified . '_' . $property];
92 92
 						} else {
93
-							$value[ $property ] = $property_default;
93
+							$value[$property] = $property_default;
94 94
 						}
95 95
 					}
96 96
 				} else {
97 97
 
98 98
 					// This is not a background field so continue and get the value.
99
-					$value = ( isset( $options[ $setting_modified ] ) ) ? $options[ $setting_modified ] : Kirki::$fields[ $field_id ]['default'];
99
+					$value = ( isset( $options[$setting_modified] ) ) ? $options[$setting_modified] : Kirki::$fields[$field_id]['default'];
100 100
 					$value = maybe_unserialize( $value );
101 101
 				}
102 102
 			} else {
103 103
 
104 104
 				// Each option separately saved in the db.
105
-				$value = get_option( $field_id, Kirki::$fields[ $field_id ]['default'] );
105
+				$value = get_option( $field_id, Kirki::$fields[$field_id]['default'] );
106 106
 
107 107
 				// If the field is a background field, then get the sub-fields.
108 108
 				// and return an array of the values.
109
-				if ( 'background' === Kirki::$fields[ $field_id ]['type'] ) {
109
+				if ( 'background' === Kirki::$fields[$field_id]['type'] ) {
110 110
 					$value = array();
111
-					foreach ( Kirki::$fields[ $field_id ]['default'] as $property_key => $property_default ) {
112
-						$value[ $property_key ] = get_option( $field_id . '_' . $property_key, $property_default );
111
+					foreach ( Kirki::$fields[$field_id]['default'] as $property_key => $property_default ) {
112
+						$value[$property_key] = get_option( $field_id . '_' . $property_key, $property_default );
113 113
 					}
114 114
 				}
115 115
 			} // End if().
@@ -135,8 +135,8 @@  discard block
 block discarded – undo
135 135
 			if ( isset( $field['option_name'] ) && '' !== $field['option_name'] ) {
136 136
 				$all_values = get_option( $field['option_name'], array() );
137 137
 				$sub_setting_id = str_replace( array( ']', $field['option_name'] . '[' ), '', $field['settings'] );
138
-				if ( isset( $all_values[ $sub_setting_id ] ) ) {
139
-					$value = $all_values[ $sub_setting_id ];
138
+				if ( isset( $all_values[$sub_setting_id] ) ) {
139
+					$value = $all_values[$sub_setting_id];
140 140
 				}
141 141
 			} else {
142 142
 				$value = get_option( $field['settings'], $field['default'] );
Please login to merge, or discard this patch.
field/class-kirki-field-repeater.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -72,23 +72,23 @@  discard block
 block discarded – undo
72 72
 
73 73
 			// Make sure the row is formatted as an array.
74 74
 			if ( ! is_array( $row_value ) ) {
75
-				$value[ $row_id ] = array();
75
+				$value[$row_id] = array();
76 76
 				continue;
77 77
 			}
78 78
 			// Start parsing sub-fields in rows.
79 79
 			foreach ( $row_value as $subfield_id => $subfield_value ) {
80 80
 				// Make sure this is a valid subfield.
81 81
 				// If it's not, then unset it.
82
-				if ( ! isset( $this->fields[ $subfield_id ] ) ) {
83
-					unset( $value[ $row_id ][ $subfield_id ] );
82
+				if ( ! isset( $this->fields[$subfield_id] ) ) {
83
+					unset( $value[$row_id][$subfield_id] );
84 84
 				}
85 85
 				// Get the subfield-type.
86
-				$subfield_type = $this->fields[ $subfield_id ]['type'];
86
+				$subfield_type = $this->fields[$subfield_id]['type'];
87 87
 
88 88
 				// Allow using a sanitize-callback on a per-field basis.
89
-				if ( isset( $this->fields[ $subfield_id ]['sanitize_callback'] ) ) {
89
+				if ( isset( $this->fields[$subfield_id]['sanitize_callback'] ) ) {
90 90
 
91
-					$subfield_value = call_user_func( $this->fields[ $subfield_id ]['sanitize_callback'], $subfield_value );
91
+					$subfield_value = call_user_func( $this->fields[$subfield_id]['sanitize_callback'], $subfield_value );
92 92
 
93 93
 				} else {
94 94
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
 					} // End switch().
136 136
 				} // End if().
137
-				$value[ $row_id ][ $subfield_id ] = $subfield_value;
137
+				$value[$row_id][$subfield_id] = $subfield_value;
138 138
 			} // End foreach().
139 139
 		} // End foreach().
140 140
 
Please login to merge, or discard this patch.
controls/typography/class-kirki-control-typography.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 				if ( array_key_exists( $variant, $all_variants ) ) {
157 157
 					$available_variants[] = array(
158 158
 						'id' => $variant,
159
-						'label' => $all_variants[ $variant ],
159
+						'label' => $all_variants[$variant],
160 160
 					);
161 161
 				}
162 162
 			}
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 				if ( array_key_exists( $subset, $all_subsets ) ) {
167 167
 					$available_subsets[] = array(
168 168
 						'id' => $subset,
169
-						'label' => $all_subsets[ $subset ],
169
+						'label' => $all_subsets[$subset],
170 170
 					);
171 171
 				}
172 172
 			}
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
 		if ( false === $id ) {
472 472
 			return $translation_strings;
473 473
 		}
474
-		return $translation_strings[ $id ];
474
+		return $translation_strings[$id];
475 475
 	}
476 476
 
477 477
 	/**
Please login to merge, or discard this patch.