@@ -24,7 +24,7 @@ |
||
24 | 24 | $property = $output['property'] . '-' . $key; |
25 | 25 | } |
26 | 26 | $output['media_query'] = ( isset( $output['media_query'] ) ) ? $output['media_query'] : 'global'; |
27 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $property ] = $sub_value; |
|
27 | + $this->styles[$output['media_query']][$output['element']][$property] = $sub_value; |
|
28 | 28 | } |
29 | 29 | } |
30 | 30 | } |
@@ -133,11 +133,11 @@ discard block |
||
133 | 133 | return; |
134 | 134 | } |
135 | 135 | $output['media_query'] = ( isset( $output['media_query'] ) ) ? $output['media_query'] : 'global'; |
136 | - $output['prefix'] = ( isset( $output['prefix'] ) ) ? $output['prefix'] : ''; |
|
137 | - $output['units'] = ( isset( $output['units'] ) ) ? $output['units'] : ''; |
|
138 | - $output['suffix'] = ( isset( $output['suffix'] ) ) ? $output['suffix'] : ''; |
|
136 | + $output['prefix'] = ( isset( $output['prefix'] ) ) ? $output['prefix'] : ''; |
|
137 | + $output['units'] = ( isset( $output['units'] ) ) ? $output['units'] : ''; |
|
138 | + $output['suffix'] = ( isset( $output['suffix'] ) ) ? $output['suffix'] : ''; |
|
139 | 139 | |
140 | - $this->styles[ $output['media_query'] ][ $output['element'] ][ $output['property'] ] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
140 | + $this->styles[$output['media_query']][$output['element']][$output['property']] = $output['prefix'] . $value . $output['units'] . $output['suffix']; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | 'background-position' => 'Kirki_Output_Property_Background_Position', |
158 | 158 | ) ); |
159 | 159 | if ( array_key_exists( $property, $properties ) ) { |
160 | - $classname = $properties[ $property ]; |
|
160 | + $classname = $properties[$property]; |
|
161 | 161 | $obj = new $classname( $property, $value ); |
162 | 162 | return $obj->get_value(); |
163 | 163 | } |
@@ -24,13 +24,13 @@ |
||
24 | 24 | // Add backup font |
25 | 25 | if ( Kirki_Fonts::is_google_font( $this->value ) ) { |
26 | 26 | |
27 | - if ( isset( $google_fonts_array[ $this->value ] ) && isset( $google_fonts_array[ $this->value ]['category'] ) ) { |
|
28 | - if ( isset( $backup_fonts[ $google_fonts_array[ $this->value ]['category'] ] ) ) { |
|
27 | + if ( isset( $google_fonts_array[$this->value] ) && isset( $google_fonts_array[$this->value]['category'] ) ) { |
|
28 | + if ( isset( $backup_fonts[$google_fonts_array[$this->value]['category']] ) ) { |
|
29 | 29 | // Add double quotes if needed |
30 | 30 | if ( false !== strpos( $this->value, ' ' ) && false === strpos( $this->value, '"' ) ) { |
31 | - $this->value = '"' . $this->value . '", ' . $backup_fonts[ $google_fonts_array[ $this->value ]['category'] ]; |
|
31 | + $this->value = '"' . $this->value . '", ' . $backup_fonts[$google_fonts_array[$this->value]['category']]; |
|
32 | 32 | } else { |
33 | - $this->value .= ', ' . $backup_fonts[ $google_fonts_array[ $this->value ]['category'] ]; |
|
33 | + $this->value .= ', ' . $backup_fonts[$google_fonts_array[$this->value]['category']]; |
|
34 | 34 | } |
35 | 35 | } |
36 | 36 | } |
@@ -160,8 +160,8 @@ |
||
160 | 160 | |
161 | 161 | // Sanitize the font-size. |
162 | 162 | if ( 'font-size' === $key || 'letter-spacing' === $key || 'word-spacing' === $key ) { |
163 | - $value[ $key ] = Kirki_Sanitize_Values::css_dimension( $value[ $key ] ); |
|
164 | - if ( is_numeric( $value[ $key ] ) ) { |
|
163 | + $value[$key] = Kirki_Sanitize_Values::css_dimension( $value[$key] ); |
|
164 | + if ( is_numeric( $value[$key] ) ) { |
|
165 | 165 | $value['font-size'] .= 'px'; |
166 | 166 | } |
167 | 167 | } elseif ( 'line-height' === $key ) { |
@@ -48,7 +48,7 @@ |
||
48 | 48 | } |
49 | 49 | } |
50 | 50 | if ( $process_field && isset( $field['required'] ) && ! empty( $field['required'] ) ) { |
51 | - $field_dependencies[ $field['id'] ] = $field['required']; |
|
51 | + $field_dependencies[$field['id']] = $field['required']; |
|
52 | 52 | } |
53 | 53 | } |
54 | 54 | wp_localize_script( 'kirki_field_dependencies', 'fieldDependencies', $field_dependencies ); |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | $available_variants = array(); |
105 | 105 | foreach ( $variants as $variant ) { |
106 | 106 | if ( array_key_exists( $variant, $all_variants ) ) { |
107 | - $available_variants[] = array( 'id' => $variant, 'label' => $all_variants[ $variant ] ); |
|
107 | + $available_variants[] = array( 'id' => $variant, 'label' => $all_variants[$variant] ); |
|
108 | 108 | } |
109 | 109 | } |
110 | 110 | |
111 | 111 | $available_subsets = array(); |
112 | 112 | foreach ( $subsets as $subset ) { |
113 | 113 | if ( array_key_exists( $subset, $all_subsets ) ) { |
114 | - $available_subsets[] = array( 'id' => $subset, 'label' => $all_subsets[ $subset ] ); |
|
114 | + $available_subsets[] = array( 'id' => $subset, 'label' => $all_subsets[$subset] ); |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | |
@@ -388,6 +388,6 @@ discard block |
||
388 | 388 | if ( false === $id ) { |
389 | 389 | return $translation_strings; |
390 | 390 | } |
391 | - return $translation_strings[ $id ]; |
|
391 | + return $translation_strings[$id]; |
|
392 | 392 | } |
393 | 393 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | $key = esc_attr( $key ); |
52 | 52 | $setting = $key; |
53 | 53 | $tooltip = $field['tooltip']; |
54 | - $description = isset( $l10n[ 'background-' . $key ] ) ? $l10n[ 'background-' . $key ] : ''; |
|
54 | + $description = isset( $l10n['background-' . $key] ) ? $l10n['background-' . $key] : ''; |
|
55 | 55 | $output_property = 'background-' . $key; |
56 | 56 | $label = ( 0 === $i ) ? $field['label'] : ''; |
57 | 57 | $type = 'select'; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * Build the field. |
106 | 106 | * We're merging with the original field here, so any extra properties are inherited. |
107 | 107 | */ |
108 | - $fields[ $property_setting ] = array_merge( $field, array( |
|
108 | + $fields[$property_setting] = array_merge( $field, array( |
|
109 | 109 | 'type' => $type, |
110 | 110 | 'label' => $label, |
111 | 111 | 'settings' => $property_setting, |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | 'description' => $description, |
117 | 117 | 'default' => $value, |
118 | 118 | 'id' => sanitize_key( str_replace( '[', '-', str_replace( ']', '', $property_setting ) ) ), |
119 | - 'choices' => isset( $choices[ $key ] ) ? $choices[ $key ] : array(), |
|
119 | + 'choices' => isset( $choices[$key] ) ? $choices[$key] : array(), |
|
120 | 120 | 'sanitize_callback' => $sanitize_callback, |
121 | 121 | 'output' => ( ! empty( $field['output'] ) ) ? array( |
122 | 122 | array( |
@@ -93,14 +93,14 @@ discard block |
||
93 | 93 | if ( is_array( $this->choices ) ) { |
94 | 94 | foreach ( $this->choices as $choice => $value ) { |
95 | 95 | if ( 'labels' !== $choice && true === $value ) { |
96 | - $this->json['choices'][ $choice ] = true; |
|
96 | + $this->json['choices'][$choice] = true; |
|
97 | 97 | } |
98 | 98 | } |
99 | 99 | } |
100 | 100 | if ( is_array( $this->json['default'] ) ) { |
101 | 101 | foreach ( $this->json['default'] as $key => $value ) { |
102 | - if ( isset( $this->json['choices'][ $key ] ) && ! isset( $this->json['value'][ $key ] ) ) { |
|
103 | - $this->json['value'][ $key ] = $value; |
|
102 | + if ( isset( $this->json['choices'][$key] ) && ! isset( $this->json['value'][$key] ) ) { |
|
103 | + $this->json['value'][$key] = $value; |
|
104 | 104 | } |
105 | 105 | } |
106 | 106 | } |
@@ -208,6 +208,6 @@ discard block |
||
208 | 208 | if ( false === $id ) { |
209 | 209 | return $translation_strings; |
210 | 210 | } |
211 | - return $translation_strings[ $id ]; |
|
211 | + return $translation_strings[$id]; |
|
212 | 212 | } |
213 | 213 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $google_fonts = array(); |
101 | 101 | if ( is_array( $fonts ) ) { |
102 | 102 | foreach ( $fonts['items'] as $font ) { |
103 | - $google_fonts[ $font['family'] ] = array( |
|
103 | + $google_fonts[$font['family']] = array( |
|
104 | 104 | 'label' => $font['family'], |
105 | 105 | 'variants' => $font['variants'], |
106 | 106 | 'subsets' => $font['subsets'], |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | $fonts = self::get_all_fonts(); |
176 | 176 | $fonts_array = array(); |
177 | 177 | foreach ( $fonts as $key => $args ) { |
178 | - $fonts_array[ $key ] = $key; |
|
178 | + $fonts_array[$key] = $key; |
|
179 | 179 | } |
180 | 180 | return $fonts_array; |
181 | 181 | } |