@@ -35,7 +35,9 @@ discard block |
||
35 | 35 | foreach( glsr( ReviewManager::class )->get( $this->args ) 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(); |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | $this->reviews = $reviews; |
31 | 31 | $this->navigation = glsr( Partial::class )->build( 'pagination', [ |
32 | 32 | 'total' => $maxPageCount, |
33 | - ]); |
|
34 | - parent::__construct( $reviews, ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS ); |
|
33 | + ] ); |
|
34 | + parent::__construct( $reviews, ArrayObject::STD_PROP_LIST | ArrayObject::ARRAY_AS_PROPS ); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'navigation' => $this->getNavigation(), |
58 | 58 | 'reviews' => implode( PHP_EOL, $this->reviews ), |
59 | 59 | ], |
60 | - ]); |
|
60 | + ] ); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | $defaults[] = 'glsr-ajax-pagination'; |
73 | 73 | } |
74 | 74 | $classes = explode( ' ', $this->args['class'] ); |
75 | - $classes = array_unique( array_merge( $defaults, $classes )); |
|
75 | + $classes = array_unique( array_merge( $defaults, $classes ) ); |
|
76 | 76 | return implode( ' ', $classes ); |
77 | 77 | } |
78 | 78 |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | foreach( $this->reviews as $index => $review ) { |
88 | 88 | $renderedReviews[] = glsr( Template::class )->build( 'templates/review', [ |
89 | 89 | 'context' => $this->buildReview( $review )->values, |
90 | - ]); |
|
90 | + ] ); |
|
91 | 91 | } |
92 | 92 | return new ReviewsHtml( $renderedReviews, $this->reviews->max_num_pages, $this->args ); |
93 | 93 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function generateSchema() |
99 | 99 | { |
100 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
100 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
101 | 101 | glsr( Schema::class )->store( |
102 | 102 | glsr( Schema::class )->build( $this->args ) |
103 | 103 | ); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | public function isHidden( $key, $path = '' ) |
112 | 112 | { |
113 | - $isOptionEnabled = !empty( $path ) |
|
113 | + $isOptionEnabled = !empty($path) |
|
114 | 114 | ? $this->isOptionEnabled( $path ) |
115 | 115 | : true; |
116 | 116 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -123,12 +123,12 @@ discard block |
||
123 | 123 | */ |
124 | 124 | protected function buildOptionAssignedTo( $key, $value ) |
125 | 125 | { |
126 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
126 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
127 | 127 | $post = glsr( Polylang::class )->getPost( $value ); |
128 | - if( !( $post instanceof WP_Post ))return; |
|
128 | + if( !($post instanceof WP_Post) )return; |
|
129 | 129 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
130 | 130 | 'href' => get_the_permalink( $post->ID ), |
131 | - ]); |
|
131 | + ] ); |
|
132 | 132 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
133 | 133 | return '<span>'.$assignedTo.'</span>'; |
134 | 134 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | */ |
141 | 141 | protected function buildOptionAuthor( $key, $value ) |
142 | 142 | { |
143 | - if( $this->isHidden( $key ))return; |
|
143 | + if( $this->isHidden( $key ) )return; |
|
144 | 144 | return '<span>'.$value.'</span>'; |
145 | 145 | } |
146 | 146 | |
@@ -151,14 +151,14 @@ discard block |
||
151 | 151 | */ |
152 | 152 | protected function buildOptionAvatar( $key, $value ) |
153 | 153 | { |
154 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
154 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
155 | 155 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
156 | - return glsr( Builder::class )->img([ |
|
156 | + return glsr( Builder::class )->img( [ |
|
157 | 157 | 'height' => $size, |
158 | 158 | 'src' => $this->generateAvatar( $value ), |
159 | 159 | 'style' => sprintf( 'width:%1$spx; height:%1$spx;', $size ), |
160 | 160 | 'width' => $size, |
161 | - ]); |
|
161 | + ] ); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | protected function buildOptionContent( $key, $value ) |
170 | 170 | { |
171 | 171 | $text = $this->normalizeText( $value ); |
172 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
172 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
173 | 173 | return '<p>'.$text.'</p>'; |
174 | 174 | } |
175 | 175 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | */ |
181 | 181 | protected function buildOptionDate( $key, $value ) |
182 | 182 | { |
183 | - if( $this->isHidden( $key ))return; |
|
183 | + if( $this->isHidden( $key ) )return; |
|
184 | 184 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
185 | 185 | if( $dateFormat == 'relative' ) { |
186 | 186 | $date = glsr( Date::class )->relative( $value ); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $format = $dateFormat == 'custom' |
190 | 190 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
191 | 191 | : (string)get_option( 'date_format' ); |
192 | - $date = date_i18n( $format, strtotime( $value )); |
|
192 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
193 | 193 | } |
194 | 194 | return '<span>'.$date.'</span>'; |
195 | 195 | } |
@@ -201,10 +201,10 @@ discard block |
||
201 | 201 | */ |
202 | 202 | protected function buildOptionRating( $key, $value ) |
203 | 203 | { |
204 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
204 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
205 | 205 | return glsr( Partial::class )->build( 'star-rating', [ |
206 | 206 | 'rating' => $value, |
207 | - ]); |
|
207 | + ] ); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
@@ -214,8 +214,8 @@ discard block |
||
214 | 214 | */ |
215 | 215 | protected function buildOptionResponse( $key, $value ) |
216 | 216 | { |
217 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
218 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
217 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
218 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
219 | 219 | $text = $this->normalizeText( $value ); |
220 | 220 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
221 | 221 | $response = glsr( Builder::class )->div( $text, ['class' => 'glsr-review-response-inner'] ); |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | */ |
231 | 231 | protected function buildOptionTitle( $key, $value ) |
232 | 232 | { |
233 | - if( $this->isHidden( $key ))return; |
|
234 | - if( empty( $value )) { |
|
233 | + if( $this->isHidden( $key ) )return; |
|
234 | + if( empty($value) ) { |
|
235 | 235 | $value = __( 'No Title', 'site-reviews' ); |
236 | 236 | } |
237 | 237 | return '<h3>'.$value.'</h3>'; |
@@ -247,10 +247,10 @@ discard block |
||
247 | 247 | return $avatarUrl; |
248 | 248 | } |
249 | 249 | $authorIdOrEmail = get_the_author_meta( 'ID', $this->current->user_id ); |
250 | - if( empty( $authorIdOrEmail )) { |
|
250 | + if( empty($authorIdOrEmail) ) { |
|
251 | 251 | $authorIdOrEmail = $this->current->email; |
252 | 252 | } |
253 | - if( $newAvatar = get_avatar_url( $authorIdOrEmail )) { |
|
253 | + if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) { |
|
254 | 254 | return $newAvatar; |
255 | 255 | } |
256 | 256 | return $avatarUrl; |
@@ -262,18 +262,18 @@ discard block |
||
262 | 262 | */ |
263 | 263 | protected function getExcerpt( $text ) |
264 | 264 | { |
265 | - $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 )); |
|
265 | + $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ) ); |
|
266 | 266 | $split = extension_loaded( 'intl' ) |
267 | 267 | ? $this->getExcerptIntlSplit( $text, $limit ) |
268 | 268 | : $this->getExcerptSplit( $text, $limit ); |
269 | 269 | $hiddenText = substr( $text, $split ); |
270 | - if( !empty( $hiddenText )) { |
|
270 | + if( !empty($hiddenText) ) { |
|
271 | 271 | $showMore = glsr( Builder::class )->span( $hiddenText, [ |
272 | 272 | 'class' => 'glsr-hidden glsr-hidden-text', |
273 | 273 | 'data-show-less' => __( 'Show less', 'site-reviews' ), |
274 | 274 | 'data-show-more' => __( 'Show more', 'site-reviews' ), |
275 | - ]); |
|
276 | - $text = ltrim( substr( $text, 0, $split )).$showMore; |
|
275 | + ] ); |
|
276 | + $text = ltrim( substr( $text, 0, $split ) ).$showMore; |
|
277 | 277 | } |
278 | 278 | return nl2br( $text ); |
279 | 279 | } |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | $words = IntlRuleBasedBreakIterator::createWordInstance( '' ); |
289 | 289 | $words->setText( $text ); |
290 | 290 | $count = 0; |
291 | - foreach( $words as $offset ){ |
|
291 | + foreach( $words as $offset ) { |
|
292 | 292 | if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
293 | 293 | $count++; |
294 | 294 | if( $count != $limit )continue; |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | protected function getExcerptSplit( $text, $limit ) |
306 | 306 | { |
307 | 307 | if( str_word_count( $text, 0 ) > $limit ) { |
308 | - $words = array_keys( str_word_count( $text, 2 )); |
|
308 | + $words = array_keys( str_word_count( $text, 2 ) ); |
|
309 | 309 | return $words[$limit]; |
310 | 310 | } |
311 | 311 | return strlen( $text ); |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | */ |
319 | 319 | protected function getOption( $path, $fallback = '' ) |
320 | 320 | { |
321 | - if( array_key_exists( $path, $this->options )) { |
|
321 | + if( array_key_exists( $path, $this->options ) ) { |
|
322 | 322 | return $this->options[$path]; |
323 | 323 | } |
324 | 324 | return $fallback; |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | */ |
332 | 332 | protected function isHiddenOrEmpty( $key, $value ) |
333 | 333 | { |
334 | - return $this->isHidden( $key ) || empty( $value ); |
|
334 | + return $this->isHidden( $key ) || empty($value); |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | /** |
@@ -350,10 +350,10 @@ discard block |
||
350 | 350 | protected function normalizeText( $text ) |
351 | 351 | { |
352 | 352 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
353 | - $text = convert_smilies( strip_shortcodes( $text )); |
|
353 | + $text = convert_smilies( strip_shortcodes( $text ) ); |
|
354 | 354 | $text = str_replace( ']]>', ']]>', $text ); |
355 | 355 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
356 | - if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) { |
|
356 | + if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) { |
|
357 | 357 | $text = $this->getExcerpt( $text ); |
358 | 358 | } |
359 | 359 | return wptexturize( $text ); |
@@ -365,12 +365,12 @@ discard block |
||
365 | 365 | protected function wrap( array &$renderedFields, Review $review ) |
366 | 366 | { |
367 | 367 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
368 | - array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
|
368 | + array_walk( $renderedFields, function( &$value, $key ) use($review) { |
|
369 | 369 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
370 | - if( empty( $value ))return; |
|
370 | + if( empty($value) )return; |
|
371 | 371 | $value = glsr( Builder::class )->div( $value, [ |
372 | 372 | 'class' => 'glsr-review-'.$key, |
373 | - ]); |
|
373 | + ] ); |
|
374 | 374 | }); |
375 | 375 | } |
376 | 376 | } |
@@ -69,7 +69,9 @@ discard block |
||
69 | 69 | $field = method_exists( $this, $method ) |
70 | 70 | ? $this->$method( $key, $value ) |
71 | 71 | : apply_filters( 'site-reviews/review/build/'.$key, false, $value, $this, $review ); |
72 | - if( $field === false )continue; |
|
72 | + if( $field === false ) { |
|
73 | + continue; |
|
74 | + } |
|
73 | 75 | $renderedFields[$key] = $field; |
74 | 76 | } |
75 | 77 | $this->wrap( $renderedFields, $review ); |
@@ -97,7 +99,9 @@ discard block |
||
97 | 99 | */ |
98 | 100 | public function generateSchema() |
99 | 101 | { |
100 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
102 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
103 | + return; |
|
104 | + } |
|
101 | 105 | glsr( Schema::class )->store( |
102 | 106 | glsr( Schema::class )->build( $this->args ) |
103 | 107 | ); |
@@ -123,9 +127,13 @@ discard block |
||
123 | 127 | */ |
124 | 128 | protected function buildOptionAssignedTo( $key, $value ) |
125 | 129 | { |
126 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
130 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
131 | + return; |
|
132 | + } |
|
127 | 133 | $post = glsr( Polylang::class )->getPost( $value ); |
128 | - if( !( $post instanceof WP_Post ))return; |
|
134 | + if( !( $post instanceof WP_Post )) { |
|
135 | + return; |
|
136 | + } |
|
129 | 137 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
130 | 138 | 'href' => get_the_permalink( $post->ID ), |
131 | 139 | ]); |
@@ -140,7 +148,9 @@ discard block |
||
140 | 148 | */ |
141 | 149 | protected function buildOptionAuthor( $key, $value ) |
142 | 150 | { |
143 | - if( $this->isHidden( $key ))return; |
|
151 | + if( $this->isHidden( $key )) { |
|
152 | + return; |
|
153 | + } |
|
144 | 154 | return '<span>'.$value.'</span>'; |
145 | 155 | } |
146 | 156 | |
@@ -151,7 +161,9 @@ discard block |
||
151 | 161 | */ |
152 | 162 | protected function buildOptionAvatar( $key, $value ) |
153 | 163 | { |
154 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
164 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
165 | + return; |
|
166 | + } |
|
155 | 167 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
156 | 168 | return glsr( Builder::class )->img([ |
157 | 169 | 'height' => $size, |
@@ -169,7 +181,9 @@ discard block |
||
169 | 181 | protected function buildOptionContent( $key, $value ) |
170 | 182 | { |
171 | 183 | $text = $this->normalizeText( $value ); |
172 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
184 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
185 | + return; |
|
186 | + } |
|
173 | 187 | return '<p>'.$text.'</p>'; |
174 | 188 | } |
175 | 189 | |
@@ -180,7 +194,9 @@ discard block |
||
180 | 194 | */ |
181 | 195 | protected function buildOptionDate( $key, $value ) |
182 | 196 | { |
183 | - if( $this->isHidden( $key ))return; |
|
197 | + if( $this->isHidden( $key )) { |
|
198 | + return; |
|
199 | + } |
|
184 | 200 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
185 | 201 | if( $dateFormat == 'relative' ) { |
186 | 202 | $date = glsr( Date::class )->relative( $value ); |
@@ -201,7 +217,9 @@ discard block |
||
201 | 217 | */ |
202 | 218 | protected function buildOptionRating( $key, $value ) |
203 | 219 | { |
204 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
220 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
221 | + return; |
|
222 | + } |
|
205 | 223 | return glsr( Partial::class )->build( 'star-rating', [ |
206 | 224 | 'rating' => $value, |
207 | 225 | ]); |
@@ -214,7 +232,9 @@ discard block |
||
214 | 232 | */ |
215 | 233 | protected function buildOptionResponse( $key, $value ) |
216 | 234 | { |
217 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
235 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
236 | + return; |
|
237 | + } |
|
218 | 238 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
219 | 239 | $text = $this->normalizeText( $value ); |
220 | 240 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -230,7 +250,9 @@ discard block |
||
230 | 250 | */ |
231 | 251 | protected function buildOptionTitle( $key, $value ) |
232 | 252 | { |
233 | - if( $this->isHidden( $key ))return; |
|
253 | + if( $this->isHidden( $key )) { |
|
254 | + return; |
|
255 | + } |
|
234 | 256 | if( empty( $value )) { |
235 | 257 | $value = __( 'No Title', 'site-reviews' ); |
236 | 258 | } |
@@ -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 ); |
@@ -367,7 +393,9 @@ discard block |
||
367 | 393 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
368 | 394 | array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
369 | 395 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
370 | - if( empty( $value ))return; |
|
396 | + if( empty( $value )) { |
|
397 | + return; |
|
398 | + } |
|
371 | 399 | $value = glsr( Builder::class )->div( $value, [ |
372 | 400 | 'class' => 'glsr-review-'.$key, |
373 | 401 | ]); |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | public function __construct( array $values = [] ) |
16 | 16 | { |
17 | 17 | $this->values = $values; |
18 | - parent::__construct( $values, ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS ); |
|
18 | + parent::__construct( $values, ArrayObject::STD_PROP_LIST | ArrayObject::ARRAY_AS_PROPS ); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function __toString() |
35 | 35 | { |
36 | - if( empty( $this->values ))return; |
|
36 | + if( empty($this->values) )return; |
|
37 | 37 | return glsr( Template::class )->build( 'templates/review', [ |
38 | 38 | 'context' => $this->values, |
39 | - ]); |
|
39 | + ] ); |
|
40 | 40 | } |
41 | 41 | } |
@@ -33,7 +33,9 @@ |
||
33 | 33 | */ |
34 | 34 | public function __toString() |
35 | 35 | { |
36 | - if( empty( $this->values ))return; |
|
36 | + if( empty( $this->values )) { |
|
37 | + return; |
|
38 | + } |
|
37 | 39 | return glsr( Template::class )->build( 'templates/review', [ |
38 | 40 | 'context' => $this->values, |
39 | 41 | ]); |
@@ -123,7 +123,9 @@ discard block |
||
123 | 123 | $termId = intval( $termId ); |
124 | 124 | } |
125 | 125 | $term = term_exists( $termId, Application::TAXONOMY ); |
126 | - if( !isset( $term['term_id'] ))continue; |
|
126 | + if( !isset( $term['term_id'] )) { |
|
127 | + continue; |
|
128 | + } |
|
127 | 129 | $terms[] = $term; |
128 | 130 | } |
129 | 131 | return $terms; |
@@ -135,7 +137,9 @@ discard block |
||
135 | 137 | */ |
136 | 138 | public function revert( $postId ) |
137 | 139 | { |
138 | - if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
|
140 | + if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE ) { |
|
141 | + return; |
|
142 | + } |
|
139 | 143 | delete_post_meta( $postId, '_edit_last' ); |
140 | 144 | $result = wp_update_post([ |
141 | 145 | 'ID' => $postId, |
@@ -180,7 +184,9 @@ discard block |
||
180 | 184 | protected function setTerms( $postId, $termIds ) |
181 | 185 | { |
182 | 186 | $terms = $this->normalizeTermIds( $termIds ); |
183 | - if( empty( $terms ))return; |
|
187 | + if( empty( $terms )) { |
|
188 | + return; |
|
189 | + } |
|
184 | 190 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
185 | 191 | if( is_wp_error( $result )) { |
186 | 192 | glsr_log()->error( $result->get_error_message() ); |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | 'post_type' => Application::POST_TYPE, |
37 | 37 | ]; |
38 | 38 | $postId = wp_insert_post( $postValues, true ); |
39 | - if( is_wp_error( $postId )) { |
|
39 | + if( is_wp_error( $postId ) ) { |
|
40 | 40 | glsr_log()->error( $postId->get_error_message() )->debug( $postValues ); |
41 | 41 | return false; |
42 | 42 | } |
43 | 43 | $this->setTerms( $postId, $command->category ); |
44 | - $review = $this->single( get_post( $postId )); |
|
44 | + $review = $this->single( get_post( $postId ) ); |
|
45 | 45 | do_action( 'site-reviews/review/created', $review, $command ); |
46 | 46 | return $review; |
47 | 47 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function delete( $metaReviewId ) |
54 | 54 | { |
55 | - if( $postId = $this->getPostId( $metaReviewId )) { |
|
55 | + if( $postId = $this->getPostId( $metaReviewId ) ) { |
|
56 | 56 | wp_delete_post( $postId, true ); |
57 | 57 | } |
58 | 58 | } |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $paged = glsr( QueryBuilder::class )->getPaged( |
75 | 75 | wp_validate_boolean( $args['pagination'] ) |
76 | 76 | ); |
77 | - $query = new WP_Query([ |
|
77 | + $query = new WP_Query( [ |
|
78 | 78 | 'meta_key' => 'pinned', |
79 | 79 | 'meta_query' => $metaQuery, |
80 | 80 | 'offset' => $args['offset'], |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | 'post_type' => Application::POST_TYPE, |
88 | 88 | 'posts_per_page' => $args['count'], |
89 | 89 | 'tax_query' => $taxQuery, |
90 | - ]); |
|
90 | + ] ); |
|
91 | 91 | $results = array_map( [$this, 'single'], $query->posts ); |
92 | 92 | $reviews = new Reviews( $results, $query->max_num_pages, $args ); |
93 | 93 | return apply_filters( 'site-reviews/get/reviews', $reviews, $query ); |
@@ -120,11 +120,11 @@ discard block |
||
120 | 120 | $terms = []; |
121 | 121 | $termIds = glsr( Helper::class )->convertStringToArray( $commaSeparatedTermIds ); |
122 | 122 | foreach( $termIds as $termId ) { |
123 | - if( is_numeric( $termId )) { |
|
123 | + if( is_numeric( $termId ) ) { |
|
124 | 124 | $termId = intval( $termId ); |
125 | 125 | } |
126 | 126 | $term = term_exists( $termId, Application::TAXONOMY ); |
127 | - if( !isset( $term['term_id'] ))continue; |
|
127 | + if( !isset($term['term_id']) )continue; |
|
128 | 128 | $terms[] = $term; |
129 | 129 | } |
130 | 130 | return $terms; |
@@ -138,13 +138,13 @@ discard block |
||
138 | 138 | { |
139 | 139 | if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
140 | 140 | delete_post_meta( $postId, '_edit_last' ); |
141 | - $result = wp_update_post([ |
|
141 | + $result = wp_update_post( [ |
|
142 | 142 | 'ID' => $postId, |
143 | 143 | 'post_content' => get_post_meta( $postId, 'content', true ), |
144 | 144 | 'post_date' => get_post_meta( $postId, 'date', true ), |
145 | 145 | 'post_title' => get_post_meta( $postId, 'title', true ), |
146 | - ]); |
|
147 | - if( is_wp_error( $result )) { |
|
146 | + ] ); |
|
147 | + if( is_wp_error( $result ) ) { |
|
148 | 148 | glsr_log()->error( $result->get_error_message() ); |
149 | 149 | } |
150 | 150 | } |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | protected function getNewPostStatus( array $review, $isBlacklisted ) |
169 | 169 | { |
170 | 170 | $requireApprovalOption = glsr( OptionManager::class )->get( 'settings.general.require.approval' ); |
171 | - return $review['review_type'] == 'local' && ( $requireApprovalOption == 'yes' || $isBlacklisted ) |
|
171 | + return $review['review_type'] == 'local' && ($requireApprovalOption == 'yes' || $isBlacklisted) |
|
172 | 172 | ? 'pending' |
173 | 173 | : 'publish'; |
174 | 174 | } |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | protected function setTerms( $postId, $termIds ) |
182 | 182 | { |
183 | 183 | $terms = $this->normalizeTermIds( $termIds ); |
184 | - if( empty( $terms ))return; |
|
184 | + if( empty($terms) )return; |
|
185 | 185 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
186 | - if( is_wp_error( $result )) { |
|
186 | + if( is_wp_error( $result ) ) { |
|
187 | 187 | glsr_log()->error( $result->get_error_message() ); |
188 | 188 | } |
189 | 189 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | $this->args = $args; |
30 | 30 | $this->max_num_pages = $maxPageCount; |
31 | 31 | $this->results = $reviews; |
32 | - parent::__construct( $reviews, ArrayObject::STD_PROP_LIST|ArrayObject::ARRAY_AS_PROPS ); |
|
32 | + parent::__construct( $reviews, ArrayObject::STD_PROP_LIST | ArrayObject::ARRAY_AS_PROPS ); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function build( array $args = [] ) |
70 | 70 | { |
71 | - if( empty( $this->ID )) { |
|
71 | + if( empty($this->ID) ) { |
|
72 | 72 | return new ReviewHtml; |
73 | 73 | } |
74 | 74 | $partial = glsr( SiteReviewsPartial::class ); |
@@ -92,10 +92,10 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function offsetGet( $key ) |
94 | 94 | { |
95 | - if( property_exists( $this, $key )) { |
|
95 | + if( property_exists( $this, $key ) ) { |
|
96 | 96 | return $this->$key; |
97 | 97 | } |
98 | - if( array_key_exists( $key, (array)$this->custom )) { |
|
98 | + if( array_key_exists( $key, (array)$this->custom ) ) { |
|
99 | 99 | return $this->custom[$key]; |
100 | 100 | } |
101 | 101 | return null; |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public function offsetSet( $key, $value ) |
110 | 110 | { |
111 | - if( property_exists( $this, $key )) { |
|
111 | + if( property_exists( $this, $key ) ) { |
|
112 | 112 | $this->$key = $value; |
113 | 113 | return; |
114 | 114 | } |
115 | - if( !is_array( $this->custom )) { |
|
115 | + if( !is_array( $this->custom ) ) { |
|
116 | 116 | $this->custom = array_filter( (array)$this->custom ); |
117 | 117 | } |
118 | 118 | $this->custom[$key] = $value; |
@@ -157,13 +157,13 @@ discard block |
||
157 | 157 | 'review_type' => 'local', |
158 | 158 | ]; |
159 | 159 | $meta = array_filter( |
160 | - array_map( 'array_shift', array_filter((array)get_post_meta( $post->ID ))), |
|
160 | + array_map( 'array_shift', array_filter( (array)get_post_meta( $post->ID ) ) ), |
|
161 | 161 | 'strlen' |
162 | 162 | ); |
163 | - $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta )); |
|
163 | + $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta ) ); |
|
164 | 164 | $this->modified = $this->isModified( $properties ); |
165 | 165 | array_walk( $properties, function( $value, $key ) { |
166 | - if( !property_exists( $this, $key ) || isset( $this->$key ))return; |
|
166 | + if( !property_exists( $this, $key ) || isset($this->$key) )return; |
|
167 | 167 | $this->$key = maybe_unserialize( $value ); |
168 | 168 | }); |
169 | 169 | } |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | protected function setTermIds( WP_Post $post ) |
175 | 175 | { |
176 | 176 | $this->term_ids = []; |
177 | - if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY )))return; |
|
177 | + if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY ) ) )return; |
|
178 | 178 | foreach( $terms as $term ) { |
179 | 179 | $this->term_ids[] = $term->term_id; |
180 | 180 | } |
@@ -36,7 +36,9 @@ discard block |
||
36 | 36 | |
37 | 37 | public function __construct( WP_Post $post ) |
38 | 38 | { |
39 | - if( $post->post_type != Application::POST_TYPE )return; |
|
39 | + if( $post->post_type != Application::POST_TYPE ) { |
|
40 | + return; |
|
41 | + } |
|
40 | 42 | $this->content = $post->post_content; |
41 | 43 | $this->date = $post->post_date; |
42 | 44 | $this->ID = intval( $post->ID ); |
@@ -163,7 +165,9 @@ discard block |
||
163 | 165 | $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta )); |
164 | 166 | $this->modified = $this->isModified( $properties ); |
165 | 167 | array_walk( $properties, function( $value, $key ) { |
166 | - if( !property_exists( $this, $key ) || isset( $this->$key ))return; |
|
168 | + if( !property_exists( $this, $key ) || isset( $this->$key )) { |
|
169 | + return; |
|
170 | + } |
|
167 | 171 | $this->$key = maybe_unserialize( $value ); |
168 | 172 | }); |
169 | 173 | } |
@@ -174,7 +178,9 @@ discard block |
||
174 | 178 | protected function setTermIds( WP_Post $post ) |
175 | 179 | { |
176 | 180 | $this->term_ids = []; |
177 | - if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY )))return; |
|
181 | + if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY ))) { |
|
182 | + return; |
|
183 | + } |
|
178 | 184 | foreach( $terms as $term ) { |
179 | 185 | $this->term_ids[] = $term->term_id; |
180 | 186 | } |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | 'glsr_get_review', 'glsr_get_reviews', |
20 | 20 | 'glsr_log', |
21 | 21 | ); |
22 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
23 | - add_filter( $hook, function() use( $hook, $args ) { |
|
22 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook ) )return; |
|
23 | + add_filter( $hook, function() use($hook, $args) { |
|
24 | 24 | array_shift( $args ); // remove the fallback value |
25 | 25 | return call_user_func_array( $hook, $args ); |
26 | 26 | }); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | function glsr( $alias = null ) { |
33 | 33 | $app = \GeminiLabs\SiteReviews\Application::load(); |
34 | - return !empty( $alias ) |
|
34 | + return !empty($alias) |
|
35 | 35 | ? $app->make( $alias ) |
36 | 36 | : $app; |
37 | 37 | } |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | $result = array(); |
46 | 46 | foreach( $array as $subarray ) { |
47 | 47 | $subarray = (array)$subarray; |
48 | - if( !isset( $subarray[$column] ))continue; |
|
48 | + if( !isset($subarray[$column]) )continue; |
|
49 | 49 | $result[] = $subarray[$column]; |
50 | 50 | } |
51 | 51 | return $result; |
@@ -56,14 +56,14 @@ discard block |
||
56 | 56 | */ |
57 | 57 | function glsr_calculate_ratings() { |
58 | 58 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
59 | - glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
59 | + glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @return \GeminiLabs\SiteReviews\Review|false |
64 | 64 | */ |
65 | 65 | function glsr_create_review( $reviewValues = array() ) { |
66 | - if( !is_array( $reviewValues )) { |
|
66 | + if( !is_array( $reviewValues ) ) { |
|
67 | 67 | $reviewValues = array(); |
68 | 68 | } |
69 | 69 | $review = new \GeminiLabs\SiteReviews\Commands\CreateReview( $reviewValues ); |
@@ -74,10 +74,10 @@ discard block |
||
74 | 74 | * @return \WP_Screen|object |
75 | 75 | */ |
76 | 76 | function glsr_current_screen() { |
77 | - if( function_exists( 'get_current_screen' )) { |
|
77 | + if( function_exists( 'get_current_screen' ) ) { |
|
78 | 78 | $screen = get_current_screen(); |
79 | 79 | } |
80 | - return empty( $screen ) |
|
80 | + return empty($screen) |
|
81 | 81 | ? (object)array_fill_keys( ['base', 'id', 'post_type'], null ) |
82 | 82 | : $screen; |
83 | 83 | } |
@@ -124,10 +124,10 @@ discard block |
||
124 | 124 | */ |
125 | 125 | function glsr_get_review( $post_id ) { |
126 | 126 | $post = null; |
127 | - if( is_numeric( $post_id )) { |
|
127 | + if( is_numeric( $post_id ) ) { |
|
128 | 128 | $post = get_post( $post_id ); |
129 | 129 | } |
130 | - if( !( $post instanceof WP_Post )) { |
|
130 | + if( !($post instanceof WP_Post) ) { |
|
131 | 131 | $post = new WP_Post( (object)[] ); |
132 | 132 | } |
133 | 133 | return glsr( 'Database\ReviewManager' )->single( $post ); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * @return array |
138 | 138 | */ |
139 | 139 | function glsr_get_reviews( $args = array() ) { |
140 | - if( !is_array( $args )) { |
|
140 | + if( !is_array( $args ) ) { |
|
141 | 141 | $args = []; |
142 | 142 | } |
143 | 143 | return glsr( 'Database\ReviewManager' )->get( $args ); |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | */ |
149 | 149 | function glsr_log() { |
150 | 150 | $args = func_get_args(); |
151 | - $context = isset( $args[1] ) |
|
151 | + $context = isset($args[1]) |
|
152 | 152 | ? $args[1] |
153 | 153 | : []; |
154 | 154 | $console = glsr( 'Modules\Console' ); |
155 | - return !empty( $args ) |
|
155 | + return !empty($args) |
|
156 | 156 | ? $console->log( 'debug', $args[0], $context ) |
157 | 157 | : $console; |
158 | 158 | } |
@@ -19,7 +19,9 @@ discard block |
||
19 | 19 | 'glsr_get_review', 'glsr_get_reviews', |
20 | 20 | 'glsr_log', |
21 | 21 | ); |
22 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
22 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook )) { |
|
23 | + return; |
|
24 | + } |
|
23 | 25 | add_filter( $hook, function() use( $hook, $args ) { |
24 | 26 | array_shift( $args ); // remove the fallback value |
25 | 27 | return call_user_func_array( $hook, $args ); |
@@ -29,7 +31,8 @@ discard block |
||
29 | 31 | /** |
30 | 32 | * @return mixed |
31 | 33 | */ |
32 | -function glsr( $alias = null ) { |
|
34 | +function glsr( $alias = null ) |
|
35 | +{ |
|
33 | 36 | $app = \GeminiLabs\SiteReviews\Application::load(); |
34 | 37 | return !empty( $alias ) |
35 | 38 | ? $app->make( $alias ) |
@@ -41,11 +44,14 @@ discard block |
||
41 | 44 | * @param $column string |
42 | 45 | * @return array |
43 | 46 | */ |
44 | -function glsr_array_column( array $array, $column ) { |
|
47 | +function glsr_array_column( array $array, $column ) |
|
48 | +{ |
|
45 | 49 | $result = array(); |
46 | 50 | foreach( $array as $subarray ) { |
47 | 51 | $subarray = (array)$subarray; |
48 | - if( !isset( $subarray[$column] ))continue; |
|
52 | + if( !isset( $subarray[$column] )) { |
|
53 | + continue; |
|
54 | + } |
|
49 | 55 | $result[] = $subarray[$column]; |
50 | 56 | } |
51 | 57 | return $result; |
@@ -54,7 +60,8 @@ discard block |
||
54 | 60 | /** |
55 | 61 | * @return void |
56 | 62 | */ |
57 | -function glsr_calculate_ratings() { |
|
63 | +function glsr_calculate_ratings() |
|
64 | +{ |
|
58 | 65 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
59 | 66 | glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
60 | 67 | } |
@@ -62,7 +69,8 @@ discard block |
||
62 | 69 | /** |
63 | 70 | * @return \GeminiLabs\SiteReviews\Review|false |
64 | 71 | */ |
65 | -function glsr_create_review( $reviewValues = array() ) { |
|
72 | +function glsr_create_review( $reviewValues = array() ) |
|
73 | +{ |
|
66 | 74 | if( !is_array( $reviewValues )) { |
67 | 75 | $reviewValues = array(); |
68 | 76 | } |
@@ -73,7 +81,8 @@ discard block |
||
73 | 81 | /** |
74 | 82 | * @return \WP_Screen|object |
75 | 83 | */ |
76 | -function glsr_current_screen() { |
|
84 | +function glsr_current_screen() |
|
85 | +{ |
|
77 | 86 | if( function_exists( 'get_current_screen' )) { |
78 | 87 | $screen = get_current_screen(); |
79 | 88 | } |
@@ -86,7 +95,8 @@ discard block |
||
86 | 95 | * @param mixed ...$vars |
87 | 96 | * @return void |
88 | 97 | */ |
89 | -function glsr_debug( ...$vars ) { |
|
98 | +function glsr_debug( ...$vars ) |
|
99 | +{ |
|
90 | 100 | if( count( $vars ) == 1 ) { |
91 | 101 | $value = htmlspecialchars( print_r( $vars[0], true ), ENT_QUOTES, 'UTF-8' ); |
92 | 102 | printf( '<div class="glsr-debug"><pre>%s</pre></div>', $value ); |
@@ -105,7 +115,8 @@ discard block |
||
105 | 115 | * @param mixed $fallback |
106 | 116 | * @return string|array |
107 | 117 | */ |
108 | -function glsr_get_option( $path = '', $fallback = '' ) { |
|
118 | +function glsr_get_option( $path = '', $fallback = '' ) |
|
119 | +{ |
|
109 | 120 | return is_string( $path ) |
110 | 121 | ? glsr( 'Database\OptionManager' )->get( 'settings.'.$path, $fallback ) |
111 | 122 | : $fallback; |
@@ -114,7 +125,8 @@ discard block |
||
114 | 125 | /** |
115 | 126 | * @return array |
116 | 127 | */ |
117 | -function glsr_get_options() { |
|
128 | +function glsr_get_options() |
|
129 | +{ |
|
118 | 130 | return glsr( 'Database\OptionManager' )->get( 'settings' ); |
119 | 131 | } |
120 | 132 | |
@@ -122,7 +134,8 @@ discard block |
||
122 | 134 | * @param int $post_id |
123 | 135 | * @return \GeminiLabs\SiteReviews\Review |
124 | 136 | */ |
125 | -function glsr_get_review( $post_id ) { |
|
137 | +function glsr_get_review( $post_id ) |
|
138 | +{ |
|
126 | 139 | $post = null; |
127 | 140 | if( is_numeric( $post_id )) { |
128 | 141 | $post = get_post( $post_id ); |
@@ -136,7 +149,8 @@ discard block |
||
136 | 149 | /** |
137 | 150 | * @return array |
138 | 151 | */ |
139 | -function glsr_get_reviews( $args = array() ) { |
|
152 | +function glsr_get_reviews( $args = array() ) |
|
153 | +{ |
|
140 | 154 | if( !is_array( $args )) { |
141 | 155 | $args = []; |
142 | 156 | } |
@@ -146,7 +160,8 @@ discard block |
||
146 | 160 | /** |
147 | 161 | * @return \GeminiLabs\SiteReviews\Modules\Console |
148 | 162 | */ |
149 | -function glsr_log() { |
|
163 | +function glsr_log() |
|
164 | +{ |
|
150 | 165 | $args = func_get_args(); |
151 | 166 | $context = isset( $args[1] ) |
152 | 167 | ? $args[1] |
@@ -21,11 +21,11 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function approve() |
23 | 23 | { |
24 | - check_admin_referer( 'approve-review_'.( $postId = $this->getPostId() )); |
|
25 | - wp_update_post([ |
|
24 | + check_admin_referer( 'approve-review_'.($postId = $this->getPostId()) ); |
|
25 | + wp_update_post( [ |
|
26 | 26 | 'ID' => $postId, |
27 | 27 | 'post_status' => 'publish', |
28 | - ]); |
|
28 | + ] ); |
|
29 | 29 | wp_safe_redirect( wp_get_referer() ); |
30 | 30 | exit; |
31 | 31 | } |
@@ -58,11 +58,11 @@ discard block |
||
58 | 58 | $columns = glsr( Helper::class )->consolidateArray( $columns ); |
59 | 59 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
60 | 60 | foreach( $postTypeColumns as $key => &$value ) { |
61 | - if( !array_key_exists( $key, $columns ) || !empty( $value ))continue; |
|
61 | + if( !array_key_exists( $key, $columns ) || !empty($value) )continue; |
|
62 | 62 | $value = $columns[$key]; |
63 | 63 | } |
64 | - if( count( glsr( Database::class )->getReviewsMeta( 'review_type' )) < 2 ) { |
|
65 | - unset( $postTypeColumns['review_type'] ); |
|
64 | + if( count( glsr( Database::class )->getReviewsMeta( 'review_type' ) ) < 2 ) { |
|
65 | + unset($postTypeColumns['review_type']); |
|
66 | 66 | } |
67 | 67 | return array_filter( $postTypeColumns, 'strlen' ); |
68 | 68 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | public function filterPostStates( $postStates, WP_Post $post ) { |
103 | 103 | $postStates = glsr( Helper::class )->consolidateArray( $postStates ); |
104 | - if( $post->post_type == Application::POST_TYPE && array_key_exists( 'pending', $postStates )) { |
|
104 | + if( $post->post_type == Application::POST_TYPE && array_key_exists( 'pending', $postStates ) ) { |
|
105 | 105 | $postStates['pending'] = __( 'Unapproved', 'site-reviews' ); |
106 | 106 | } |
107 | 107 | return $postStates; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | if( $post->post_type != Application::POST_TYPE || $post->post_status == 'trash' ) { |
118 | 118 | return $actions; |
119 | 119 | } |
120 | - unset( $actions['inline hide-if-no-js'] ); //Remove Quick-edit |
|
120 | + unset($actions['inline hide-if-no-js']); //Remove Quick-edit |
|
121 | 121 | $rowActions = [ |
122 | 122 | 'approve' => esc_attr__( 'Approve', 'site-reviews' ), |
123 | 123 | 'unapprove' => esc_attr__( 'Unapprove', 'site-reviews' ), |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | admin_url( 'post.php?post='.$post->ID.'&action='.$key ), |
132 | 132 | $key.'-review_'.$post->ID |
133 | 133 | ), |
134 | - ]); |
|
134 | + ] ); |
|
135 | 135 | } |
136 | 136 | return $newActions + glsr( Helper::class )->consolidateArray( $actions ); |
137 | 137 | } |
@@ -145,9 +145,9 @@ discard block |
||
145 | 145 | { |
146 | 146 | $columns = glsr( Helper::class )->consolidateArray( $columns ); |
147 | 147 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
148 | - unset( $postTypeColumns['cb'] ); |
|
148 | + unset($postTypeColumns['cb']); |
|
149 | 149 | foreach( $postTypeColumns as $key => $value ) { |
150 | - if( glsr( Helper::class )->startsWith( 'taxonomy', $key ))continue; |
|
150 | + if( glsr( Helper::class )->startsWith( 'taxonomy', $key ) )continue; |
|
151 | 151 | $columns[$key] = $key; |
152 | 152 | } |
153 | 153 | return $columns; |
@@ -165,18 +165,18 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public function filterStatusText( $translation, $single, $plural, $number, $domain ) |
167 | 167 | { |
168 | - if( $this->canModifyTranslation( $domain )) { |
|
168 | + if( $this->canModifyTranslation( $domain ) ) { |
|
169 | 169 | $strings = [ |
170 | 170 | 'Published' => __( 'Approved', 'site-reviews' ), |
171 | 171 | 'Pending' => __( 'Unapproved', 'site-reviews' ), |
172 | 172 | ]; |
173 | 173 | foreach( $strings as $search => $replace ) { |
174 | 174 | if( strpos( $single, $search ) === false )continue; |
175 | - $translation = $this->getTranslation([ |
|
175 | + $translation = $this->getTranslation( [ |
|
176 | 176 | 'number' => $number, |
177 | 177 | 'plural' => str_replace( $search, $replace, $plural ), |
178 | 178 | 'single' => str_replace( $search, $replace, $single ), |
179 | - ]); |
|
179 | + ] ); |
|
180 | 180 | } |
181 | 181 | } |
182 | 182 | return $translation; |
@@ -223,9 +223,9 @@ discard block |
||
223 | 223 | */ |
224 | 224 | public function saveBulkEditFields( $postId ) |
225 | 225 | { |
226 | - if( !current_user_can( 'edit_posts' ))return; |
|
226 | + if( !current_user_can( 'edit_posts' ) )return; |
|
227 | 227 | $assignedTo = filter_input( INPUT_GET, 'assigned_to' ); |
228 | - if( $assignedTo && get_post( $assignedTo )) { |
|
228 | + if( $assignedTo && get_post( $assignedTo ) ) { |
|
229 | 229 | update_post_meta( $postId, 'assigned_to', $assignedTo ); |
230 | 230 | } |
231 | 231 | } |
@@ -236,10 +236,10 @@ discard block |
||
236 | 236 | */ |
237 | 237 | public function setQueryForColumn( WP_Query $query ) |
238 | 238 | { |
239 | - if( !$this->hasPermission( $query ))return; |
|
239 | + if( !$this->hasPermission( $query ) )return; |
|
240 | 240 | $this->setMetaQuery( $query, [ |
241 | 241 | 'rating', 'review_type', |
242 | - ]); |
|
242 | + ] ); |
|
243 | 243 | $this->setOrderby( $query ); |
244 | 244 | } |
245 | 245 | |
@@ -249,11 +249,11 @@ discard block |
||
249 | 249 | */ |
250 | 250 | public function unapprove() |
251 | 251 | { |
252 | - check_admin_referer( 'unapprove-review_'.( $postId = $this->getPostId() )); |
|
253 | - wp_update_post([ |
|
252 | + check_admin_referer( 'unapprove-review_'.($postId = $this->getPostId()) ); |
|
253 | + wp_update_post( [ |
|
254 | 254 | 'ID' => $postId, |
255 | 255 | 'post_status' => 'pending', |
256 | - ]); |
|
256 | + ] ); |
|
257 | 257 | wp_safe_redirect( wp_get_referer() ); |
258 | 258 | exit; |
259 | 259 | } |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | 'single' => '', |
284 | 284 | 'text' => '', |
285 | 285 | ]; |
286 | - $args = (object) wp_parse_args( $args, $defaults ); |
|
286 | + $args = (object)wp_parse_args( $args, $defaults ); |
|
287 | 287 | $translations = get_translations_for_domain( Application::ID ); |
288 | 288 | return $args->text |
289 | 289 | ? $translations->translate( $args->text ) |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | protected function setMetaQuery( WP_Query $query, array $metaKeys ) |
309 | 309 | { |
310 | 310 | foreach( $metaKeys as $key ) { |
311 | - if( !( $value = filter_input( INPUT_GET, $key )))continue; |
|
311 | + if( !($value = filter_input( INPUT_GET, $key )) )continue; |
|
312 | 312 | $metaQuery = (array)$query->get( 'meta_query' ); |
313 | 313 | $metaQuery[] = [ |
314 | 314 | 'key' => $key, |
@@ -325,8 +325,8 @@ discard block |
||
325 | 325 | { |
326 | 326 | $orderby = $query->get( 'orderby' ); |
327 | 327 | $columns = glsr()->postTypeColumns[Application::POST_TYPE]; |
328 | - unset( $columns['cb'], $columns['title'], $columns['date'] ); |
|
329 | - if( in_array( $orderby, array_keys( $columns ))) { |
|
328 | + unset($columns['cb'], $columns['title'], $columns['date']); |
|
329 | + if( in_array( $orderby, array_keys( $columns ) ) ) { |
|
330 | 330 | $query->set( 'meta_key', $orderby ); |
331 | 331 | $query->set( 'orderby', 'meta_value' ); |
332 | 332 | } |
@@ -58,7 +58,9 @@ discard block |
||
58 | 58 | $columns = glsr( Helper::class )->consolidateArray( $columns ); |
59 | 59 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
60 | 60 | foreach( $postTypeColumns as $key => &$value ) { |
61 | - if( !array_key_exists( $key, $columns ) || !empty( $value ))continue; |
|
61 | + if( !array_key_exists( $key, $columns ) || !empty( $value )) { |
|
62 | + continue; |
|
63 | + } |
|
62 | 64 | $value = $columns[$key]; |
63 | 65 | } |
64 | 66 | if( count( glsr( Database::class )->getReviewsMeta( 'review_type' )) < 2 ) { |
@@ -99,7 +101,8 @@ discard block |
||
99 | 101 | * @return array |
100 | 102 | * @filter display_post_states |
101 | 103 | */ |
102 | - public function filterPostStates( $postStates, WP_Post $post ) { |
|
104 | + public function filterPostStates( $postStates, WP_Post $post ) |
|
105 | + { |
|
103 | 106 | $postStates = glsr( Helper::class )->consolidateArray( $postStates ); |
104 | 107 | if( $post->post_type == Application::POST_TYPE && array_key_exists( 'pending', $postStates )) { |
105 | 108 | $postStates['pending'] = __( 'Unapproved', 'site-reviews' ); |
@@ -147,7 +150,9 @@ discard block |
||
147 | 150 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
148 | 151 | unset( $postTypeColumns['cb'] ); |
149 | 152 | foreach( $postTypeColumns as $key => $value ) { |
150 | - if( glsr( Helper::class )->startsWith( 'taxonomy', $key ))continue; |
|
153 | + if( glsr( Helper::class )->startsWith( 'taxonomy', $key )) { |
|
154 | + continue; |
|
155 | + } |
|
151 | 156 | $columns[$key] = $key; |
152 | 157 | } |
153 | 158 | return $columns; |
@@ -171,7 +176,9 @@ discard block |
||
171 | 176 | 'Pending' => __( 'Unapproved', 'site-reviews' ), |
172 | 177 | ]; |
173 | 178 | foreach( $strings as $search => $replace ) { |
174 | - if( strpos( $single, $search ) === false )continue; |
|
179 | + if( strpos( $single, $search ) === false ) { |
|
180 | + continue; |
|
181 | + } |
|
175 | 182 | $translation = $this->getTranslation([ |
176 | 183 | 'number' => $number, |
177 | 184 | 'plural' => str_replace( $search, $replace, $plural ), |
@@ -223,7 +230,9 @@ discard block |
||
223 | 230 | */ |
224 | 231 | public function saveBulkEditFields( $postId ) |
225 | 232 | { |
226 | - if( !current_user_can( 'edit_posts' ))return; |
|
233 | + if( !current_user_can( 'edit_posts' )) { |
|
234 | + return; |
|
235 | + } |
|
227 | 236 | $assignedTo = filter_input( INPUT_GET, 'assigned_to' ); |
228 | 237 | if( $assignedTo && get_post( $assignedTo )) { |
229 | 238 | update_post_meta( $postId, 'assigned_to', $assignedTo ); |
@@ -236,7 +245,9 @@ discard block |
||
236 | 245 | */ |
237 | 246 | public function setQueryForColumn( WP_Query $query ) |
238 | 247 | { |
239 | - if( !$this->hasPermission( $query ))return; |
|
248 | + if( !$this->hasPermission( $query )) { |
|
249 | + return; |
|
250 | + } |
|
240 | 251 | $this->setMetaQuery( $query, [ |
241 | 252 | 'rating', 'review_type', |
242 | 253 | ]); |
@@ -308,7 +319,9 @@ discard block |
||
308 | 319 | protected function setMetaQuery( WP_Query $query, array $metaKeys ) |
309 | 320 | { |
310 | 321 | foreach( $metaKeys as $key ) { |
311 | - if( !( $value = filter_input( INPUT_GET, $key )))continue; |
|
322 | + if( !( $value = filter_input( INPUT_GET, $key ))) { |
|
323 | + continue; |
|
324 | + } |
|
312 | 325 | $metaQuery = (array)$query->get( 'meta_query' ); |
313 | 326 | $metaQuery[] = [ |
314 | 327 | 'key' => $key, |