@@ -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 |
@@ -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; |
@@ -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 | } |
@@ -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 | } |
@@ -39,7 +39,9 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function removeAutosave() |
41 | 41 | { |
42 | - if( !$this->isReviewEditor() || $this->isReviewEditable() )return; |
|
42 | + if( !$this->isReviewEditor() || $this->isReviewEditable() ) { |
|
43 | + return; |
|
44 | + } |
|
43 | 45 | wp_deregister_script( 'autosave' ); |
44 | 46 | } |
45 | 47 | |
@@ -56,7 +58,9 @@ discard block |
||
56 | 58 | */ |
57 | 59 | public function removePostTypeSupport() |
58 | 60 | { |
59 | - if( !$this->isReviewEditor() || $this->isReviewEditable() )return; |
|
61 | + if( !$this->isReviewEditor() || $this->isReviewEditable() ) { |
|
62 | + return; |
|
63 | + } |
|
60 | 64 | remove_post_type_support( Application::POST_TYPE, 'title' ); |
61 | 65 | remove_post_type_support( Application::POST_TYPE, 'editor' ); |
62 | 66 | } |
@@ -35,7 +35,9 @@ discard block |
||
35 | 35 | foreach( glsr( ReviewManager::class )->get( $this->args )->results as $review ) { |
36 | 36 | // Only include critic reviews that have been directly produced by your site, not reviews from third- party sites or syndicated reviews. |
37 | 37 | // @see https://developers.google.com/search/docs/data-types/review |
38 | - if( $review->review_type != 'local' )continue; |
|
38 | + if( $review->review_type != 'local' ) { |
|
39 | + continue; |
|
40 | + } |
|
39 | 41 | $reviews[] = $this->buildReview( $review ); |
40 | 42 | } |
41 | 43 | if( !empty( $reviews )) { |
@@ -80,7 +82,9 @@ discard block |
||
80 | 82 | */ |
81 | 83 | public function render() |
82 | 84 | { |
83 | - if( empty( glsr()->schemas ))return; |
|
85 | + if( empty( glsr()->schemas )) { |
|
86 | + return; |
|
87 | + } |
|
84 | 88 | printf( '<script type="application/ld+json">%s</script>', json_encode( |
85 | 89 | apply_filters( 'site-reviews/schema/all', glsr()->schemas ), |
86 | 90 | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
@@ -132,7 +136,9 @@ discard block |
||
132 | 136 | { |
133 | 137 | foreach( $values as $value ) { |
134 | 138 | $option = $this->getSchemaOptionValue( $value ); |
135 | - if( empty( $option ))continue; |
|
139 | + if( empty( $option )) { |
|
140 | + continue; |
|
141 | + } |
|
136 | 142 | $schema->$value( $option ); |
137 | 143 | } |
138 | 144 | return $schema; |
@@ -242,7 +248,9 @@ discard block |
||
242 | 248 | if( $value != $fallback ) { |
243 | 249 | return $value; |
244 | 250 | } |
245 | - if( !is_single() && !is_page() )return; |
|
251 | + if( !is_single() && !is_page() ) { |
|
252 | + return; |
|
253 | + } |
|
246 | 254 | $method = glsr( Helper::class )->buildMethodName( $option, 'getThing' ); |
247 | 255 | if( method_exists( $this, $method )) { |
248 | 256 | return $this->$method(); |
@@ -8,7 +8,10 @@ |
||
8 | 8 | <textarea readonly><?= esc_attr( $post->post_content ); ?></textarea> |
9 | 9 | </div> |
10 | 10 | |
11 | -<?php if( empty( $response ))return; ?> |
|
11 | +<?php if( empty( $response )) { |
|
12 | + return; |
|
13 | +} |
|
14 | +?> |
|
12 | 15 | |
13 | 16 | <div class="postbox glsr-response-postbox"> |
14 | 17 | <button type="button" class="handlediv" aria-expanded="true"> |
@@ -13,7 +13,9 @@ |
||
13 | 13 | public function getPost( $postId ) |
14 | 14 | { |
15 | 15 | $postId = trim( $postId ); |
16 | - if( empty( $postId ) || !is_numeric( $postId ))return; |
|
16 | + if( empty( $postId ) || !is_numeric( $postId )) { |
|
17 | + return; |
|
18 | + } |
|
17 | 19 | if( $this->isEnabled() ) { |
18 | 20 | $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() )); |
19 | 21 | } |
@@ -85,7 +85,9 @@ discard block |
||
85 | 85 | $renderedFields = []; |
86 | 86 | foreach( (array)$review as $key => $value ) { |
87 | 87 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
88 | - if( !method_exists( $this, $method ))continue; |
|
88 | + if( !method_exists( $this, $method )) { |
|
89 | + continue; |
|
90 | + } |
|
89 | 91 | $renderedFields[$key] = $this->$method( $key, $value ); |
90 | 92 | } |
91 | 93 | $this->wrap( $renderedFields, $review ); |
@@ -100,9 +102,13 @@ discard block |
||
100 | 102 | */ |
101 | 103 | protected function buildOptionAssignedTo( $key, $value ) |
102 | 104 | { |
103 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
105 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
106 | + return; |
|
107 | + } |
|
104 | 108 | $post = glsr( Polylang::class )->getPost( $value ); |
105 | - if( !( $post instanceof WP_Post ))return; |
|
109 | + if( !( $post instanceof WP_Post )) { |
|
110 | + return; |
|
111 | + } |
|
106 | 112 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
107 | 113 | 'href' => get_the_permalink( $post->ID ), |
108 | 114 | ]); |
@@ -117,7 +123,9 @@ discard block |
||
117 | 123 | */ |
118 | 124 | protected function buildOptionAuthor( $key, $value ) |
119 | 125 | { |
120 | - if( $this->isHidden( $key ))return; |
|
126 | + if( $this->isHidden( $key )) { |
|
127 | + return; |
|
128 | + } |
|
121 | 129 | return '<span>'.$value.'</span>'; |
122 | 130 | } |
123 | 131 | |
@@ -128,7 +136,9 @@ discard block |
||
128 | 136 | */ |
129 | 137 | protected function buildOptionAvatar( $key, $value ) |
130 | 138 | { |
131 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
139 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
140 | + return; |
|
141 | + } |
|
132 | 142 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
133 | 143 | return glsr( Builder::class )->img([ |
134 | 144 | 'height' => $size, |
@@ -146,7 +156,9 @@ discard block |
||
146 | 156 | protected function buildOptionContent( $key, $value ) |
147 | 157 | { |
148 | 158 | $text = $this->normalizeText( $value ); |
149 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
159 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
160 | + return; |
|
161 | + } |
|
150 | 162 | return '<p>'.$text.'</p>'; |
151 | 163 | } |
152 | 164 | |
@@ -157,7 +169,9 @@ discard block |
||
157 | 169 | */ |
158 | 170 | protected function buildOptionDate( $key, $value ) |
159 | 171 | { |
160 | - if( $this->isHidden( $key ))return; |
|
172 | + if( $this->isHidden( $key )) { |
|
173 | + return; |
|
174 | + } |
|
161 | 175 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
162 | 176 | if( $dateFormat == 'relative' ) { |
163 | 177 | $date = glsr( Date::class )->relative( $value ); |
@@ -178,7 +192,9 @@ discard block |
||
178 | 192 | */ |
179 | 193 | protected function buildOptionRating( $key, $value ) |
180 | 194 | { |
181 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
195 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
196 | + return; |
|
197 | + } |
|
182 | 198 | return glsr( Partial::class )->build( 'star-rating', [ |
183 | 199 | 'rating' => $value, |
184 | 200 | ]); |
@@ -191,7 +207,9 @@ discard block |
||
191 | 207 | */ |
192 | 208 | protected function buildOptionResponse( $key, $value ) |
193 | 209 | { |
194 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
210 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
211 | + return; |
|
212 | + } |
|
195 | 213 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
196 | 214 | $text = $this->normalizeText( $value ); |
197 | 215 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -207,7 +225,9 @@ discard block |
||
207 | 225 | */ |
208 | 226 | protected function buildOptionTitle( $key, $value ) |
209 | 227 | { |
210 | - if( $this->isHidden( $key ))return; |
|
228 | + if( $this->isHidden( $key )) { |
|
229 | + return; |
|
230 | + } |
|
211 | 231 | if( empty( $value )) { |
212 | 232 | $value = __( 'No Title', 'site-reviews' ); |
213 | 233 | } |
@@ -239,7 +259,9 @@ discard block |
||
239 | 259 | */ |
240 | 260 | protected function generateSchema() |
241 | 261 | { |
242 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
262 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
263 | + return; |
|
264 | + } |
|
243 | 265 | glsr( Schema::class )->store( |
244 | 266 | glsr( Schema::class )->build( $this->args ) |
245 | 267 | ); |
@@ -289,9 +311,13 @@ discard block |
||
289 | 311 | $words->setText( $text ); |
290 | 312 | $count = 0; |
291 | 313 | foreach( $words as $offset ){ |
292 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
314 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
315 | + continue; |
|
316 | + } |
|
293 | 317 | $count++; |
294 | - if( $count != $limit )continue; |
|
318 | + if( $count != $limit ) { |
|
319 | + continue; |
|
320 | + } |
|
295 | 321 | return $offset; |
296 | 322 | } |
297 | 323 | return strlen( $text ); |
@@ -380,7 +406,9 @@ discard block |
||
380 | 406 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
381 | 407 | array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
382 | 408 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
383 | - if( empty( $value ))return; |
|
409 | + if( empty( $value )) { |
|
410 | + return; |
|
411 | + } |
|
384 | 412 | $value = glsr( Builder::class )->div( $value, [ |
385 | 413 | 'class' => 'glsr-review-'.$key, |
386 | 414 | ]); |