@@ -14,14 +14,14 @@ |
||
14 | 14 | { |
15 | 15 | foreach( $command->popups as $slug => $label ) { |
16 | 16 | $buttonClass = glsr( Helper::class )->buildClassName( $slug.'-popup', 'Shortcodes' ); |
17 | - if( !class_exists( $buttonClass )) { |
|
18 | - glsr_log()->error( sprintf( 'Class missing (%s)', $buttonClass )); |
|
17 | + if( !class_exists( $buttonClass ) ) { |
|
18 | + glsr_log()->error( sprintf( 'Class missing (%s)', $buttonClass ) ); |
|
19 | 19 | continue; |
20 | 20 | } |
21 | 21 | $shortcode = glsr( $buttonClass )->register( $slug, [ |
22 | 22 | 'label' => $label, |
23 | 23 | 'title' => $label, |
24 | - ]); |
|
24 | + ] ); |
|
25 | 25 | glsr()->mceShortcodes[$slug] = $shortcode->properties; |
26 | 26 | } |
27 | 27 | } |
@@ -261,7 +261,9 @@ discard block |
||
261 | 261 | { |
262 | 262 | $result = []; |
263 | 263 | foreach( $array as $key => $value ) { |
264 | - if( !$value )continue; |
|
264 | + if( !$value ) { |
|
265 | + continue; |
|
266 | + } |
|
265 | 267 | $result[$key] = is_array( $value ) |
266 | 268 | ? $this->removeEmptyArrayValues( $value ) |
267 | 269 | : $value; |
@@ -274,7 +276,8 @@ discard block |
||
274 | 276 | * @param string $text |
275 | 277 | * @return string |
276 | 278 | */ |
277 | - public function removePrefix( $prefix, $text ) { |
|
279 | + public function removePrefix( $prefix, $text ) |
|
280 | + { |
|
278 | 281 | return 0 === strpos( $text, $prefix ) |
279 | 282 | ? substr( $text, strlen( $prefix )) |
280 | 283 | : $text; |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $className = $this->camelCase( $name ); |
18 | 18 | $path = ltrim( str_replace( __NAMESPACE__, '', $path ), '\\' ); |
19 | - return !empty( $path ) |
|
19 | + return !empty($path) |
|
20 | 20 | ? __NAMESPACE__.'\\'.$path.'\\'.$className |
21 | 21 | : $className; |
22 | 22 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function buildMethodName( $name, $prefix = '' ) |
30 | 30 | { |
31 | - return lcfirst( $prefix.$this->buildClassName( $name )); |
|
31 | + return lcfirst( $prefix.$this->buildClassName( $name ) ); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function buildPropertyName( $name ) |
39 | 39 | { |
40 | - return lcfirst( $this->buildClassName( $name )); |
|
40 | + return lcfirst( $this->buildClassName( $name ) ); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function camelCase( $string ) |
48 | 48 | { |
49 | - $string = ucwords( str_replace( ['-', '_'], ' ', trim( $string ))); |
|
49 | + $string = ucwords( str_replace( ['-', '_'], ' ', trim( $string ) ) ); |
|
50 | 50 | return str_replace( ' ', '', $string ); |
51 | 51 | } |
52 | 52 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function convertPathToId( $path, $prefix = '' ) |
80 | 80 | { |
81 | - return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix )); |
|
81 | + return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ) ); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | $levels = explode( '.', $path ); |
91 | 91 | return array_reduce( $levels, function( $result, $value ) { |
92 | - return $result.= '['.$value.']'; |
|
92 | + return $result .= '['.$value.']'; |
|
93 | 93 | }, $prefix ); |
94 | 94 | } |
95 | 95 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function convertStringToArray( $string, $callback = null ) |
102 | 102 | { |
103 | - $array = array_map( 'trim', explode( ',', $string )); |
|
103 | + $array = array_map( 'trim', explode( ',', $string ) ); |
|
104 | 104 | return $callback |
105 | 105 | ? array_filter( $array, $callback ) |
106 | 106 | : array_filter( $array ); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public function dashCase( $string ) |
114 | 114 | { |
115 | - return str_replace( '_', '-', $this->snakeCase( $string )); |
|
115 | + return str_replace( '_', '-', $this->snakeCase( $string ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function filterInput( $key, array $request = [] ) |
136 | 136 | { |
137 | - if( isset( $request[$key] )) { |
|
137 | + if( isset($request[$key]) ) { |
|
138 | 138 | return $request[$key]; |
139 | 139 | } |
140 | 140 | $variable = filter_input( INPUT_POST, $key ); |
141 | - if( is_null( $variable ) && isset( $_POST[$key] )) { |
|
141 | + if( is_null( $variable ) && isset($_POST[$key]) ) { |
|
142 | 142 | $variable = $_POST[$key]; |
143 | 143 | } |
144 | 144 | return $variable; |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | public function filterInputArray( $key ) |
152 | 152 | { |
153 | 153 | $variable = filter_input( INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
154 | - if( empty( $variable ) && !empty( $_POST[$key] ) && is_array( $_POST[$key] )) { |
|
154 | + if( empty($variable) && !empty($_POST[$key]) && is_array( $_POST[$key] ) ) { |
|
155 | 155 | $variable = $_POST[$key]; |
156 | 156 | } |
157 | 157 | return (array)$variable; |
@@ -167,13 +167,13 @@ discard block |
||
167 | 167 | $result = []; |
168 | 168 | foreach( $array as $key => $value ) { |
169 | 169 | $newKey = ltrim( $prefix.'.'.$key, '.' ); |
170 | - if( $this->isIndexedFlatArray( $value )) { |
|
170 | + if( $this->isIndexedFlatArray( $value ) ) { |
|
171 | 171 | if( $flattenValue ) { |
172 | 172 | $value = '['.implode( ', ', $value ).']'; |
173 | 173 | } |
174 | 174 | } |
175 | - else if( is_array( $value )) { |
|
176 | - $result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey )); |
|
175 | + else if( is_array( $value ) ) { |
|
176 | + $result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ) ); |
|
177 | 177 | continue; |
178 | 178 | } |
179 | 179 | $result[$newKey] = $value; |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | Whip::IPV4 => $cloudflareIps['v4'], |
196 | 196 | Whip::IPV6 => $ipv6, |
197 | 197 | ], |
198 | - ]))->getValidIpAddress(); |
|
198 | + ] ))->getValidIpAddress(); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | { |
209 | 209 | $keys = explode( '.', $path ); |
210 | 210 | foreach( $keys as $key ) { |
211 | - if( !isset( $values[$key] )) { |
|
211 | + if( !isset($values[$key]) ) { |
|
212 | 212 | return $fallback; |
213 | 213 | } |
214 | 214 | $values = $values[$key]; |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | */ |
223 | 223 | public function isIndexedArray( $array ) |
224 | 224 | { |
225 | - if( !is_array( $array )) { |
|
225 | + if( !is_array( $array ) ) { |
|
226 | 226 | return false; |
227 | 227 | } |
228 | 228 | $current = 0; |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | */ |
242 | 242 | public function isIndexedFlatArray( $array ) |
243 | 243 | { |
244 | - if( !is_array( $array ) || array_filter( $array, 'is_array' )) { |
|
244 | + if( !is_array( $array ) || array_filter( $array, 'is_array' ) ) { |
|
245 | 245 | return false; |
246 | 246 | } |
247 | 247 | return $this->isIndexedArray( $array ); |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | */ |
255 | 255 | public function prefixString( $string, $prefix = '' ) |
256 | 256 | { |
257 | - return $prefix.str_replace( $prefix, '', trim( $string )); |
|
257 | + return $prefix.str_replace( $prefix, '', trim( $string ) ); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function removePrefix( $prefix, $text ) { |
281 | 281 | return 0 === strpos( $text, $prefix ) |
282 | - ? substr( $text, strlen( $prefix )) |
|
282 | + ? substr( $text, strlen( $prefix ) ) |
|
283 | 283 | : $text; |
284 | 284 | } |
285 | 285 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | */ |
311 | 311 | public function snakeCase( $string ) |
312 | 312 | { |
313 | - if( !ctype_lower( $string )) { |
|
313 | + if( !ctype_lower( $string ) ) { |
|
314 | 314 | $string = preg_replace( '/\s+/u', '', $string ); |
315 | 315 | $string = preg_replace( '/(.)(?=[A-Z])/u', '$1_', $string ); |
316 | 316 | $string = function_exists( 'mb_strtolower' ) |
@@ -327,6 +327,6 @@ discard block |
||
327 | 327 | */ |
328 | 328 | public function startsWith( $needle, $haystack ) |
329 | 329 | { |
330 | - return substr( $haystack, 0, strlen( $needle )) === $needle; |
|
330 | + return substr( $haystack, 0, strlen( $needle ) ) === $needle; |
|
331 | 331 | } |
332 | 332 | } |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | 'templates/form/submit-button', |
51 | 51 | 'templates/reviews-form', |
52 | 52 | ]; |
53 | - if( !preg_match( '('.implode( '|', $styledViews ).')', $view )) { |
|
53 | + if( !preg_match( '('.implode( '|', $styledViews ).')', $view ) ) { |
|
54 | 54 | return $view; |
55 | 55 | } |
56 | 56 | $views = $this->generatePossibleViews( $view ); |
57 | 57 | foreach( $views as $possibleView ) { |
58 | - if( !file_exists( glsr()->path( $possibleView.'.php' )))continue; |
|
58 | + if( !file_exists( glsr()->path( $possibleView.'.php' ) ) )continue; |
|
59 | 59 | return glsr( Helper::class )->removePrefix( 'views/', $possibleView ); |
60 | 60 | } |
61 | 61 | return $view; |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function modifyField( Builder $instance ) |
90 | 90 | { |
91 | - if( !$this->isPublicInstance( $instance ) || empty( array_filter( $this->fields )))return; |
|
91 | + if( !$this->isPublicInstance( $instance ) || empty(array_filter( $this->fields )) )return; |
|
92 | 92 | call_user_func_array( [$this, 'customize'], [&$instance] ); |
93 | 93 | } |
94 | 94 | |
@@ -105,9 +105,9 @@ discard block |
||
105 | 105 | */ |
106 | 106 | protected function customize( Builder $instance ) |
107 | 107 | { |
108 | - $args = wp_parse_args( $instance->args, array_fill_keys( ['class', 'type'], '' )); |
|
108 | + $args = wp_parse_args( $instance->args, array_fill_keys( ['class', 'type'], '' ) ); |
|
109 | 109 | $key = $instance->tag.'_'.$args['type']; |
110 | - $classes = !isset( $this->fields[$key] ) |
|
110 | + $classes = !isset($this->fields[$key]) |
|
111 | 111 | ? $this->fields[$instance->tag] |
112 | 112 | : $this->fields[$key]; |
113 | 113 | $instance->args['class'] = trim( $args['class'].' '.$classes ); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $args = wp_parse_args( $instance->args, [ |
142 | 142 | 'is_public' => false, |
143 | 143 | 'is_raw' => false, |
144 | - ]); |
|
144 | + ] ); |
|
145 | 145 | if( is_admin() || !$args['is_public'] || $args['is_raw'] ) { |
146 | 146 | return false; |
147 | 147 | } |
@@ -55,7 +55,9 @@ discard block |
||
55 | 55 | } |
56 | 56 | $views = $this->generatePossibleViews( $view ); |
57 | 57 | foreach( $views as $possibleView ) { |
58 | - if( !file_exists( glsr()->path( $possibleView.'.php' )))continue; |
|
58 | + if( !file_exists( glsr()->path( $possibleView.'.php' ))) { |
|
59 | + continue; |
|
60 | + } |
|
59 | 61 | return glsr( Helper::class )->removePrefix( 'views/', $possibleView ); |
60 | 62 | } |
61 | 63 | return $view; |
@@ -88,7 +90,9 @@ discard block |
||
88 | 90 | */ |
89 | 91 | public function modifyField( Builder $instance ) |
90 | 92 | { |
91 | - if( !$this->isPublicInstance( $instance ) || empty( array_filter( $this->fields )))return; |
|
93 | + if( !$this->isPublicInstance( $instance ) || empty( array_filter( $this->fields ))) { |
|
94 | + return; |
|
95 | + } |
|
92 | 96 | call_user_func_array( [$this, 'customize'], [&$instance] ); |
93 | 97 | } |
94 | 98 |
@@ -60,7 +60,9 @@ discard block |
||
60 | 60 | public function catchFatalError() |
61 | 61 | { |
62 | 62 | $error = error_get_last(); |
63 | - if( $error['type'] !== E_ERROR || strpos( $error['message'], $this->path() ) === false )return; |
|
63 | + if( $error['type'] !== E_ERROR || strpos( $error['message'], $this->path() ) === false ) { |
|
64 | + return; |
|
65 | + } |
|
64 | 66 | glsr_log()->error( $error['message'] ); |
65 | 67 | } |
66 | 68 | |
@@ -204,7 +206,9 @@ discard block |
||
204 | 206 | */ |
205 | 207 | public function scheduleCronJob() |
206 | 208 | { |
207 | - if( wp_next_scheduled( static::CRON_EVENT ))return; |
|
209 | + if( wp_next_scheduled( static::CRON_EVENT )) { |
|
210 | + return; |
|
211 | + } |
|
208 | 212 | wp_schedule_event( time(), 'twicedaily', static::CRON_EVENT ); |
209 | 213 | } |
210 | 214 | |
@@ -244,7 +248,9 @@ discard block |
||
244 | 248 | || !in_array( plugin_basename( $this->file ), $data['plugins'] ) |
245 | 249 | || $data['action'] != 'update' |
246 | 250 | || $data['type'] != 'plugin' |
247 | - )return; |
|
251 | + ) { |
|
252 | + return; |
|
253 | + } |
|
248 | 254 | $this->upgrade(); |
249 | 255 | } |
250 | 256 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | public function __construct() |
34 | 34 | { |
35 | 35 | static::$instance = $this; |
36 | - $this->file = realpath( trailingslashit( dirname( __DIR__ )).static::ID.'.php' ); |
|
36 | + $this->file = realpath( trailingslashit( dirname( __DIR__ ) ).static::ID.'.php' ); |
|
37 | 37 | $plugin = get_file_data( $this->file, [ |
38 | 38 | 'languages' => 'Domain Path', |
39 | 39 | 'name' => 'Plugin Name', |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | { |
86 | 86 | $constant = 'static::'.$property; |
87 | 87 | return defined( $constant ) |
88 | - ? apply_filters( 'site-reviews/const/'.$property, constant( $constant )) |
|
88 | + ? apply_filters( 'site-reviews/const/'.$property, constant( $constant ) ) |
|
89 | 89 | : ''; |
90 | 90 | } |
91 | 91 | |
@@ -104,14 +104,14 @@ discard block |
||
104 | 104 | public function file( $view ) |
105 | 105 | { |
106 | 106 | $file = ''; |
107 | - $view.= '.php'; |
|
108 | - if( glsr( Helper::class )->startsWith( 'templates/', $view )) { |
|
109 | - $file = $this->themePath( glsr( Helper::class )->removePrefix( 'templates/', $view )); |
|
110 | - if( !file_exists( $file )) { |
|
107 | + $view .= '.php'; |
|
108 | + if( glsr( Helper::class )->startsWith( 'templates/', $view ) ) { |
|
109 | + $file = $this->themePath( glsr( Helper::class )->removePrefix( 'templates/', $view ) ); |
|
110 | + if( !file_exists( $file ) ) { |
|
111 | 111 | $file = $this->path( $view ); |
112 | 112 | } |
113 | 113 | } |
114 | - if( !file_exists( $file )) { |
|
114 | + if( !file_exists( $file ) ) { |
|
115 | 115 | $file = $this->path( 'views/'.$view ); |
116 | 116 | } |
117 | 117 | return $file; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function getDefaults() |
124 | 124 | { |
125 | - if( empty( $this->defaults )) { |
|
125 | + if( empty($this->defaults) ) { |
|
126 | 126 | $this->defaults = $this->make( DefaultsManager::class )->get(); |
127 | 127 | $this->upgrade(); |
128 | 128 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | public function hasPermission() |
136 | 136 | { |
137 | 137 | $isAdmin = $this->isAdmin(); |
138 | - return !$isAdmin || ( $isAdmin && current_user_can( $this->constant( 'CAPABILITY' ))); |
|
138 | + return !$isAdmin || ($isAdmin && current_user_can( $this->constant( 'CAPABILITY' ) )); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | $types = apply_filters( 'site-reviews/addon/types', [] ); |
192 | 192 | $this->reviewTypes = wp_parse_args( $types, [ |
193 | 193 | 'local' => __( 'Local', 'site-reviews' ), |
194 | - ]); |
|
194 | + ] ); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | { |
203 | 203 | $view = apply_filters( 'site-reviews/render/view', $view, $data ); |
204 | 204 | $file = apply_filters( 'site-reviews/views/file', $this->file( $view ), $view, $data ); |
205 | - if( !file_exists( $file )) { |
|
205 | + if( !file_exists( $file ) ) { |
|
206 | 206 | glsr_log()->error( 'File not found: '.$file ); |
207 | 207 | return; |
208 | 208 | } |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | */ |
217 | 217 | public function scheduleCronJob() |
218 | 218 | { |
219 | - if( wp_next_scheduled( static::CRON_EVENT ))return; |
|
219 | + if( wp_next_scheduled( static::CRON_EVENT ) )return; |
|
220 | 220 | wp_schedule_event( time(), 'twicedaily', static::CRON_EVENT ); |
221 | 221 | } |
222 | 222 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | */ |
235 | 235 | public function unscheduleCronJob() |
236 | 236 | { |
237 | - wp_unschedule_event( intval( wp_next_scheduled( static::CRON_EVENT )), static::CRON_EVENT ); |
|
237 | + wp_unschedule_event( intval( wp_next_scheduled( static::CRON_EVENT ) ), static::CRON_EVENT ); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | /** |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | */ |
267 | 267 | public function url( $path = '' ) |
268 | 268 | { |
269 | - $url = esc_url( plugin_dir_url( $this->file ).ltrim( trim( $path ), '/' )); |
|
269 | + $url = esc_url( plugin_dir_url( $this->file ).ltrim( trim( $path ), '/' ) ); |
|
270 | 270 | return apply_filters( 'site-reviews/url', $url, $path ); |
271 | 271 | } |
272 | 272 | } |
@@ -55,7 +55,9 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function enqueuePolyfillService() |
57 | 57 | { |
58 | - if( !apply_filters( 'site-reviews/assets/polyfill', true ))return; |
|
58 | + if( !apply_filters( 'site-reviews/assets/polyfill', true )) { |
|
59 | + return; |
|
60 | + } |
|
59 | 61 | wp_enqueue_script( Application::ID.'/polyfill', add_query_arg([ |
60 | 62 | 'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,MutationObserver', |
61 | 63 | 'flags' => 'gated', |
@@ -70,7 +72,9 @@ discard block |
||
70 | 72 | // wpforms-recaptcha |
71 | 73 | // google-recaptcha |
72 | 74 | // nf-google-recaptcha |
73 | - if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return; |
|
75 | + if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) { |
|
76 | + return; |
|
77 | + } |
|
74 | 78 | $language = apply_filters( 'site-reviews/recaptcha/language', get_locale() ); |
75 | 79 | wp_enqueue_script( Application::ID.'/google-recaptcha', add_query_arg([ |
76 | 80 | 'hl' => $language, |
@@ -84,7 +88,9 @@ discard block |
||
84 | 88 | public function inlineStyles() |
85 | 89 | { |
86 | 90 | $inlineStylesheetPath = glsr()->path( 'assets/styles/inline-styles.css' ); |
87 | - if( !apply_filters( 'site-reviews/assets/css', true ))return; |
|
91 | + if( !apply_filters( 'site-reviews/assets/css', true )) { |
|
92 | + return; |
|
93 | + } |
|
88 | 94 | if( !file_exists( $inlineStylesheetPath )) { |
89 | 95 | glsr_log()->error( 'Inline stylesheet is missing: '.$inlineStylesheetPath ); |
90 | 96 | return; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function enqueueAssets() |
29 | 29 | { |
30 | - if( apply_filters( 'site-reviews/assets/css', true )) { |
|
30 | + if( apply_filters( 'site-reviews/assets/css', true ) ) { |
|
31 | 31 | wp_enqueue_style( |
32 | 32 | Application::ID, |
33 | 33 | $this->getStylesheet(), |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | glsr()->version |
36 | 36 | ); |
37 | 37 | } |
38 | - if( apply_filters( 'site-reviews/assets/js', true )) { |
|
38 | + if( apply_filters( 'site-reviews/assets/js', true ) ) { |
|
39 | 39 | $dependencies = apply_filters( 'site-reviews/assets/polyfill', true ) |
40 | 40 | ? [Application::ID.'/polyfill'] |
41 | 41 | : []; |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function enqueuePolyfillService() |
57 | 57 | { |
58 | - if( !apply_filters( 'site-reviews/assets/polyfill', true ))return; |
|
59 | - wp_enqueue_script( Application::ID.'/polyfill', add_query_arg([ |
|
58 | + if( !apply_filters( 'site-reviews/assets/polyfill', true ) )return; |
|
59 | + wp_enqueue_script( Application::ID.'/polyfill', add_query_arg( [ |
|
60 | 60 | 'features' => 'CustomEvent,Element.prototype.closest,Element.prototype.dataset,Event,MutationObserver', |
61 | 61 | 'flags' => 'gated', |
62 | - ], 'https://cdn.polyfill.io/v2/polyfill.min.js' )); |
|
62 | + ], 'https://cdn.polyfill.io/v2/polyfill.min.js' ) ); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | // nf-google-recaptcha |
73 | 73 | if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return; |
74 | 74 | $language = apply_filters( 'site-reviews/recaptcha/language', get_locale() ); |
75 | - wp_enqueue_script( Application::ID.'/google-recaptcha', add_query_arg([ |
|
75 | + wp_enqueue_script( Application::ID.'/google-recaptcha', add_query_arg( [ |
|
76 | 76 | 'hl' => $language, |
77 | 77 | 'render' => 'explicit', |
78 | - ], 'https://www.google.com/recaptcha/api.js' )); |
|
78 | + ], 'https://www.google.com/recaptcha/api.js' ) ); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
@@ -84,8 +84,8 @@ discard block |
||
84 | 84 | public function inlineStyles() |
85 | 85 | { |
86 | 86 | $inlineStylesheetPath = glsr()->path( 'assets/styles/inline-styles.css' ); |
87 | - if( !apply_filters( 'site-reviews/assets/css', true ))return; |
|
88 | - if( !file_exists( $inlineStylesheetPath )) { |
|
87 | + if( !apply_filters( 'site-reviews/assets/css', true ) )return; |
|
88 | + if( !file_exists( $inlineStylesheetPath ) ) { |
|
89 | 89 | glsr_log()->error( 'Inline stylesheet is missing: '.$inlineStylesheetPath ); |
90 | 90 | return; |
91 | 91 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | protected function getFixedSelectorsForPagination() |
122 | 122 | { |
123 | - $selectors = ['#wpadminbar','.site-navigation-fixed']; |
|
123 | + $selectors = ['#wpadminbar', '.site-navigation-fixed']; |
|
124 | 124 | return apply_filters( 'site-reviews/enqueue/public/localize/ajax-pagination', $selectors ); |
125 | 125 | } |
126 | 126 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | protected function getStylesheet() |
131 | 131 | { |
132 | 132 | $currentStyle = glsr( Style::class )->style; |
133 | - return file_exists( glsr()->path( 'assets/styles/custom/'.$currentStyle.'.css' )) |
|
133 | + return file_exists( glsr()->path( 'assets/styles/custom/'.$currentStyle.'.css' ) ) |
|
134 | 134 | ? glsr()->url( 'assets/styles/custom/'.$currentStyle.'.css' ) |
135 | 135 | : glsr()->url( 'assets/styles/'.Application::ID.'.css' ); |
136 | 136 | } |
@@ -17,7 +17,9 @@ discard block |
||
17 | 17 | public function routeAdminPostRequest() |
18 | 18 | { |
19 | 19 | $request = $this->getRequest(); |
20 | - if( !$this->isValidPostRequest( $request ))return; |
|
20 | + if( !$this->isValidPostRequest( $request )) { |
|
21 | + return; |
|
22 | + } |
|
21 | 23 | check_admin_referer( $request['_action'] ); |
22 | 24 | $this->routeRequest( 'admin', $request['_action'], $request ); |
23 | 25 | } |
@@ -39,10 +41,16 @@ discard block |
||
39 | 41 | */ |
40 | 42 | public function routePublicPostRequest() |
41 | 43 | { |
42 | - if( is_admin() )return; |
|
44 | + if( is_admin() ) { |
|
45 | + return; |
|
46 | + } |
|
43 | 47 | $request = $this->getRequest(); |
44 | - if( !$this->isValidPostRequest( $request ))return; |
|
45 | - if( !$this->isValidPublicNonce( $request ))return; |
|
48 | + if( !$this->isValidPostRequest( $request )) { |
|
49 | + return; |
|
50 | + } |
|
51 | + if( !$this->isValidPublicNonce( $request )) { |
|
52 | + return; |
|
53 | + } |
|
46 | 54 | $this->routeRequest( 'public', $request['_action'], $request ); |
47 | 55 | } |
48 | 56 | |
@@ -51,7 +59,9 @@ discard block |
||
51 | 59 | */ |
52 | 60 | protected function checkAjaxNonce( array $request ) |
53 | 61 | { |
54 | - if( !is_user_logged_in() )return; |
|
62 | + if( !is_user_logged_in() ) { |
|
63 | + return; |
|
64 | + } |
|
55 | 65 | if( !isset( $request['_nonce'] )) { |
56 | 66 | $this->sendAjaxError( 'request is missing a nonce', $request ); |
57 | 67 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | public function routeAdminPostRequest() |
18 | 18 | { |
19 | 19 | $request = $this->getRequest(); |
20 | - if( !$this->isValidPostRequest( $request ))return; |
|
20 | + if( !$this->isValidPostRequest( $request ) )return; |
|
21 | 21 | check_admin_referer( $request['_action'] ); |
22 | 22 | $this->routeRequest( 'admin', $request['_action'], $request ); |
23 | 23 | } |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | { |
42 | 42 | if( is_admin() )return; |
43 | 43 | $request = $this->getRequest(); |
44 | - if( !$this->isValidPostRequest( $request ))return; |
|
45 | - if( !$this->isValidPublicNonce( $request ))return; |
|
44 | + if( !$this->isValidPostRequest( $request ) )return; |
|
45 | + if( !$this->isValidPublicNonce( $request ) )return; |
|
46 | 46 | $this->routeRequest( 'public', $request['_action'], $request ); |
47 | 47 | } |
48 | 48 | |
@@ -52,10 +52,10 @@ discard block |
||
52 | 52 | protected function checkAjaxNonce( array $request ) |
53 | 53 | { |
54 | 54 | if( !is_user_logged_in() )return; |
55 | - if( !isset( $request['_nonce'] )) { |
|
55 | + if( !isset($request['_nonce']) ) { |
|
56 | 56 | $this->sendAjaxError( 'request is missing a nonce', $request ); |
57 | 57 | } |
58 | - if( !wp_verify_nonce( $request['_nonce'], $request['_action'] )) { |
|
58 | + if( !wp_verify_nonce( $request['_nonce'], $request['_action'] ) ) { |
|
59 | 59 | $this->sendAjaxError( 'request failed the nonce check', $request, 403 ); |
60 | 60 | } |
61 | 61 | } |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | */ |
66 | 66 | protected function checkAjaxRequest( array $request ) |
67 | 67 | { |
68 | - if( !isset( $request['_action'] )) { |
|
68 | + if( !isset($request['_action']) ) { |
|
69 | 69 | $this->sendAjaxError( 'request must include an action', $request ); |
70 | 70 | } |
71 | - if( empty( $request['_ajax_request'] )) { |
|
71 | + if( empty($request['_ajax_request']) ) { |
|
72 | 72 | $this->sendAjaxError( 'request is invalid', $request ); |
73 | 73 | } |
74 | 74 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | protected function isValidPostRequest( array $request = [] ) |
97 | 97 | { |
98 | - return !empty( $request['_action'] ) && empty( $request['_ajax_request'] ); |
|
98 | + return !empty($request['_action']) && empty($request['_ajax_request']); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | protected function isValidPublicNonce( array $request ) |
105 | 105 | { |
106 | - if( is_user_logged_in() && !wp_verify_nonce( $request['_nonce'], $request['_action'] )) { |
|
106 | + if( is_user_logged_in() && !wp_verify_nonce( $request['_nonce'], $request['_action'] ) ) { |
|
107 | 107 | glsr_log()->error( 'nonce check failed for public request' )->debug( $request ); |
108 | 108 | return false; |
109 | 109 | } |
@@ -118,11 +118,11 @@ discard block |
||
118 | 118 | protected function routeRequest( $type, $action, array $request = [] ) |
119 | 119 | { |
120 | 120 | $actionHook = 'site-reviews/route/'.$type.'/request'; |
121 | - $controller = glsr( glsr( Helper::class )->buildClassName( $type.'-controller', 'Controllers' )); |
|
121 | + $controller = glsr( glsr( Helper::class )->buildClassName( $type.'-controller', 'Controllers' ) ); |
|
122 | 122 | $method = glsr( Helper::class )->buildMethodName( $action, 'router' ); |
123 | 123 | $request = apply_filters( 'site-reviews/route/request', $request, $action, $type ); |
124 | 124 | do_action( $actionHook, $action, $request ); |
125 | - if( is_callable( [$controller, $method] )) { |
|
125 | + if( is_callable( [$controller, $method] ) ) { |
|
126 | 126 | call_user_func( [$controller, $method], $request ); |
127 | 127 | return; |
128 | 128 | } |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | { |
141 | 141 | glsr_log()->error( $error )->debug( $request ); |
142 | 142 | glsr( Notice::class )->addError( __( 'There was an error (try refreshing the page).', 'site-reviews' ).' <code>'.$error.'</code>' ); |
143 | - wp_send_json_error([ |
|
143 | + wp_send_json_error( [ |
|
144 | 144 | 'message' => __( 'The form could not be submitted. Please notify the site administrator.', 'site-reviews' ), |
145 | 145 | 'notices' => glsr( Notice::class )->get(), |
146 | 146 | 'error' => $error, |
147 | - ]); |
|
147 | + ] ); |
|
148 | 148 | } |
149 | 149 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function build( array $args = [] ) |
14 | 14 | { |
15 | - require_once( ABSPATH.'wp-admin/includes/template.php' ); |
|
15 | + require_once(ABSPATH.'wp-admin/includes/template.php'); |
|
16 | 16 | ob_start(); |
17 | 17 | wp_star_rating( $args ); |
18 | 18 | $stars = ob_get_clean(); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | 'response' => $this->buildResponse(), |
66 | 66 | 'submit_button' => $this->buildSubmitButton().$this->buildRecaptcha(), |
67 | 67 | ], |
68 | - ]); |
|
68 | + ] ); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | 'context' => [ |
78 | 78 | 'text' => trim( $this->getLoginText().' '.$this->getRegisterText() ), |
79 | 79 | ], |
80 | - ]); |
|
80 | + ] ); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | protected function buildRecaptcha() |
87 | 87 | { |
88 | 88 | if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return; |
89 | - return glsr( Builder::class )->div([ |
|
89 | + return glsr( Builder::class )->div( [ |
|
90 | 90 | 'class' => 'glsr-recaptcha-holder', |
91 | 91 | 'data-badge' => glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ), |
92 | - 'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' )), |
|
92 | + 'data-sitekey' => sanitize_text_field( glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.key' ) ), |
|
93 | 93 | 'data-size' => 'invisible', |
94 | - ]); |
|
94 | + ] ); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | protected function buildResponse() |
101 | 101 | { |
102 | - $classes = !empty( $this->errors ) |
|
102 | + $classes = !empty($this->errors) |
|
103 | 103 | ? glsr( StyleValidationDefaults::class )->defaults()['message_error_class'] |
104 | 104 | : ''; |
105 | 105 | return glsr( Template::class )->build( 'templates/form/response', [ |
@@ -107,8 +107,8 @@ discard block |
||
107 | 107 | 'class' => $classes, |
108 | 108 | 'message' => wpautop( $this->message ), |
109 | 109 | ], |
110 | - 'has_errors' => !empty( $this->errors ), |
|
111 | - ]); |
|
110 | + 'has_errors' => !empty($this->errors), |
|
111 | + ] ); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | 'context' => [ |
121 | 121 | 'text' => __( 'Submit your review', 'site-reviews' ), |
122 | 122 | ], |
123 | - ]); |
|
123 | + ] ); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -138,14 +138,14 @@ discard block |
||
138 | 138 | { |
139 | 139 | $hiddenFields = $this->getHiddenFields(); |
140 | 140 | $hiddenFields[] = $this->getHoneypotField(); |
141 | - $fields = $this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' )); |
|
141 | + $fields = $this->normalizeFields( glsr( Form::class )->getFields( 'submission-form' ) ); |
|
142 | 142 | $paths = array_map( function( $obj ) { |
143 | 143 | return $obj->field['path']; |
144 | 144 | }, $hiddenFields ); |
145 | 145 | foreach( $fields as $field ) { |
146 | 146 | $index = array_search( $field->field['path'], $paths ); |
147 | 147 | if( $index === false )continue; |
148 | - unset( $hiddenFields[$index] ); |
|
148 | + unset($hiddenFields[$index]); |
|
149 | 149 | } |
150 | 150 | return array_merge( $hiddenFields, $fields ); |
151 | 151 | } |
@@ -155,10 +155,10 @@ discard block |
||
155 | 155 | */ |
156 | 156 | protected function getLoginText() |
157 | 157 | { |
158 | - $loginLink = glsr( Builder::class )->a([ |
|
159 | - 'href' => wp_login_url( strval( get_permalink() )), |
|
158 | + $loginLink = glsr( Builder::class )->a( [ |
|
159 | + 'href' => wp_login_url( strval( get_permalink() ) ), |
|
160 | 160 | 'text' => __( 'logged in', 'site-reviews' ), |
161 | - ]); |
|
161 | + ] ); |
|
162 | 162 | return sprintf( __( 'You must be %s to submit a review.', 'site-reviews' ), $loginLink ); |
163 | 163 | } |
164 | 164 | |
@@ -168,10 +168,10 @@ discard block |
||
168 | 168 | protected function getRegisterText() |
169 | 169 | { |
170 | 170 | if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' )return; |
171 | - $registerLink = glsr( Builder::class )->a([ |
|
171 | + $registerLink = glsr( Builder::class )->a( [ |
|
172 | 172 | 'href' => wp_registration_url(), |
173 | 173 | 'text' => __( 'register', 'site-reviews' ), |
174 | - ]); |
|
174 | + ] ); |
|
175 | 175 | return sprintf( __( 'You may also %s for an account.', 'site-reviews' ), $registerLink ); |
176 | 176 | } |
177 | 177 | |
@@ -183,32 +183,32 @@ discard block |
||
183 | 183 | $fields = [[ |
184 | 184 | 'name' => '_action', |
185 | 185 | 'value' => 'submit-review', |
186 | - ],[ |
|
186 | + ], [ |
|
187 | 187 | 'name' => '_counter', |
188 | - ],[ |
|
188 | + ], [ |
|
189 | 189 | 'name' => '_nonce', |
190 | 190 | 'value' => wp_create_nonce( 'submit-review' ), |
191 | - ],[ |
|
191 | + ], [ |
|
192 | 192 | 'name' => '_post_id', |
193 | 193 | 'value' => get_the_ID(), |
194 | - ],[ |
|
194 | + ], [ |
|
195 | 195 | 'name' => '_referer', |
196 | - 'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' )), |
|
197 | - ],[ |
|
196 | + 'value' => wp_unslash( filter_input( INPUT_SERVER, 'REQUEST_URI' ) ), |
|
197 | + ], [ |
|
198 | 198 | 'name' => 'assign_to', |
199 | 199 | 'value' => $this->args['assign_to'], |
200 | - ],[ |
|
200 | + ], [ |
|
201 | 201 | 'name' => 'category', |
202 | 202 | 'value' => $this->args['category'], |
203 | - ],[ |
|
203 | + ], [ |
|
204 | 204 | 'name' => 'excluded', |
205 | 205 | 'value' => $this->args['hide'], |
206 | - ],[ |
|
206 | + ], [ |
|
207 | 207 | 'name' => 'form_id', |
208 | 208 | 'value' => $this->args['id'], |
209 | 209 | ]]; |
210 | 210 | return array_map( function( $field ) { |
211 | - return new Field( wp_parse_args( $field, ['type' => 'hidden'] )); |
|
211 | + return new Field( wp_parse_args( $field, ['type' => 'hidden'] ) ); |
|
212 | 212 | }, $fields ); |
213 | 213 | } |
214 | 214 | |
@@ -217,10 +217,10 @@ discard block |
||
217 | 217 | */ |
218 | 218 | protected function getHoneypotField() |
219 | 219 | { |
220 | - return new Field([ |
|
220 | + return new Field( [ |
|
221 | 221 | 'name' => 'gotcha', |
222 | 222 | 'type' => 'honeypot', |
223 | - ]); |
|
223 | + ] ); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | /** |
@@ -228,8 +228,8 @@ discard block |
||
228 | 228 | */ |
229 | 229 | protected function normalizeFieldId( Field &$field ) |
230 | 230 | { |
231 | - if( empty( $this->args['id'] ) || empty( $field->field['id'] ))return; |
|
232 | - $field->field['id'].= '-'.$this->args['id']; |
|
231 | + if( empty($this->args['id']) || empty($field->field['id']) )return; |
|
232 | + $field->field['id'] .= '-'.$this->args['id']; |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | /** |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | */ |
238 | 238 | protected function normalizeFieldClass( Field &$field ) |
239 | 239 | { |
240 | - if( !isset( $field->field['class'] )) { |
|
240 | + if( !isset($field->field['class']) ) { |
|
241 | 241 | $field->field['class'] = ''; |
242 | 242 | } |
243 | 243 | $field->field['class'] = trim( $field->field['class'].' glsr-field-control' ); |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | */ |
249 | 249 | protected function normalizeFieldErrors( Field &$field ) |
250 | 250 | { |
251 | - if( !array_key_exists( $field->field['path'], $this->errors ))return; |
|
251 | + if( !array_key_exists( $field->field['path'], $this->errors ) )return; |
|
252 | 252 | $field->field['errors'] = $this->errors[$field->field['path']]; |
253 | 253 | } |
254 | 254 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | */ |
258 | 258 | protected function normalizeFieldRequired( Field &$field ) |
259 | 259 | { |
260 | - if( !in_array( $field->field['path'], $this->required ))return; |
|
260 | + if( !in_array( $field->field['path'], $this->required ) )return; |
|
261 | 261 | $field->field['required'] = true; |
262 | 262 | } |
263 | 263 | |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | { |
269 | 269 | $normalizedFields = []; |
270 | 270 | foreach( $fields as $field ) { |
271 | - if( in_array( $field->field['path'], $this->args['hide'] ))continue; |
|
271 | + if( in_array( $field->field['path'], $this->args['hide'] ) )continue; |
|
272 | 272 | $field->field['is_public'] = true; |
273 | 273 | $this->normalizeFieldClass( $field ); |
274 | 274 | $this->normalizeFieldErrors( $field ); |
@@ -285,8 +285,8 @@ discard block |
||
285 | 285 | */ |
286 | 286 | protected function normalizeFieldValue( Field &$field ) |
287 | 287 | { |
288 | - if( !array_key_exists( $field->field['path'], $this->values ))return; |
|
289 | - if( in_array( $field->field['type'], ['radio', 'checkbox'] )) { |
|
288 | + if( !array_key_exists( $field->field['path'], $this->values ) )return; |
|
289 | + if( in_array( $field->field['type'], ['radio', 'checkbox'] ) ) { |
|
290 | 290 | $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']]; |
291 | 291 | } |
292 | 292 | else { |
@@ -85,7 +85,9 @@ discard block |
||
85 | 85 | */ |
86 | 86 | protected function buildRecaptcha() |
87 | 87 | { |
88 | - if( !glsr( OptionManager::class )->isRecaptchaEnabled() )return; |
|
88 | + if( !glsr( OptionManager::class )->isRecaptchaEnabled() ) { |
|
89 | + return; |
|
90 | + } |
|
89 | 91 | return glsr( Builder::class )->div([ |
90 | 92 | 'class' => 'glsr-recaptcha-holder', |
91 | 93 | 'data-badge' => glsr( OptionManager::class )->get( 'settings.submissions.recaptcha.position' ), |
@@ -144,7 +146,9 @@ discard block |
||
144 | 146 | }, $hiddenFields ); |
145 | 147 | foreach( $fields as $field ) { |
146 | 148 | $index = array_search( $field->field['path'], $paths ); |
147 | - if( $index === false )continue; |
|
149 | + if( $index === false ) { |
|
150 | + continue; |
|
151 | + } |
|
148 | 152 | unset( $hiddenFields[$index] ); |
149 | 153 | } |
150 | 154 | return array_merge( $hiddenFields, $fields ); |
@@ -167,7 +171,9 @@ discard block |
||
167 | 171 | */ |
168 | 172 | protected function getRegisterText() |
169 | 173 | { |
170 | - if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' )return; |
|
174 | + if( !get_option( 'users_can_register' ) || glsr( OptionManager::class )->get( 'settings.general.require.login' ) != 'yes' ) { |
|
175 | + return; |
|
176 | + } |
|
171 | 177 | $registerLink = glsr( Builder::class )->a([ |
172 | 178 | 'href' => wp_registration_url(), |
173 | 179 | 'text' => __( 'register', 'site-reviews' ), |
@@ -228,7 +234,9 @@ discard block |
||
228 | 234 | */ |
229 | 235 | protected function normalizeFieldId( Field &$field ) |
230 | 236 | { |
231 | - if( empty( $this->args['id'] ) || empty( $field->field['id'] ))return; |
|
237 | + if( empty( $this->args['id'] ) || empty( $field->field['id'] )) { |
|
238 | + return; |
|
239 | + } |
|
232 | 240 | $field->field['id'].= '-'.$this->args['id']; |
233 | 241 | } |
234 | 242 | |
@@ -248,7 +256,9 @@ discard block |
||
248 | 256 | */ |
249 | 257 | protected function normalizeFieldErrors( Field &$field ) |
250 | 258 | { |
251 | - if( !array_key_exists( $field->field['path'], $this->errors ))return; |
|
259 | + if( !array_key_exists( $field->field['path'], $this->errors )) { |
|
260 | + return; |
|
261 | + } |
|
252 | 262 | $field->field['errors'] = $this->errors[$field->field['path']]; |
253 | 263 | } |
254 | 264 | |
@@ -257,7 +267,9 @@ discard block |
||
257 | 267 | */ |
258 | 268 | protected function normalizeFieldRequired( Field &$field ) |
259 | 269 | { |
260 | - if( !in_array( $field->field['path'], $this->required ))return; |
|
270 | + if( !in_array( $field->field['path'], $this->required )) { |
|
271 | + return; |
|
272 | + } |
|
261 | 273 | $field->field['required'] = true; |
262 | 274 | } |
263 | 275 | |
@@ -268,7 +280,9 @@ discard block |
||
268 | 280 | { |
269 | 281 | $normalizedFields = []; |
270 | 282 | foreach( $fields as $field ) { |
271 | - if( in_array( $field->field['path'], $this->args['hide'] ))continue; |
|
283 | + if( in_array( $field->field['path'], $this->args['hide'] )) { |
|
284 | + continue; |
|
285 | + } |
|
272 | 286 | $field->field['is_public'] = true; |
273 | 287 | $this->normalizeFieldClass( $field ); |
274 | 288 | $this->normalizeFieldErrors( $field ); |
@@ -285,7 +299,9 @@ discard block |
||
285 | 299 | */ |
286 | 300 | protected function normalizeFieldValue( Field &$field ) |
287 | 301 | { |
288 | - if( !array_key_exists( $field->field['path'], $this->values ))return; |
|
302 | + if( !array_key_exists( $field->field['path'], $this->values )) { |
|
303 | + return; |
|
304 | + } |
|
289 | 305 | if( in_array( $field->field['type'], ['radio', 'checkbox'] )) { |
290 | 306 | $field->field['checked'] = $field->field['value'] == $this->values[$field->field['path']]; |
291 | 307 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | protected function getFieldDefault( array $field ) |
37 | 37 | { |
38 | - return isset( $field['default'] ) |
|
38 | + return isset($field['default']) |
|
39 | 39 | ? $field['default'] |
40 | 40 | : ''; |
41 | 41 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | protected function getSettingFields( $path ) |
47 | 47 | { |
48 | - return array_filter( $this->settings, function( $key ) use( $path ) { |
|
48 | + return array_filter( $this->settings, function( $key ) use($path) { |
|
49 | 49 | return glsr( Helper::class )->startsWith( $path, $key ); |
50 | 50 | }, ARRAY_FILTER_USE_KEY ); |
51 | 51 | } |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | $field = wp_parse_args( $field, [ |
61 | 61 | 'is_setting' => true, |
62 | 62 | 'name' => $name, |
63 | - ]); |
|
64 | - $rows.= new Field( $this->normalize( $field )); |
|
63 | + ] ); |
|
64 | + $rows .= new Field( $this->normalize( $field ) ); |
|
65 | 65 | } |
66 | 66 | return $rows; |
67 | 67 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | protected function getTemplateData( $id ) |
74 | 74 | { |
75 | - $fields = $this->getSettingFields( $this->normalizeSettingPath( $id )); |
|
75 | + $fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) ); |
|
76 | 76 | return [ |
77 | 77 | 'context' => [ |
78 | 78 | 'rows' => $this->getSettingRows( $fields ), |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | */ |
87 | 87 | protected function getTemplateDataForAddons( $id ) |
88 | 88 | { |
89 | - $fields = $this->getSettingFields( $this->normalizeSettingPath( $id )); |
|
89 | + $fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) ); |
|
90 | 90 | $settings = glsr( Helper::class )->convertDotNotationArray( $fields ); |
91 | 91 | $settingKeys = array_keys( $settings['settings']['addons'] ); |
92 | 92 | $results = []; |
93 | 93 | foreach( $settingKeys as $key ) { |
94 | - $addonFields = array_filter( $fields, function( $path ) use( $key ) { |
|
94 | + $addonFields = array_filter( $fields, function( $path ) use($key) { |
|
95 | 95 | return glsr( Helper::class )->startsWith( 'settings.addons.'.$key, $path ); |
96 | 96 | }, ARRAY_FILTER_USE_KEY ); |
97 | 97 | $results[$key] = $this->getSettingRows( $addonFields ); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | protected function getTemplateDataForLicenses( $id ) |
110 | 110 | { |
111 | - $fields = $this->getSettingFields( $this->normalizeSettingPath( $id )); |
|
111 | + $fields = $this->getSettingFields( $this->normalizeSettingPath( $id ) ); |
|
112 | 112 | ksort( $fields ); |
113 | 113 | return [ |
114 | 114 | 'context' => [ |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | protected function getTemplateDataForTranslations() |
124 | 124 | { |
125 | 125 | $translations = glsr( Translation::class )->renderAll(); |
126 | - $class = empty( $translations ) |
|
126 | + $class = empty($translations) |
|
127 | 127 | ? 'glsr-hidden' |
128 | 128 | : ''; |
129 | 129 | return [ |
@@ -146,9 +146,9 @@ discard block |
||
146 | 146 | $path, |
147 | 147 | glsr( Helper::class )->getPathValue( $path, glsr()->defaults ) |
148 | 148 | ); |
149 | - if( is_array( $expectedValue )) { |
|
149 | + if( is_array( $expectedValue ) ) { |
|
150 | 150 | return is_array( $optionValue ) |
151 | - ? count( array_intersect( $optionValue, $expectedValue )) === 0 |
|
151 | + ? count( array_intersect( $optionValue, $expectedValue ) ) === 0 |
|
152 | 152 | : !in_array( $optionValue, $expectedValue ); |
153 | 153 | } |
154 | 154 | return $optionValue != $expectedValue; |
@@ -159,10 +159,10 @@ discard block |
||
159 | 159 | */ |
160 | 160 | protected function isMultiDependency( $path ) |
161 | 161 | { |
162 | - if( isset( $this->settings[$path] )) { |
|
162 | + if( isset($this->settings[$path]) ) { |
|
163 | 163 | $field = $this->settings[$path]; |
164 | - return ( $field['type'] == 'checkbox' && !empty( $field['options'] )) |
|
165 | - || !empty( $field['multiple'] ); |
|
164 | + return ($field['type'] == 'checkbox' && !empty($field['options'])) |
|
165 | + || !empty($field['multiple']); |
|
166 | 166 | } |
167 | 167 | return false; |
168 | 168 | } |
@@ -183,17 +183,17 @@ discard block |
||
183 | 183 | */ |
184 | 184 | protected function normalizeDependsOn( array $field ) |
185 | 185 | { |
186 | - if( !empty( $field['depends_on'] ) && is_array( $field['depends_on'] )) { |
|
186 | + if( !empty($field['depends_on']) && is_array( $field['depends_on'] ) ) { |
|
187 | 187 | $path = key( $field['depends_on'] ); |
188 | 188 | $expectedValue = $field['depends_on'][$path]; |
189 | 189 | $fieldName = glsr( Helper::class )->convertPathToName( $path, OptionManager::databaseKey() ); |
190 | - if( $this->isMultiDependency( $path )) { |
|
191 | - $fieldName.= '[]'; |
|
190 | + if( $this->isMultiDependency( $path ) ) { |
|
191 | + $fieldName .= '[]'; |
|
192 | 192 | } |
193 | - $field['data-depends'] = json_encode([ |
|
193 | + $field['data-depends'] = json_encode( [ |
|
194 | 194 | 'name' => $fieldName, |
195 | 195 | 'value' => $expectedValue, |
196 | - ], JSON_HEX_APOS|JSON_HEX_QUOT ); |
|
196 | + ], JSON_HEX_APOS | JSON_HEX_QUOT ); |
|
197 | 197 | $field['is_hidden'] = $this->isFieldHidden( $path, $expectedValue ); |
198 | 198 | } |
199 | 199 | return $field; |
@@ -204,9 +204,9 @@ discard block |
||
204 | 204 | */ |
205 | 205 | protected function normalizeLabelAndLegend( array $field ) |
206 | 206 | { |
207 | - if( !empty( $field['label'] )) { |
|
207 | + if( !empty($field['label']) ) { |
|
208 | 208 | $field['legend'] = $field['label']; |
209 | - unset( $field['label'] ); |
|
209 | + unset($field['label']); |
|
210 | 210 | } |
211 | 211 | else { |
212 | 212 | $field['is_valid'] = false; |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | */ |
221 | 221 | protected function normalizeValue( array $field ) |
222 | 222 | { |
223 | - if( !isset( $field['value'] )) { |
|
223 | + if( !isset($field['value']) ) { |
|
224 | 224 | $field['value'] = glsr( OptionManager::class )->get( |
225 | 225 | $field['name'], |
226 | 226 | $this->getFieldDefault( $field ) |