@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | 'navigation' => $navigation, |
| 57 | 57 | ], |
| 58 | 58 | 'reviews' => $this->buildReviews(), |
| 59 | - ]); |
|
| 59 | + ] ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $reviewValues = []; |
| 83 | 83 | foreach( $review as $key => $value ) { |
| 84 | 84 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
| 85 | - if( !method_exists( $this, $method ))continue; |
|
| 85 | + if( !method_exists( $this, $method ) )continue; |
|
| 86 | 86 | $reviewValues[$key] = $this->$method( $key, $value ); |
| 87 | 87 | } |
| 88 | 88 | $reviewValues = apply_filters( 'site-reviews/review/build/after', (array)$reviewValues ); |
@@ -96,12 +96,12 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | protected function buildOptionAssignedTo( $key, $value ) |
| 98 | 98 | { |
| 99 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 100 | - $post = get_post( intval( $value )); |
|
| 101 | - if( !( $post instanceof WP_Post ))return; |
|
| 99 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
| 100 | + $post = get_post( intval( $value ) ); |
|
| 101 | + if( !($post instanceof WP_Post) )return; |
|
| 102 | 102 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 103 | 103 | 'href' => get_the_permalink( $post->ID ), |
| 104 | - ]); |
|
| 104 | + ] ); |
|
| 105 | 105 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
| 106 | 106 | return $this->wrap( $key, '<span>'.$assignedTo.'</span>' ); |
| 107 | 107 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | protected function buildOptionAuthor( $key, $value ) |
| 115 | 115 | { |
| 116 | - if( $this->isHidden( $key ))return; |
|
| 116 | + if( $this->isHidden( $key ) )return; |
|
| 117 | 117 | $prefix = !$this->isOptionEnabled( 'settings.reviews.avatars' ) |
| 118 | 118 | ? apply_filters( 'site-reviews/review/author/prefix', '—' ) |
| 119 | 119 | : ''; |
@@ -127,13 +127,13 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | protected function buildOptionAvatar( $key, $value ) |
| 129 | 129 | { |
| 130 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 130 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
| 131 | 131 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 132 | - return $this->wrap( $key, glsr( Builder::class )->img([ |
|
| 132 | + return $this->wrap( $key, glsr( Builder::class )->img( [ |
|
| 133 | 133 | 'src' => $this->generateAvatar( $value ), |
| 134 | 134 | 'height' => $size, |
| 135 | 135 | 'width' => $size, |
| 136 | - ])); |
|
| 136 | + ] ) ); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | protected function buildOptionContent( $key, $value ) |
| 145 | 145 | { |
| 146 | 146 | $text = $this->normalizeText( $value ); |
| 147 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 147 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
| 148 | 148 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
| 149 | 149 | } |
| 150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | */ |
| 156 | 156 | protected function buildOptionDate( $key, $value ) |
| 157 | 157 | { |
| 158 | - if( $this->isHidden( $key ))return; |
|
| 158 | + if( $this->isHidden( $key ) )return; |
|
| 159 | 159 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 160 | 160 | if( $dateFormat == 'relative' ) { |
| 161 | 161 | $date = glsr( Date::class )->relative( $value ); |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | $format = $dateFormat == 'custom' |
| 165 | 165 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
| 166 | 166 | : (string)get_option( 'date_format' ); |
| 167 | - $date = date_i18n( $format, strtotime( $value )); |
|
| 167 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
| 168 | 168 | } |
| 169 | 169 | return $this->wrap( $key, '<span>'.$date.'</span>' ); |
| 170 | 170 | } |
@@ -176,10 +176,10 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | protected function buildOptionRating( $key, $value ) |
| 178 | 178 | { |
| 179 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 179 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 180 | 180 | $rating = glsr( Partial::class )->build( 'star-rating', [ |
| 181 | 181 | 'rating' => $value, |
| 182 | - ]); |
|
| 182 | + ] ); |
|
| 183 | 183 | return $this->wrap( $key, $rating ); |
| 184 | 184 | } |
| 185 | 185 | |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | protected function buildOptionResponse( $key, $value ) |
| 192 | 192 | { |
| 193 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 194 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
| 193 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 194 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
| 195 | 195 | $text = $this->normalizeText( $value ); |
| 196 | 196 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
| 197 | 197 | return $this->wrap( $key, |
@@ -207,8 +207,8 @@ discard block |
||
| 207 | 207 | */ |
| 208 | 208 | protected function buildOptionTitle( $key, $value ) |
| 209 | 209 | { |
| 210 | - if( $this->isHidden( $key ))return; |
|
| 211 | - if( empty( $value )) { |
|
| 210 | + if( $this->isHidden( $key ) )return; |
|
| 211 | + if( empty($value) ) { |
|
| 212 | 212 | $value = __( 'No Title', 'site-reviews' ); |
| 213 | 213 | } |
| 214 | 214 | return $this->wrap( $key, '<h3>'.$value.'</h3>' ); |
@@ -225,10 +225,10 @@ discard block |
||
| 225 | 225 | return $avatarUrl; |
| 226 | 226 | } |
| 227 | 227 | $authorIdOrEmail = get_the_author_meta( 'ID', $review->user_id ); |
| 228 | - if( empty( $authorIdOrEmail )) { |
|
| 228 | + if( empty($authorIdOrEmail) ) { |
|
| 229 | 229 | $authorIdOrEmail = $review->email; |
| 230 | 230 | } |
| 231 | - if( $newAvatar = get_avatar_url( $authorIdOrEmail )) { |
|
| 231 | + if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) { |
|
| 232 | 232 | return $newAvatar; |
| 233 | 233 | } |
| 234 | 234 | return $avatarUrl; |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | */ |
| 240 | 240 | protected function generateSchema() |
| 241 | 241 | { |
| 242 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 242 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 243 | 243 | glsr( Schema::class )->store( |
| 244 | 244 | glsr( Schema::class )->build( $this->args ) |
| 245 | 245 | ); |
@@ -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 isHidden( $key, $path = '' ) |
| 333 | 333 | { |
| 334 | - $isOptionEnabled = !empty( $path ) |
|
| 334 | + $isOptionEnabled = !empty($path) |
|
| 335 | 335 | ? $this->isOptionEnabled( $path ) |
| 336 | 336 | : true; |
| 337 | 337 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | */ |
| 345 | 345 | protected function isHiddenOrEmpty( $key, $value ) |
| 346 | 346 | { |
| 347 | - return $this->isHidden( $key ) || empty( $value ); |
|
| 347 | + return $this->isHidden( $key ) || empty($value); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -363,10 +363,10 @@ discard block |
||
| 363 | 363 | protected function normalizeText( $text ) |
| 364 | 364 | { |
| 365 | 365 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
| 366 | - $text = convert_smilies( strip_shortcodes( $text )); |
|
| 366 | + $text = convert_smilies( strip_shortcodes( $text ) ); |
|
| 367 | 367 | $text = str_replace( ']]>', ']]>', $text ); |
| 368 | 368 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
| 369 | - if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) { |
|
| 369 | + if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) { |
|
| 370 | 370 | $text = $this->getExcerpt( $text ); |
| 371 | 371 | } |
| 372 | 372 | return wptexturize( $text ); |
@@ -381,6 +381,6 @@ discard block |
||
| 381 | 381 | { |
| 382 | 382 | return glsr( Builder::class )->div( $value, [ |
| 383 | 383 | 'class' => 'glsr-review-'.$key, |
| 384 | - ]); |
|
| 384 | + ] ); |
|
| 385 | 385 | } |
| 386 | 386 | } |
@@ -82,7 +82,9 @@ discard block |
||
| 82 | 82 | $reviewValues = []; |
| 83 | 83 | foreach( $review as $key => $value ) { |
| 84 | 84 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
| 85 | - if( !method_exists( $this, $method ))continue; |
|
| 85 | + if( !method_exists( $this, $method )) { |
|
| 86 | + continue; |
|
| 87 | + } |
|
| 86 | 88 | $reviewValues[$key] = $this->$method( $key, $value ); |
| 87 | 89 | } |
| 88 | 90 | $reviewValues = apply_filters( 'site-reviews/review/build/after', (array)$reviewValues ); |
@@ -96,9 +98,13 @@ discard block |
||
| 96 | 98 | */ |
| 97 | 99 | protected function buildOptionAssignedTo( $key, $value ) |
| 98 | 100 | { |
| 99 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 101 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
| 102 | + return; |
|
| 103 | + } |
|
| 100 | 104 | $post = get_post( intval( $value )); |
| 101 | - if( !( $post instanceof WP_Post ))return; |
|
| 105 | + if( !( $post instanceof WP_Post )) { |
|
| 106 | + return; |
|
| 107 | + } |
|
| 102 | 108 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 103 | 109 | 'href' => get_the_permalink( $post->ID ), |
| 104 | 110 | ]); |
@@ -113,7 +119,9 @@ discard block |
||
| 113 | 119 | */ |
| 114 | 120 | protected function buildOptionAuthor( $key, $value ) |
| 115 | 121 | { |
| 116 | - if( $this->isHidden( $key ))return; |
|
| 122 | + if( $this->isHidden( $key )) { |
|
| 123 | + return; |
|
| 124 | + } |
|
| 117 | 125 | $prefix = !$this->isOptionEnabled( 'settings.reviews.avatars' ) |
| 118 | 126 | ? apply_filters( 'site-reviews/review/author/prefix', '—' ) |
| 119 | 127 | : ''; |
@@ -127,7 +135,9 @@ discard block |
||
| 127 | 135 | */ |
| 128 | 136 | protected function buildOptionAvatar( $key, $value ) |
| 129 | 137 | { |
| 130 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 138 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
| 139 | + return; |
|
| 140 | + } |
|
| 131 | 141 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 132 | 142 | return $this->wrap( $key, glsr( Builder::class )->img([ |
| 133 | 143 | 'src' => $this->generateAvatar( $value ), |
@@ -144,7 +154,9 @@ discard block |
||
| 144 | 154 | protected function buildOptionContent( $key, $value ) |
| 145 | 155 | { |
| 146 | 156 | $text = $this->normalizeText( $value ); |
| 147 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 157 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
| 158 | + return; |
|
| 159 | + } |
|
| 148 | 160 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
| 149 | 161 | } |
| 150 | 162 | |
@@ -155,7 +167,9 @@ discard block |
||
| 155 | 167 | */ |
| 156 | 168 | protected function buildOptionDate( $key, $value ) |
| 157 | 169 | { |
| 158 | - if( $this->isHidden( $key ))return; |
|
| 170 | + if( $this->isHidden( $key )) { |
|
| 171 | + return; |
|
| 172 | + } |
|
| 159 | 173 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 160 | 174 | if( $dateFormat == 'relative' ) { |
| 161 | 175 | $date = glsr( Date::class )->relative( $value ); |
@@ -176,7 +190,9 @@ discard block |
||
| 176 | 190 | */ |
| 177 | 191 | protected function buildOptionRating( $key, $value ) |
| 178 | 192 | { |
| 179 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 193 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 194 | + return; |
|
| 195 | + } |
|
| 180 | 196 | $rating = glsr( Partial::class )->build( 'star-rating', [ |
| 181 | 197 | 'rating' => $value, |
| 182 | 198 | ]); |
@@ -190,7 +206,9 @@ discard block |
||
| 190 | 206 | */ |
| 191 | 207 | protected function buildOptionResponse( $key, $value ) |
| 192 | 208 | { |
| 193 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 209 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 210 | + return; |
|
| 211 | + } |
|
| 194 | 212 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
| 195 | 213 | $text = $this->normalizeText( $value ); |
| 196 | 214 | $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 ); |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | 'avatar' => '', |
| 18 | 18 | 'content' => '', |
| 19 | 19 | 'custom' => '', |
| 20 | - 'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' )), |
|
| 20 | + 'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' ) ), |
|
| 21 | 21 | 'email' => '', |
| 22 | 22 | 'ip_address' => '', |
| 23 | 23 | 'pinned' => false, |
@@ -63,13 +63,13 @@ discard block |
||
| 63 | 63 | 'review_type' => '', |
| 64 | 64 | ]; |
| 65 | 65 | $meta = array_filter( |
| 66 | - array_map( 'array_shift', (array)get_post_meta( $post->ID )), |
|
| 66 | + array_map( 'array_shift', (array)get_post_meta( $post->ID ) ), |
|
| 67 | 67 | 'strlen' |
| 68 | 68 | ); |
| 69 | - $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta )); |
|
| 69 | + $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta ) ); |
|
| 70 | 70 | $this->modified = $this->isModified( $properties ); |
| 71 | 71 | array_walk( $properties, function( $value, $key ) { |
| 72 | - if( !property_exists( $this, $key ) || isset( $this->$key ))return; |
|
| 72 | + if( !property_exists( $this, $key ) || isset($this->$key) )return; |
|
| 73 | 73 | $this->$key = maybe_unserialize( $value ); |
| 74 | 74 | }); |
| 75 | 75 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | protected function setTermIds( WP_Post $post ) |
| 81 | 81 | { |
| 82 | 82 | $this->term_ids = []; |
| 83 | - if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY )))return; |
|
| 83 | + if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY ) ) )return; |
|
| 84 | 84 | foreach( $terms as $term ) { |
| 85 | 85 | $this->term_ids[] = $term->term_id; |
| 86 | 86 | } |
@@ -69,7 +69,9 @@ discard block |
||
| 69 | 69 | $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta )); |
| 70 | 70 | $this->modified = $this->isModified( $properties ); |
| 71 | 71 | array_walk( $properties, function( $value, $key ) { |
| 72 | - if( !property_exists( $this, $key ) || isset( $this->$key ))return; |
|
| 72 | + if( !property_exists( $this, $key ) || isset( $this->$key )) { |
|
| 73 | + return; |
|
| 74 | + } |
|
| 73 | 75 | $this->$key = maybe_unserialize( $value ); |
| 74 | 76 | }); |
| 75 | 77 | } |
@@ -80,7 +82,9 @@ discard block |
||
| 80 | 82 | protected function setTermIds( WP_Post $post ) |
| 81 | 83 | { |
| 82 | 84 | $this->term_ids = []; |
| 83 | - if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY )))return; |
|
| 85 | + if( !is_array( $terms = get_the_terms( $post, Application::TAXONOMY ))) { |
|
| 86 | + return; |
|
| 87 | + } |
|
| 84 | 88 | foreach( $terms as $term ) { |
| 85 | 89 | $this->term_ids[] = $term->term_id; |
| 86 | 90 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function __call( $name, array $args = [] ) |
| 15 | 15 | { |
| 16 | - if( !method_exists( $this, $name ))return; |
|
| 16 | + if( !method_exists( $this, $name ) )return; |
|
| 17 | 17 | $defaults = call_user_func_array( [$this, $name], $args ); |
| 18 | 18 | $hookName = (new ReflectionClass( $this ))->getShortName(); |
| 19 | 19 | $hookName = str_replace( 'Defaults', '', $hookName ); |
@@ -13,7 +13,9 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function __call( $name, array $args = [] ) |
| 15 | 15 | { |
| 16 | - if( !method_exists( $this, $name ))return; |
|
| 16 | + if( !method_exists( $this, $name )) { |
|
| 17 | + return; |
|
| 18 | + } |
|
| 17 | 19 | $defaults = call_user_func_array( [$this, $name], $args ); |
| 18 | 20 | $hookName = (new ReflectionClass( $this ))->getShortName(); |
| 19 | 21 | $hookName = str_replace( 'Defaults', '', $hookName ); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | public function get() |
| 110 | 110 | { |
| 111 | - return empty( $this->log ) |
|
| 111 | + return empty($this->log) |
|
| 112 | 112 | ? __( 'Console is empty', 'site-reviews' ) |
| 113 | 113 | : $this->log; |
| 114 | 114 | } |
@@ -120,11 +120,11 @@ discard block |
||
| 120 | 120 | public function humanSize( $valueIfEmpty = null ) |
| 121 | 121 | { |
| 122 | 122 | $bytes = $this->size(); |
| 123 | - if( empty( $bytes ) && is_string( $valueIfEmpty )) { |
|
| 123 | + if( empty($bytes) && is_string( $valueIfEmpty ) ) { |
|
| 124 | 124 | return $valueIfEmpty; |
| 125 | 125 | } |
| 126 | - $exponent = floor( log( max( $bytes, 1 ), 1024 )); |
|
| 127 | - return round( $bytes / pow( 1024, $exponent ), 2 ).' '.['bytes','KB','MB','GB'][$exponent]; |
|
| 126 | + $exponent = floor( log( max( $bytes, 1 ), 1024 ) ); |
|
| 127 | + return round( $bytes / pow( 1024, $exponent ), 2 ).' '.['bytes', 'KB', 'MB', 'GB'][$exponent]; |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | /** |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | public function log( $level, $message, array $context = [] ) |
| 148 | 148 | { |
| 149 | 149 | $constants = (new ReflectionClass( __CLASS__ ))->getConstants(); |
| 150 | - if( in_array( $level, $constants, true )) { |
|
| 150 | + if( in_array( $level, $constants, true ) ) { |
|
| 151 | 151 | $entry = $this->buildLogEntry( $level, $message, $context ); |
| 152 | - file_put_contents( $this->file, $entry, FILE_APPEND|LOCK_EX ); |
|
| 152 | + file_put_contents( $this->file, $entry, FILE_APPEND | LOCK_EX ); |
|
| 153 | 153 | $this->reset(); |
| 154 | 154 | } |
| 155 | 155 | return $this; |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | protected function interpolate( $message, $context = [] ) |
| 224 | 224 | { |
| 225 | - if( $this->isObjectOrArray( $message ) || !is_array( $context )) { |
|
| 225 | + if( $this->isObjectOrArray( $message ) || !is_array( $context ) ) { |
|
| 226 | 226 | return print_r( $message, true ); |
| 227 | 227 | } |
| 228 | 228 | $replace = []; |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | if( $value instanceof DateTime ) { |
| 251 | 251 | $value = $value->format( 'Y-m-d H:i:s' ); |
| 252 | 252 | } |
| 253 | - else if( $this->isObjectOrArray( $value )) { |
|
| 253 | + else if( $this->isObjectOrArray( $value ) ) { |
|
| 254 | 254 | $value = json_encode( $value ); |
| 255 | 255 | } |
| 256 | 256 | return (string)$value; |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | $this->clear(); |
| 266 | 266 | file_put_contents( |
| 267 | 267 | $this->file, |
| 268 | - $this->buildLogEntry( 'info', __( 'Console was automatically cleared (128 KB maximum size)', 'site-reviews' )) |
|
| 268 | + $this->buildLogEntry( 'info', __( 'Console was automatically cleared (128 KB maximum size)', 'site-reviews' ) ) |
|
| 269 | 269 | ); |
| 270 | 270 | } |
| 271 | 271 | } |
@@ -119,13 +119,13 @@ discard block |
||
| 119 | 119 | */ |
| 120 | 120 | public function renderAssignedToMetabox( WP_Post $post ) |
| 121 | 121 | { |
| 122 | - if( !$this->isReviewPostType( $post ))return; |
|
| 122 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 123 | 123 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
| 124 | 124 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
| 125 | 125 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
| 126 | 126 | 'id' => $assignedTo, |
| 127 | 127 | 'template' => $this->buildAssignedToTemplate( $assignedTo, $post ), |
| 128 | - ]); |
|
| 128 | + ] ); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -134,12 +134,12 @@ discard block |
||
| 134 | 134 | */ |
| 135 | 135 | public function renderDetailsMetaBox( WP_Post $post ) |
| 136 | 136 | { |
| 137 | - if( !$this->isReviewPostType( $post ))return; |
|
| 137 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 138 | 138 | $review = glsr( ReviewManager::class )->single( $post ); |
| 139 | 139 | glsr()->render( 'partials/editor/metabox-details', [ |
| 140 | 140 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
| 141 | 141 | 'metabox' => $this->normalizeDetailsMetaBox( $review ), |
| 142 | - ]); |
|
| 142 | + ] ); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |
@@ -148,14 +148,14 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | public function renderPinnedInPublishMetaBox() |
| 150 | 150 | { |
| 151 | - if( !$this->isReviewPostType( get_post() ))return; |
|
| 151 | + if( !$this->isReviewPostType( get_post() ) )return; |
|
| 152 | 152 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
| 153 | 153 | 'context' => [ |
| 154 | 154 | 'no' => __( 'No', 'site-reviews' ), |
| 155 | 155 | 'yes' => __( 'Yes', 'site-reviews' ), |
| 156 | 156 | ], |
| 157 | - 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )), |
|
| 158 | - ]); |
|
| 157 | + 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ), |
|
| 158 | + ] ); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -164,11 +164,11 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | public function renderResponseMetaBox( WP_Post $post ) |
| 166 | 166 | { |
| 167 | - if( !$this->isReviewPostType( $post ))return; |
|
| 167 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 168 | 168 | wp_nonce_field( 'response', '_nonce-response', false ); |
| 169 | 169 | glsr()->render( 'partials/editor/metabox-response', [ |
| 170 | 170 | 'response' => get_post_meta( $post->ID, 'response', true ), |
| 171 | - ]); |
|
| 171 | + ] ); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -178,12 +178,12 @@ discard block |
||
| 178 | 178 | */ |
| 179 | 179 | public function renderTaxonomyMetabox( WP_Post $post ) |
| 180 | 180 | { |
| 181 | - if( !$this->isReviewPostType( $post ))return; |
|
| 181 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 182 | 182 | glsr()->render( 'partials/editor/metabox-categories', [ |
| 183 | 183 | 'post' => $post, |
| 184 | 184 | 'tax_name' => Application::TAXONOMY, |
| 185 | 185 | 'taxonomy' => get_taxonomy( Application::TAXONOMY ), |
| 186 | - ]); |
|
| 186 | + ] ); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | /** |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | */ |
| 194 | 194 | public function revertReview() |
| 195 | 195 | { |
| 196 | - check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() )); |
|
| 196 | + check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) ); |
|
| 197 | 197 | glsr( ReviewManager::class )->revert( $postId ); |
| 198 | 198 | $this->redirect( $postId, 52 ); |
| 199 | 199 | } |
@@ -216,13 +216,13 @@ discard block |
||
| 216 | 216 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
| 217 | 217 | { |
| 218 | 218 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
| 219 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
| 219 | + if( !($assignedPost instanceof WP_Post) )return; |
|
| 220 | 220 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
| 221 | 221 | 'context' => [ |
| 222 | 222 | 'data.url' => (string)get_permalink( $assignedPost ), |
| 223 | 223 | 'data.title' => get_the_title( $assignedPost ), |
| 224 | 224 | ], |
| 225 | - ]); |
|
| 225 | + ] ); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | /** |
@@ -242,13 +242,13 @@ discard block |
||
| 242 | 242 | 'class' => 'button button-large', |
| 243 | 243 | 'href' => $revertUrl, |
| 244 | 244 | 'id' => 'revert', |
| 245 | - ]); |
|
| 245 | + ] ); |
|
| 246 | 246 | } |
| 247 | 247 | return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [ |
| 248 | 248 | 'class' => 'button button-large', |
| 249 | 249 | 'disabled' => true, |
| 250 | 250 | 'id' => 'revert', |
| 251 | - ]); |
|
| 251 | + ] ); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | /** |
@@ -261,11 +261,11 @@ discard block |
||
| 261 | 261 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
| 262 | 262 | ? glsr()->reviewTypes[$review->review_type] |
| 263 | 263 | : __( 'Unknown', 'site-reviews' ); |
| 264 | - if( !empty( $review->url )) { |
|
| 264 | + if( !empty($review->url) ) { |
|
| 265 | 265 | $reviewType = glsr( Builder::class )->a( $reviewType, [ |
| 266 | 266 | 'href' => $review->url, |
| 267 | 267 | 'target' => '_blank', |
| 268 | - ]); |
|
| 268 | + ] ); |
|
| 269 | 269 | } |
| 270 | 270 | return $reviewType; |
| 271 | 271 | } |
@@ -284,16 +284,16 @@ discard block |
||
| 284 | 284 | */ |
| 285 | 285 | protected function normalizeDetailsMetaBox( Review $review ) |
| 286 | 286 | { |
| 287 | - $user = empty( $review->user_id ) |
|
| 287 | + $user = empty($review->user_id) |
|
| 288 | 288 | ? __( 'Unregistered user', 'site-reviews' ) |
| 289 | 289 | : glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [ |
| 290 | 290 | 'href' => get_author_posts_url( $review->user_id ), |
| 291 | - ]); |
|
| 292 | - $email = empty( $review->email ) |
|
| 291 | + ] ); |
|
| 292 | + $email = empty($review->email) |
|
| 293 | 293 | ? '—' |
| 294 | 294 | : glsr( Builder::class )->a( $review->email, [ |
| 295 | 295 | 'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ), |
| 296 | - ]); |
|
| 296 | + ] ); |
|
| 297 | 297 | $metabox = [ |
| 298 | 298 | __( 'Rating', 'site-reviews' ) => glsr( Partial::class )->build( 'star-rating', ['rating' => $review->rating] ), |
| 299 | 299 | __( 'Type', 'site-reviews' ) => $this->getReviewType( $review ), |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | __( 'IP Address', 'site-reviews' ) => $review->ip_address, |
| 305 | 305 | __( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ), |
| 306 | 306 | ]; |
| 307 | - return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review )); |
|
| 307 | + return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) ); |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | /** |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | $redirectUri = $hasReferer |
| 322 | 322 | ? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer ) |
| 323 | 323 | : get_edit_post_link( $postId ); |
| 324 | - wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri )); |
|
| 324 | + wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) ); |
|
| 325 | 325 | exit; |
| 326 | 326 | } |
| 327 | 327 | } |
@@ -89,7 +89,9 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function registerMetaBoxes( $postType ) |
| 91 | 91 | { |
| 92 | - if( $postType != Application::POST_TYPE )return; |
|
| 92 | + if( $postType != Application::POST_TYPE ) { |
|
| 93 | + return; |
|
| 94 | + } |
|
| 93 | 95 | add_meta_box( Application::ID.'_assigned_to', __( 'Assigned To', 'site-reviews' ), [$this, 'renderAssignedToMetabox'], null, 'side' ); |
| 94 | 96 | add_meta_box( Application::ID.'_review', __( 'Details', 'site-reviews' ), [$this, 'renderDetailsMetaBox'], null, 'side' ); |
| 95 | 97 | add_meta_box( Application::ID.'_response', __( 'Respond Publicly', 'site-reviews' ), [$this, 'renderResponseMetaBox'], null, 'normal' ); |
@@ -119,7 +121,9 @@ discard block |
||
| 119 | 121 | */ |
| 120 | 122 | public function renderAssignedToMetabox( WP_Post $post ) |
| 121 | 123 | { |
| 122 | - if( !$this->isReviewPostType( $post ))return; |
|
| 124 | + if( !$this->isReviewPostType( $post )) { |
|
| 125 | + return; |
|
| 126 | + } |
|
| 123 | 127 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
| 124 | 128 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
| 125 | 129 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
@@ -134,7 +138,9 @@ discard block |
||
| 134 | 138 | */ |
| 135 | 139 | public function renderDetailsMetaBox( WP_Post $post ) |
| 136 | 140 | { |
| 137 | - if( !$this->isReviewPostType( $post ))return; |
|
| 141 | + if( !$this->isReviewPostType( $post )) { |
|
| 142 | + return; |
|
| 143 | + } |
|
| 138 | 144 | $review = glsr( ReviewManager::class )->single( $post ); |
| 139 | 145 | glsr()->render( 'partials/editor/metabox-details', [ |
| 140 | 146 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
@@ -148,7 +154,9 @@ discard block |
||
| 148 | 154 | */ |
| 149 | 155 | public function renderPinnedInPublishMetaBox() |
| 150 | 156 | { |
| 151 | - if( !$this->isReviewPostType( get_post() ))return; |
|
| 157 | + if( !$this->isReviewPostType( get_post() )) { |
|
| 158 | + return; |
|
| 159 | + } |
|
| 152 | 160 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
| 153 | 161 | 'context' => [ |
| 154 | 162 | 'no' => __( 'No', 'site-reviews' ), |
@@ -164,7 +172,9 @@ discard block |
||
| 164 | 172 | */ |
| 165 | 173 | public function renderResponseMetaBox( WP_Post $post ) |
| 166 | 174 | { |
| 167 | - if( !$this->isReviewPostType( $post ))return; |
|
| 175 | + if( !$this->isReviewPostType( $post )) { |
|
| 176 | + return; |
|
| 177 | + } |
|
| 168 | 178 | wp_nonce_field( 'response', '_nonce-response', false ); |
| 169 | 179 | glsr()->render( 'partials/editor/metabox-response', [ |
| 170 | 180 | 'response' => get_post_meta( $post->ID, 'response', true ), |
@@ -178,7 +188,9 @@ discard block |
||
| 178 | 188 | */ |
| 179 | 189 | public function renderTaxonomyMetabox( WP_Post $post ) |
| 180 | 190 | { |
| 181 | - if( !$this->isReviewPostType( $post ))return; |
|
| 191 | + if( !$this->isReviewPostType( $post )) { |
|
| 192 | + return; |
|
| 193 | + } |
|
| 182 | 194 | glsr()->render( 'partials/editor/metabox-categories', [ |
| 183 | 195 | 'post' => $post, |
| 184 | 196 | 'tax_name' => Application::TAXONOMY, |
@@ -216,7 +228,9 @@ discard block |
||
| 216 | 228 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
| 217 | 229 | { |
| 218 | 230 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
| 219 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
| 231 | + if( !( $assignedPost instanceof WP_Post )) { |
|
| 232 | + return; |
|
| 233 | + } |
|
| 220 | 234 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
| 221 | 235 | 'context' => [ |
| 222 | 236 | 'data.url' => (string)get_permalink( $assignedPost ), |
@@ -257,7 +271,9 @@ discard block |
||
| 257 | 271 | */ |
| 258 | 272 | protected function getReviewType( $review ) |
| 259 | 273 | { |
| 260 | - if( count( glsr()->reviewTypes ) < 2 )return; |
|
| 274 | + if( count( glsr()->reviewTypes ) < 2 ) { |
|
| 275 | + return; |
|
| 276 | + } |
|
| 261 | 277 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
| 262 | 278 | ? glsr()->reviewTypes[$review->review_type] |
| 263 | 279 | : __( 'Unknown', 'site-reviews' ); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function enqueueAssets() |
| 27 | 27 | { |
| 28 | - $command = new EnqueueAdminAssets([ |
|
| 28 | + $command = new EnqueueAdminAssets( [ |
|
| 29 | 29 | 'pointers' => [[ |
| 30 | 30 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
| 31 | 31 | 'id' => 'glsr-pointer-pinned', |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | 'target' => '#misc-pub-pinned', |
| 38 | 38 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
| 39 | 39 | ]], |
| 40 | - ]); |
|
| 40 | + ] ); |
|
| 41 | 41 | $this->execute( $command ); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | { |
| 50 | 50 | $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
| 51 | 51 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
| 52 | - ]); |
|
| 52 | + ] ); |
|
| 53 | 53 | return $links; |
| 54 | 54 | } |
| 55 | 55 | |
@@ -60,19 +60,19 @@ discard block |
||
| 60 | 60 | public function filterDashboardGlanceItems( array $items ) |
| 61 | 61 | { |
| 62 | 62 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 63 | - if( empty( $postCount->publish )) { |
|
| 63 | + if( empty($postCount->publish) ) { |
|
| 64 | 64 | return $items; |
| 65 | 65 | } |
| 66 | 66 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
| 67 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
| 67 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
| 68 | 68 | $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts ) |
| 69 | 69 | ? glsr( Builder::class )->a( $text, [ |
| 70 | 70 | 'class' => 'glsr-review-count', |
| 71 | 71 | 'href' => 'edit.php?post_type='.Application::POST_TYPE, |
| 72 | - ]) |
|
| 72 | + ] ) |
|
| 73 | 73 | : glsr( Builder::class )->span( $text, [ |
| 74 | 74 | 'class' => 'glsr-review-count', |
| 75 | - ]); |
|
| 75 | + ] ); |
|
| 76 | 76 | return $items; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | public function filterTinymcePlugins( array $plugins ) |
| 84 | 84 | { |
| 85 | 85 | if( user_can_richedit() |
| 86 | - && ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ))) { |
|
| 86 | + && (current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) ) { |
|
| 87 | 87 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
| 88 | 88 | } |
| 89 | 89 | return $plugins; |
@@ -95,11 +95,11 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public function registerShortcodeButtons() |
| 97 | 97 | { |
| 98 | - $command = new RegisterShortcodeButtons([ |
|
| 98 | + $command = new RegisterShortcodeButtons( [ |
|
| 99 | 99 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
| 100 | 100 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
| 101 | 101 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
| 102 | - ]); |
|
| 102 | + ] ); |
|
| 103 | 103 | $this->execute( $command ); |
| 104 | 104 | } |
| 105 | 105 | |
@@ -109,10 +109,10 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function renderReviewEditor( WP_Post $post ) |
| 111 | 111 | { |
| 112 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 112 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 113 | 113 | glsr()->render( 'partials/editor/review', [ |
| 114 | 114 | 'post' => $post, |
| 115 | - ]); |
|
| 115 | + ] ); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -121,13 +121,13 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | public function renderReviewNotice( WP_Post $post ) |
| 123 | 123 | { |
| 124 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 125 | - glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' )); |
|
| 124 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 125 | + glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' ) ); |
|
| 126 | 126 | glsr( Template::class )->render( 'partials/editor/notice', [ |
| 127 | 127 | 'context' => [ |
| 128 | 128 | 'notices' => glsr( Notice::class )->get(), |
| 129 | 129 | ], |
| 130 | - ]); |
|
| 130 | + ] ); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -141,10 +141,10 @@ discard block |
||
| 141 | 141 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
| 142 | 142 | $shortcodes[$shortcode] = $values; |
| 143 | 143 | } |
| 144 | - if( empty( $shortcodes ))return; |
|
| 144 | + if( empty($shortcodes) )return; |
|
| 145 | 145 | glsr()->render( 'partials/editor/tinymce', [ |
| 146 | 146 | 'shortcodes' => $shortcodes, |
| 147 | - ]); |
|
| 147 | + ] ); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | public function routerClearConsole() |
| 154 | 154 | { |
| 155 | 155 | glsr( Console::class )->clear(); |
| 156 | - glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' )); |
|
| 156 | + glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) ); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function routerFetchConsole() |
| 163 | 163 | { |
| 164 | - glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' )); |
|
| 164 | + glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) ); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | /** |
@@ -170,19 +170,19 @@ discard block |
||
| 170 | 170 | public function routerCountReviews() |
| 171 | 171 | { |
| 172 | 172 | $countManager = glsr( CountsManager::class ); |
| 173 | - $terms = get_terms([ |
|
| 173 | + $terms = get_terms( [ |
|
| 174 | 174 | 'hide_empty' => true, |
| 175 | 175 | 'taxonomy' => Application::TAXONOMY, |
| 176 | - ]); |
|
| 176 | + ] ); |
|
| 177 | 177 | foreach( $terms as $term ) { |
| 178 | - $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id )); |
|
| 178 | + $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id ) ); |
|
| 179 | 179 | } |
| 180 | 180 | $postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' ); |
| 181 | 181 | foreach( $postIds as $postId ) { |
| 182 | - $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId )); |
|
| 182 | + $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) ); |
|
| 183 | 183 | } |
| 184 | 184 | $countManager->setCounts( $countManager->buildCounts() ); |
| 185 | - glsr( Notice::class )->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
| 185 | + glsr( Notice::class )->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -216,17 +216,17 @@ discard block |
||
| 216 | 216 | { |
| 217 | 217 | $file = $_FILES['import-file']; |
| 218 | 218 | if( $file['error'] !== UPLOAD_ERR_OK ) { |
| 219 | - return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] )); |
|
| 219 | + return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) ); |
|
| 220 | 220 | } |
| 221 | - if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) { |
|
| 222 | - return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' )); |
|
| 221 | + if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) { |
|
| 222 | + return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) ); |
|
| 223 | 223 | } |
| 224 | 224 | $settings = json_decode( file_get_contents( $file['tmp_name'] ), true ); |
| 225 | - if( empty( $settings )) { |
|
| 226 | - return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' )); |
|
| 225 | + if( empty($settings) ) { |
|
| 226 | + return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) ); |
|
| 227 | 227 | } |
| 228 | - glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings )); |
|
| 229 | - glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' )); |
|
| 228 | + glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) ); |
|
| 229 | + glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) ); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ), |
| 245 | 245 | UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ), |
| 246 | 246 | ]; |
| 247 | - return !isset( $errors[$errorCode] ) |
|
| 247 | + return !isset($errors[$errorCode]) |
|
| 248 | 248 | ? __( 'Unknown upload error.', 'site-reviews' ) |
| 249 | 249 | : $errors[$errorCode]; |
| 250 | 250 | } |
@@ -109,7 +109,9 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function renderReviewEditor( WP_Post $post ) |
| 111 | 111 | { |
| 112 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 112 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) { |
|
| 113 | + return; |
|
| 114 | + } |
|
| 113 | 115 | glsr()->render( 'partials/editor/review', [ |
| 114 | 116 | 'post' => $post, |
| 115 | 117 | ]); |
@@ -121,7 +123,9 @@ discard block |
||
| 121 | 123 | */ |
| 122 | 124 | public function renderReviewNotice( WP_Post $post ) |
| 123 | 125 | { |
| 124 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 126 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) { |
|
| 127 | + return; |
|
| 128 | + } |
|
| 125 | 129 | glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' )); |
| 126 | 130 | glsr( Template::class )->render( 'partials/editor/notice', [ |
| 127 | 131 | 'context' => [ |
@@ -136,12 +140,16 @@ discard block |
||
| 136 | 140 | */ |
| 137 | 141 | public function renderTinymceButton() |
| 138 | 142 | { |
| 139 | - if( glsr_current_screen()->base != 'post' )return; |
|
| 143 | + if( glsr_current_screen()->base != 'post' ) { |
|
| 144 | + return; |
|
| 145 | + } |
|
| 140 | 146 | $shortcodes = []; |
| 141 | 147 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
| 142 | 148 | $shortcodes[$shortcode] = $values; |
| 143 | 149 | } |
| 144 | - if( empty( $shortcodes ))return; |
|
| 150 | + if( empty( $shortcodes )) { |
|
| 151 | + return; |
|
| 152 | + } |
|
| 145 | 153 | glsr()->render( 'partials/editor/tinymce', [ |
| 146 | 154 | 'shortcodes' => $shortcodes, |
| 147 | 155 | ]); |
@@ -35,12 +35,12 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function renderTaxonomyFilter() |
| 37 | 37 | { |
| 38 | - if( !is_object_in_taxonomy( get_current_screen()->post_type, Application::TAXONOMY ))return; |
|
| 38 | + if( !is_object_in_taxonomy( get_current_screen()->post_type, Application::TAXONOMY ) )return; |
|
| 39 | 39 | echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [ |
| 40 | 40 | 'class' => 'screen-reader-text', |
| 41 | 41 | 'for' => Application::TAXONOMY, |
| 42 | - ]); |
|
| 43 | - wp_dropdown_categories([ |
|
| 42 | + ] ); |
|
| 43 | + wp_dropdown_categories( [ |
|
| 44 | 44 | 'depth' => 3, |
| 45 | 45 | 'hide_empty' => true, |
| 46 | 46 | 'hide_if_empty' => true, |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | 'show_option_all' => $this->getShowOptionAll(), |
| 53 | 53 | 'taxonomy' => Application::TAXONOMY, |
| 54 | 54 | 'value_field' => 'slug', |
| 55 | - ]); |
|
| 55 | + ] ); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | protected function getSelected() |
| 62 | 62 | { |
| 63 | 63 | global $wp_query; |
| 64 | - return isset( $wp_query->query[Application::TAXONOMY] ) |
|
| 64 | + return isset($wp_query->query[Application::TAXONOMY]) |
|
| 65 | 65 | ? $wp_query->query[Application::TAXONOMY] |
| 66 | 66 | : ''; |
| 67 | 67 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | { |
| 74 | 74 | $taxonomy = get_taxonomy( Application::TAXONOMY ); |
| 75 | 75 | return $taxonomy |
| 76 | - ? ucfirst( strtolower( $taxonomy->labels->all_items )) |
|
| 76 | + ? ucfirst( strtolower( $taxonomy->labels->all_items ) ) |
|
| 77 | 77 | : ''; |
| 78 | 78 | } |
| 79 | 79 | } |
@@ -35,7 +35,9 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | public function renderTaxonomyFilter() |
| 37 | 37 | { |
| 38 | - if( !is_object_in_taxonomy( get_current_screen()->post_type, Application::TAXONOMY ))return; |
|
| 38 | + if( !is_object_in_taxonomy( get_current_screen()->post_type, Application::TAXONOMY )) { |
|
| 39 | + return; |
|
| 40 | + } |
|
| 39 | 41 | echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [ |
| 40 | 42 | 'class' => 'screen-reader-text', |
| 41 | 43 | 'for' => Application::TAXONOMY, |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $translations = $this->getTranslations(); |
| 32 | 32 | $entries = $this->filter( $translations, $this->entries() )->results(); |
| 33 | - array_walk( $translations, function( &$entry ) use( $entries ) { |
|
| 33 | + array_walk( $translations, function( &$entry ) use($entries) { |
|
| 34 | 34 | $entry['desc'] = array_key_exists( $entry['id'], $entries ) |
| 35 | 35 | ? $this->getEntryString( $entries[$entry['id']], 'msgctxt' ) |
| 36 | 36 | : ''; |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function entries() |
| 45 | 45 | { |
| 46 | - if( !isset( $this->entries )) { |
|
| 46 | + if( !isset($this->entries) ) { |
|
| 47 | 47 | try { |
| 48 | 48 | $potFile = glsr()->path( glsr()->languages.'/'.Application::ID.'.pot' ); |
| 49 | 49 | $entries = $this->normalize( Parser::parseFile( $potFile )->getEntries() ); |
@@ -76,13 +76,13 @@ discard block |
||
| 76 | 76 | */ |
| 77 | 77 | public function filter( $filterWith = null, $entries = null, $intersect = true ) |
| 78 | 78 | { |
| 79 | - if( !is_array( $entries )) { |
|
| 79 | + if( !is_array( $entries ) ) { |
|
| 80 | 80 | $entries = $this->results; |
| 81 | 81 | } |
| 82 | - if( !is_array( $filterWith )) { |
|
| 82 | + if( !is_array( $filterWith ) ) { |
|
| 83 | 83 | $filterWith = $this->getTranslations(); |
| 84 | 84 | } |
| 85 | - $keys = array_flip( array_column( $filterWith, 'id' )); |
|
| 85 | + $keys = array_flip( array_column( $filterWith, 'id' ) ); |
|
| 86 | 86 | $this->results = $intersect |
| 87 | 87 | ? array_intersect_key( $entries, $keys ) |
| 88 | 88 | : array_diff_key( $entries, $keys ); |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | { |
| 100 | 100 | return $this->translate( $translation, $domain, [ |
| 101 | 101 | 'single' => $text, |
| 102 | - ]); |
|
| 102 | + ] ); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | /** |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | return $this->translate( $translation, $domain, [ |
| 115 | 115 | 'context' => $context, |
| 116 | 116 | 'single' => $text, |
| 117 | - ]); |
|
| 117 | + ] ); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | 'number' => $number, |
| 132 | 132 | 'plural' => $plural, |
| 133 | 133 | 'single' => $single, |
| 134 | - ]); |
|
| 134 | + ] ); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | 'number' => $number, |
| 151 | 151 | 'plural' => $plural, |
| 152 | 152 | 'single' => $single, |
| 153 | - ]); |
|
| 153 | + ] ); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | /** |
@@ -160,13 +160,13 @@ discard block |
||
| 160 | 160 | public function render( $template, array $entry ) |
| 161 | 161 | { |
| 162 | 162 | $data = array_combine( |
| 163 | - array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry )), |
|
| 163 | + array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry ) ), |
|
| 164 | 164 | $entry |
| 165 | 165 | ); |
| 166 | 166 | ob_start(); |
| 167 | 167 | glsr( Template::class )->render( 'partials/translations/'.$template, [ |
| 168 | 168 | 'context' => $data, |
| 169 | - ]); |
|
| 169 | + ] ); |
|
| 170 | 170 | return ob_get_clean(); |
| 171 | 171 | } |
| 172 | 172 | |
@@ -199,13 +199,13 @@ discard block |
||
| 199 | 199 | 'p1' => $this->getEntryString( $entry, 'msgid_plural' ), |
| 200 | 200 | 's1' => $this->getEntryString( $entry, 'msgid' ), |
| 201 | 201 | ]; |
| 202 | - $text = !empty( $data['p1'] ) |
|
| 202 | + $text = !empty($data['p1']) |
|
| 203 | 203 | ? sprintf( '%s | %s', $data['s1'], $data['p1'] ) |
| 204 | 204 | : $data['s1']; |
| 205 | 205 | $rendered .= $this->render( 'result', [ |
| 206 | 206 | 'entry' => wp_json_encode( $data ), |
| 207 | 207 | 'text' => wp_strip_all_tags( $text ), |
| 208 | - ]); |
|
| 208 | + ] ); |
|
| 209 | 209 | } |
| 210 | 210 | if( $resetAfterRender ) { |
| 211 | 211 | $this->reset(); |
@@ -238,12 +238,12 @@ discard block |
||
| 238 | 238 | public function search( $needle = '' ) |
| 239 | 239 | { |
| 240 | 240 | $this->reset(); |
| 241 | - $needle = trim( strtolower( $needle )); |
|
| 241 | + $needle = trim( strtolower( $needle ) ); |
|
| 242 | 242 | foreach( $this->entries() as $key => $entry ) { |
| 243 | - $single = strtolower( $this->getEntryString( $entry, 'msgid' )); |
|
| 244 | - $plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' )); |
|
| 243 | + $single = strtolower( $this->getEntryString( $entry, 'msgid' ) ); |
|
| 244 | + $plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ) ); |
|
| 245 | 245 | if( strlen( $needle ) < static::SEARCH_THRESHOLD ) { |
| 246 | - if( in_array( $needle, [$single, $plural] )) { |
|
| 246 | + if( in_array( $needle, [$single, $plural] ) ) { |
|
| 247 | 247 | $this->results[$key] = $entry; |
| 248 | 248 | } |
| 249 | 249 | } |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | $args = $this->normalizeTranslationArgs( $args ); |
| 268 | 268 | $strings = $this->getTranslationStrings( $args['single'], $args['plural'] ); |
| 269 | - if( empty( $strings )) { |
|
| 269 | + if( empty($strings) ) { |
|
| 270 | 270 | return $original; |
| 271 | 271 | } |
| 272 | 272 | $string = current( $strings ); |
@@ -281,8 +281,8 @@ discard block |
||
| 281 | 281 | */ |
| 282 | 282 | protected function getEntryString( array $entry, $key ) |
| 283 | 283 | { |
| 284 | - return isset( $entry[$key] ) |
|
| 285 | - ? implode( '', (array) $entry[$key] ) |
|
| 284 | + return isset($entry[$key]) |
|
| 285 | + ? implode( '', (array)$entry[$key] ) |
|
| 286 | 286 | : ''; |
| 287 | 287 | } |
| 288 | 288 | |
@@ -293,10 +293,10 @@ discard block |
||
| 293 | 293 | protected function getTranslations() |
| 294 | 294 | { |
| 295 | 295 | static $translations; |
| 296 | - if( empty( $translations )) { |
|
| 296 | + if( empty($translations) ) { |
|
| 297 | 297 | $settings = glsr( OptionManager::class )->get( 'settings' ); |
| 298 | - $translations = isset( $settings['strings'] ) |
|
| 299 | - ? $this->normalizeSettings( (array) $settings['strings'] ) |
|
| 298 | + $translations = isset($settings['strings']) |
|
| 299 | + ? $this->normalizeSettings( (array)$settings['strings'] ) |
|
| 300 | 300 | : []; |
| 301 | 301 | } |
| 302 | 302 | return $translations; |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | */ |
| 310 | 310 | protected function getTranslationStrings( $single, $plural ) |
| 311 | 311 | { |
| 312 | - return array_filter( $this->getTranslations(), function( $string ) use( $single, $plural ) { |
|
| 312 | + return array_filter( $this->getTranslations(), function( $string ) use($single, $plural) { |
|
| 313 | 313 | return $string['s1'] == html_entity_decode( $single, ENT_COMPAT, 'UTF-8' ) |
| 314 | 314 | && $string['p1'] == html_entity_decode( $plural, ENT_COMPAT, 'UTF-8' ); |
| 315 | 315 | }); |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | $keys = [ |
| 324 | 324 | 'msgctxt', 'msgid', 'msgid_plural', 'msgstr', 'msgstr[0]', 'msgstr[1]', |
| 325 | 325 | ]; |
| 326 | - array_walk( $entries, function( &$entry ) use( $keys ) { |
|
| 326 | + array_walk( $entries, function( &$entry ) use($keys) { |
|
| 327 | 327 | foreach( $keys as $key ) { |
| 328 | 328 | $entry = $this->normalizeEntryString( $entry, $key ); |
| 329 | 329 | } |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | */ |
| 338 | 338 | protected function normalizeEntryString( array $entry, $key ) |
| 339 | 339 | { |
| 340 | - if( isset( $entry[$key] )) { |
|
| 340 | + if( isset($entry[$key]) ) { |
|
| 341 | 341 | $entry[$key] = $this->getEntryString( $entry, $key ); |
| 342 | 342 | } |
| 343 | 343 | return $entry; |
@@ -351,11 +351,11 @@ discard block |
||
| 351 | 351 | $defaultString = array_fill_keys( ['id', 's1', 's2', 'p1', 'p2'], '' ); |
| 352 | 352 | $strings = array_filter( $strings, 'is_array' ); |
| 353 | 353 | foreach( $strings as &$string ) { |
| 354 | - $string['type'] = isset( $string['p1'] ) ? 'plural' : 'single'; |
|
| 354 | + $string['type'] = isset($string['p1']) ? 'plural' : 'single'; |
|
| 355 | 355 | $string = wp_parse_args( $string, $defaultString ); |
| 356 | 356 | } |
| 357 | 357 | return array_filter( $strings, function( $string ) { |
| 358 | - return !empty( $string['id'] ); |
|
| 358 | + return !empty($string['id']); |
|
| 359 | 359 | }); |
| 360 | 360 | } |
| 361 | 361 | |
@@ -379,10 +379,10 @@ discard block |
||
| 379 | 379 | */ |
| 380 | 380 | protected function translatePlural( $domain, array $string, array $args ) |
| 381 | 381 | { |
| 382 | - if( !empty( $string['s2'] )) { |
|
| 382 | + if( !empty($string['s2']) ) { |
|
| 383 | 383 | $args['single'] = $string['s2']; |
| 384 | 384 | } |
| 385 | - if( !empty( $string['p2'] )) { |
|
| 385 | + if( !empty($string['p2']) ) { |
|
| 386 | 386 | $args['plural'] = $string['p2']; |
| 387 | 387 | } |
| 388 | 388 | return get_translations_for_domain( $domain )->translate_plural( |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | */ |
| 400 | 400 | protected function translateSingle( $domain, array $string, array $args ) |
| 401 | 401 | { |
| 402 | - if( !empty( $string['s2'] )) { |
|
| 402 | + if( !empty($string['s2']) ) { |
|
| 403 | 403 | $args['single'] = $string['s2']; |
| 404 | 404 | } |
| 405 | 405 | return get_translations_for_domain( $domain )->translate( |