@@ -34,15 +34,15 @@ discard block |
||
| 34 | 34 | public function build( array $args = [] ) |
| 35 | 35 | { |
| 36 | 36 | $this->args = $args; |
| 37 | - $counts = glsr( CountsManager::class )->get([ |
|
| 37 | + $counts = glsr( CountsManager::class )->get( [ |
|
| 38 | 38 | 'post_ids' => glsr( Helper::class )->convertStringToArray( $args['assigned_to'] ), |
| 39 | 39 | 'term_ids' => glsr( ReviewManager::class )->normalizeTermIds( $args['category'] ), |
| 40 | 40 | 'type' => $args['type'], |
| 41 | - ]); |
|
| 41 | + ] ); |
|
| 42 | 42 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
| 43 | 43 | 'min' => $args['rating'], |
| 44 | - ]); |
|
| 45 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
| 44 | + ] ); |
|
| 45 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return; |
|
| 46 | 46 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
| 47 | 47 | $this->generateSchema(); |
| 48 | 48 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | 'stars' => $this->buildStars(), |
| 56 | 56 | 'text' => $this->buildText(), |
| 57 | 57 | ], |
| 58 | - ]); |
|
| 58 | + ] ); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -63,9 +63,9 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | protected function buildPercentage() |
| 65 | 65 | { |
| 66 | - if( $this->isHidden( 'bars' ))return; |
|
| 67 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
|
| 68 | - $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
|
| 66 | + if( $this->isHidden( 'bars' ) )return; |
|
| 67 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) ); |
|
| 68 | + $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use($percentages) { |
|
| 69 | 69 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
| 70 | 70 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
| 71 | 71 | $count = apply_filters( 'site-reviews/summary/counts', |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | $percent = $this->buildPercentageCount( $count ); |
| 76 | 76 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
| 77 | 77 | 'class' => 'glsr-bar', |
| 78 | - ]); |
|
| 78 | + ] ); |
|
| 79 | 79 | }); |
| 80 | 80 | return $this->wrap( 'percentage', $bars ); |
| 81 | 81 | } |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | protected function buildPercentageBackground( $percent ) |
| 88 | 88 | { |
| 89 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
| 89 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
| 90 | 90 | 'class' => 'glsr-bar-background-percent', |
| 91 | 91 | 'style' => 'width:'.$percent, |
| 92 | - ]); |
|
| 92 | + ] ); |
|
| 93 | 93 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
| 94 | 94 | } |
| 95 | 95 | |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | protected function buildRating() |
| 118 | 118 | { |
| 119 | - if( $this->isHidden( 'rating' ))return; |
|
| 119 | + if( $this->isHidden( 'rating' ) )return; |
|
| 120 | 120 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
| 121 | 121 | } |
| 122 | 122 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | protected function buildStars() |
| 127 | 127 | { |
| 128 | - if( $this->isHidden( 'stars' ))return; |
|
| 128 | + if( $this->isHidden( 'stars' ) )return; |
|
| 129 | 129 | $stars = glsr_star_rating( $this->averageRating ); |
| 130 | 130 | return $this->wrap( 'stars', $stars ); |
| 131 | 131 | } |
@@ -135,9 +135,9 @@ discard block |
||
| 135 | 135 | */ |
| 136 | 136 | protected function buildText() |
| 137 | 137 | { |
| 138 | - if( $this->isHidden( 'summary' ))return; |
|
| 139 | - $count = intval( array_sum( $this->ratingCounts )); |
|
| 140 | - if( empty( $this->args['text'] )) { |
|
| 138 | + if( $this->isHidden( 'summary' ) )return; |
|
| 139 | + $count = intval( array_sum( $this->ratingCounts ) ); |
|
| 140 | + if( empty($this->args['text']) ) { |
|
| 141 | 141 | // @todo document this change |
| 142 | 142 | $this->args['text'] = _nx( |
| 143 | 143 | '{rating} out of {max} stars (based on {num} review)', |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | ); |
| 149 | 149 | } |
| 150 | 150 | $summary = str_replace( |
| 151 | - ['{rating}','{max}', '{num}'], |
|
| 151 | + ['{rating}', '{max}', '{num}'], |
|
| 152 | 152 | [$this->averageRating, Rating::MAX_RATING, $count], |
| 153 | 153 | $this->args['text'] |
| 154 | 154 | ); |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | */ |
| 161 | 161 | protected function generateSchema() |
| 162 | 162 | { |
| 163 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 163 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 164 | 164 | glsr( Schema::class )->store( |
| 165 | 165 | glsr( Schema::class )->buildSummary( $this->args ) |
| 166 | 166 | ); |
@@ -192,6 +192,6 @@ discard block |
||
| 192 | 192 | { |
| 193 | 193 | return glsr( Builder::class )->div( $value, [ |
| 194 | 194 | 'class' => 'glsr-summary-'.$key, |
| 195 | - ]); |
|
| 195 | + ] ); |
|
| 196 | 196 | } |
| 197 | 197 | } |
@@ -42,7 +42,9 @@ discard block |
||
| 42 | 42 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
| 43 | 43 | 'min' => $args['rating'], |
| 44 | 44 | ]); |
| 45 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
| 45 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' )) { |
|
| 46 | + return; |
|
| 47 | + } |
|
| 46 | 48 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
| 47 | 49 | $this->generateSchema(); |
| 48 | 50 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -63,7 +65,9 @@ discard block |
||
| 63 | 65 | */ |
| 64 | 66 | protected function buildPercentage() |
| 65 | 67 | { |
| 66 | - if( $this->isHidden( 'bars' ))return; |
|
| 68 | + if( $this->isHidden( 'bars' )) { |
|
| 69 | + return; |
|
| 70 | + } |
|
| 67 | 71 | $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
| 68 | 72 | $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
| 69 | 73 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
@@ -116,7 +120,9 @@ discard block |
||
| 116 | 120 | */ |
| 117 | 121 | protected function buildRating() |
| 118 | 122 | { |
| 119 | - if( $this->isHidden( 'rating' ))return; |
|
| 123 | + if( $this->isHidden( 'rating' )) { |
|
| 124 | + return; |
|
| 125 | + } |
|
| 120 | 126 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
| 121 | 127 | } |
| 122 | 128 | |
@@ -125,7 +131,9 @@ discard block |
||
| 125 | 131 | */ |
| 126 | 132 | protected function buildStars() |
| 127 | 133 | { |
| 128 | - if( $this->isHidden( 'stars' ))return; |
|
| 134 | + if( $this->isHidden( 'stars' )) { |
|
| 135 | + return; |
|
| 136 | + } |
|
| 129 | 137 | $stars = glsr_star_rating( $this->averageRating ); |
| 130 | 138 | return $this->wrap( 'stars', $stars ); |
| 131 | 139 | } |
@@ -135,7 +143,9 @@ discard block |
||
| 135 | 143 | */ |
| 136 | 144 | protected function buildText() |
| 137 | 145 | { |
| 138 | - if( $this->isHidden( 'summary' ))return; |
|
| 146 | + if( $this->isHidden( 'summary' )) { |
|
| 147 | + return; |
|
| 148 | + } |
|
| 139 | 149 | $count = intval( array_sum( $this->ratingCounts )); |
| 140 | 150 | if( empty( $this->args['text'] )) { |
| 141 | 151 | // @todo document this change |
@@ -160,7 +170,9 @@ discard block |
||
| 160 | 170 | */ |
| 161 | 171 | protected function generateSchema() |
| 162 | 172 | { |
| 163 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 173 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
| 174 | + return; |
|
| 175 | + } |
|
| 164 | 176 | glsr( Schema::class )->store( |
| 165 | 177 | glsr( Schema::class )->buildSummary( $this->args ) |
| 166 | 178 | ); |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | foreach( $this->reviews as $index => $review ) { |
| 86 | 86 | $renderedReviews[] = glsr( Template::class )->build( 'templates/review', [ |
| 87 | 87 | 'context' => $this->buildReview( $review )->values, |
| 88 | - ]); |
|
| 88 | + ] ); |
|
| 89 | 89 | } |
| 90 | 90 | return new ReviewsHtml( $renderedReviews, $this->reviews->max_num_pages, $this->args ); |
| 91 | 91 | } |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public function generateSchema() |
| 97 | 97 | { |
| 98 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 98 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 99 | 99 | glsr( Schema::class )->store( |
| 100 | 100 | glsr( Schema::class )->build( $this->args ) |
| 101 | 101 | ); |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | public function isHidden( $key, $path = '' ) |
| 110 | 110 | { |
| 111 | - $isOptionEnabled = !empty( $path ) |
|
| 111 | + $isOptionEnabled = !empty($path) |
|
| 112 | 112 | ? $this->isOptionEnabled( $path ) |
| 113 | 113 | : true; |
| 114 | 114 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -121,12 +121,12 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | protected function buildOptionAssignedTo( $key, $value ) |
| 123 | 123 | { |
| 124 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 124 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
| 125 | 125 | $post = glsr( Polylang::class )->getPost( $value ); |
| 126 | - if( !( $post instanceof WP_Post ))return; |
|
| 126 | + if( !($post instanceof WP_Post) )return; |
|
| 127 | 127 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 128 | 128 | 'href' => get_the_permalink( $post->ID ), |
| 129 | - ]); |
|
| 129 | + ] ); |
|
| 130 | 130 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
| 131 | 131 | return '<span>'.$assignedTo.'</span>'; |
| 132 | 132 | } |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | protected function buildOptionAuthor( $key, $value ) |
| 140 | 140 | { |
| 141 | - if( $this->isHidden( $key ))return; |
|
| 141 | + if( $this->isHidden( $key ) )return; |
|
| 142 | 142 | return '<span>'.$value.'</span>'; |
| 143 | 143 | } |
| 144 | 144 | |
@@ -149,14 +149,14 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | protected function buildOptionAvatar( $key, $value ) |
| 151 | 151 | { |
| 152 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 152 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
| 153 | 153 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 154 | - return glsr( Builder::class )->img([ |
|
| 154 | + return glsr( Builder::class )->img( [ |
|
| 155 | 155 | 'height' => $size, |
| 156 | 156 | 'src' => $this->generateAvatar( $value ), |
| 157 | 157 | 'style' => sprintf( 'width:%1$spx; height:%1$spx;', $size ), |
| 158 | 158 | 'width' => $size, |
| 159 | - ]); |
|
| 159 | + ] ); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | protected function buildOptionContent( $key, $value ) |
| 168 | 168 | { |
| 169 | 169 | $text = $this->normalizeText( $value ); |
| 170 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 170 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
| 171 | 171 | return '<p>'.$text.'</p>'; |
| 172 | 172 | } |
| 173 | 173 | |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | */ |
| 179 | 179 | protected function buildOptionDate( $key, $value ) |
| 180 | 180 | { |
| 181 | - if( $this->isHidden( $key ))return; |
|
| 181 | + if( $this->isHidden( $key ) )return; |
|
| 182 | 182 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 183 | 183 | if( $dateFormat == 'relative' ) { |
| 184 | 184 | $date = glsr( Date::class )->relative( $value ); |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | $format = $dateFormat == 'custom' |
| 188 | 188 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
| 189 | 189 | : (string)get_option( 'date_format' ); |
| 190 | - $date = date_i18n( $format, strtotime( $value )); |
|
| 190 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
| 191 | 191 | } |
| 192 | 192 | return '<span>'.$date.'</span>'; |
| 193 | 193 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | protected function buildOptionRating( $key, $value ) |
| 201 | 201 | { |
| 202 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 202 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 203 | 203 | return glsr_star_rating( $value ); |
| 204 | 204 | } |
| 205 | 205 | |
@@ -210,8 +210,8 @@ discard block |
||
| 210 | 210 | */ |
| 211 | 211 | protected function buildOptionResponse( $key, $value ) |
| 212 | 212 | { |
| 213 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 214 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
| 213 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 214 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
| 215 | 215 | $text = $this->normalizeText( $value ); |
| 216 | 216 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
| 217 | 217 | $response = glsr( Builder::class )->div( $text, ['class' => 'glsr-review-response-inner'] ); |
@@ -226,8 +226,8 @@ discard block |
||
| 226 | 226 | */ |
| 227 | 227 | protected function buildOptionTitle( $key, $value ) |
| 228 | 228 | { |
| 229 | - if( $this->isHidden( $key ))return; |
|
| 230 | - if( empty( $value )) { |
|
| 229 | + if( $this->isHidden( $key ) )return; |
|
| 230 | + if( empty($value) ) { |
|
| 231 | 231 | $value = __( 'No Title', 'site-reviews' ); |
| 232 | 232 | } |
| 233 | 233 | return '<h3>'.$value.'</h3>'; |
@@ -243,10 +243,10 @@ discard block |
||
| 243 | 243 | return $avatarUrl; |
| 244 | 244 | } |
| 245 | 245 | $authorIdOrEmail = get_the_author_meta( 'ID', $this->current->user_id ); |
| 246 | - if( empty( $authorIdOrEmail )) { |
|
| 246 | + if( empty($authorIdOrEmail) ) { |
|
| 247 | 247 | $authorIdOrEmail = $this->current->email; |
| 248 | 248 | } |
| 249 | - if( $newAvatar = get_avatar_url( $authorIdOrEmail )) { |
|
| 249 | + if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) { |
|
| 250 | 250 | return $newAvatar; |
| 251 | 251 | } |
| 252 | 252 | return $avatarUrl; |
@@ -258,18 +258,18 @@ discard block |
||
| 258 | 258 | */ |
| 259 | 259 | protected function getExcerpt( $text ) |
| 260 | 260 | { |
| 261 | - $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 )); |
|
| 261 | + $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ) ); |
|
| 262 | 262 | $split = extension_loaded( 'intl' ) |
| 263 | 263 | ? $this->getExcerptIntlSplit( $text, $limit ) |
| 264 | 264 | : $this->getExcerptSplit( $text, $limit ); |
| 265 | 265 | $hiddenText = substr( $text, $split ); |
| 266 | - if( !empty( $hiddenText )) { |
|
| 266 | + if( !empty($hiddenText) ) { |
|
| 267 | 267 | $showMore = glsr( Builder::class )->span( $hiddenText, [ |
| 268 | 268 | 'class' => 'glsr-hidden glsr-hidden-text', |
| 269 | 269 | 'data-show-less' => __( 'Show less', 'site-reviews' ), |
| 270 | 270 | 'data-show-more' => __( 'Show more', 'site-reviews' ), |
| 271 | - ]); |
|
| 272 | - $text = ltrim( substr( $text, 0, $split )).$showMore; |
|
| 271 | + ] ); |
|
| 272 | + $text = ltrim( substr( $text, 0, $split ) ).$showMore; |
|
| 273 | 273 | } |
| 274 | 274 | return nl2br( $text ); |
| 275 | 275 | } |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | $words = IntlRuleBasedBreakIterator::createWordInstance( '' ); |
| 285 | 285 | $words->setText( $text ); |
| 286 | 286 | $count = 0; |
| 287 | - foreach( $words as $offset ){ |
|
| 287 | + foreach( $words as $offset ) { |
|
| 288 | 288 | if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
| 289 | 289 | $count++; |
| 290 | 290 | if( $count != $limit )continue; |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | protected function getExcerptSplit( $text, $limit ) |
| 302 | 302 | { |
| 303 | 303 | if( str_word_count( $text, 0 ) > $limit ) { |
| 304 | - $words = array_keys( str_word_count( $text, 2 )); |
|
| 304 | + $words = array_keys( str_word_count( $text, 2 ) ); |
|
| 305 | 305 | return $words[$limit]; |
| 306 | 306 | } |
| 307 | 307 | return strlen( $text ); |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | */ |
| 315 | 315 | protected function getOption( $path, $fallback = '' ) |
| 316 | 316 | { |
| 317 | - if( array_key_exists( $path, $this->options )) { |
|
| 317 | + if( array_key_exists( $path, $this->options ) ) { |
|
| 318 | 318 | return $this->options[$path]; |
| 319 | 319 | } |
| 320 | 320 | return $fallback; |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | */ |
| 328 | 328 | protected function isHiddenOrEmpty( $key, $value ) |
| 329 | 329 | { |
| 330 | - return $this->isHidden( $key ) || empty( $value ); |
|
| 330 | + return $this->isHidden( $key ) || empty($value); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | /** |
@@ -346,10 +346,10 @@ discard block |
||
| 346 | 346 | protected function normalizeText( $text ) |
| 347 | 347 | { |
| 348 | 348 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
| 349 | - $text = convert_smilies( strip_shortcodes( $text )); |
|
| 349 | + $text = convert_smilies( strip_shortcodes( $text ) ); |
|
| 350 | 350 | $text = str_replace( ']]>', ']]>', $text ); |
| 351 | 351 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
| 352 | - if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) { |
|
| 352 | + if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) { |
|
| 353 | 353 | $text = $this->getExcerpt( $text ); |
| 354 | 354 | } |
| 355 | 355 | return wptexturize( $text ); |
@@ -361,12 +361,12 @@ discard block |
||
| 361 | 361 | protected function wrap( array &$renderedFields, Review $review ) |
| 362 | 362 | { |
| 363 | 363 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
| 364 | - array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
|
| 364 | + array_walk( $renderedFields, function( &$value, $key ) use($review) { |
|
| 365 | 365 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
| 366 | - if( empty( $value ))return; |
|
| 366 | + if( empty($value) )return; |
|
| 367 | 367 | $value = glsr( Builder::class )->div( $value, [ |
| 368 | 368 | 'class' => 'glsr-review-'.$key, |
| 369 | - ]); |
|
| 369 | + ] ); |
|
| 370 | 370 | }); |
| 371 | 371 | } |
| 372 | 372 | } |
@@ -67,7 +67,9 @@ discard block |
||
| 67 | 67 | $field = method_exists( $this, $method ) |
| 68 | 68 | ? $this->$method( $key, $value ) |
| 69 | 69 | : apply_filters( 'site-reviews/review/build/'.$key, false, $value, $this, $review ); |
| 70 | - if( $field === false )continue; |
|
| 70 | + if( $field === false ) { |
|
| 71 | + continue; |
|
| 72 | + } |
|
| 71 | 73 | $renderedFields[$key] = $field; |
| 72 | 74 | } |
| 73 | 75 | $this->wrap( $renderedFields, $review ); |
@@ -95,7 +97,9 @@ discard block |
||
| 95 | 97 | */ |
| 96 | 98 | public function generateSchema() |
| 97 | 99 | { |
| 98 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 100 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
| 101 | + return; |
|
| 102 | + } |
|
| 99 | 103 | glsr( Schema::class )->store( |
| 100 | 104 | glsr( Schema::class )->build( $this->args ) |
| 101 | 105 | ); |
@@ -121,9 +125,13 @@ discard block |
||
| 121 | 125 | */ |
| 122 | 126 | protected function buildOptionAssignedTo( $key, $value ) |
| 123 | 127 | { |
| 124 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 128 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
| 129 | + return; |
|
| 130 | + } |
|
| 125 | 131 | $post = glsr( Polylang::class )->getPost( $value ); |
| 126 | - if( !( $post instanceof WP_Post ))return; |
|
| 132 | + if( !( $post instanceof WP_Post )) { |
|
| 133 | + return; |
|
| 134 | + } |
|
| 127 | 135 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 128 | 136 | 'href' => get_the_permalink( $post->ID ), |
| 129 | 137 | ]); |
@@ -138,7 +146,9 @@ discard block |
||
| 138 | 146 | */ |
| 139 | 147 | protected function buildOptionAuthor( $key, $value ) |
| 140 | 148 | { |
| 141 | - if( $this->isHidden( $key ))return; |
|
| 149 | + if( $this->isHidden( $key )) { |
|
| 150 | + return; |
|
| 151 | + } |
|
| 142 | 152 | return '<span>'.$value.'</span>'; |
| 143 | 153 | } |
| 144 | 154 | |
@@ -149,7 +159,9 @@ discard block |
||
| 149 | 159 | */ |
| 150 | 160 | protected function buildOptionAvatar( $key, $value ) |
| 151 | 161 | { |
| 152 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 162 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
| 163 | + return; |
|
| 164 | + } |
|
| 153 | 165 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 154 | 166 | return glsr( Builder::class )->img([ |
| 155 | 167 | 'height' => $size, |
@@ -167,7 +179,9 @@ discard block |
||
| 167 | 179 | protected function buildOptionContent( $key, $value ) |
| 168 | 180 | { |
| 169 | 181 | $text = $this->normalizeText( $value ); |
| 170 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 182 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
| 183 | + return; |
|
| 184 | + } |
|
| 171 | 185 | return '<p>'.$text.'</p>'; |
| 172 | 186 | } |
| 173 | 187 | |
@@ -178,7 +192,9 @@ discard block |
||
| 178 | 192 | */ |
| 179 | 193 | protected function buildOptionDate( $key, $value ) |
| 180 | 194 | { |
| 181 | - if( $this->isHidden( $key ))return; |
|
| 195 | + if( $this->isHidden( $key )) { |
|
| 196 | + return; |
|
| 197 | + } |
|
| 182 | 198 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 183 | 199 | if( $dateFormat == 'relative' ) { |
| 184 | 200 | $date = glsr( Date::class )->relative( $value ); |
@@ -199,7 +215,9 @@ discard block |
||
| 199 | 215 | */ |
| 200 | 216 | protected function buildOptionRating( $key, $value ) |
| 201 | 217 | { |
| 202 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 218 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 219 | + return; |
|
| 220 | + } |
|
| 203 | 221 | return glsr_star_rating( $value ); |
| 204 | 222 | } |
| 205 | 223 | |
@@ -210,7 +228,9 @@ discard block |
||
| 210 | 228 | */ |
| 211 | 229 | protected function buildOptionResponse( $key, $value ) |
| 212 | 230 | { |
| 213 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 231 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 232 | + return; |
|
| 233 | + } |
|
| 214 | 234 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
| 215 | 235 | $text = $this->normalizeText( $value ); |
| 216 | 236 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -226,7 +246,9 @@ discard block |
||
| 226 | 246 | */ |
| 227 | 247 | protected function buildOptionTitle( $key, $value ) |
| 228 | 248 | { |
| 229 | - if( $this->isHidden( $key ))return; |
|
| 249 | + if( $this->isHidden( $key )) { |
|
| 250 | + return; |
|
| 251 | + } |
|
| 230 | 252 | if( empty( $value )) { |
| 231 | 253 | $value = __( 'No Title', 'site-reviews' ); |
| 232 | 254 | } |
@@ -285,9 +307,13 @@ discard block |
||
| 285 | 307 | $words->setText( $text ); |
| 286 | 308 | $count = 0; |
| 287 | 309 | foreach( $words as $offset ){ |
| 288 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
| 310 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
| 311 | + continue; |
|
| 312 | + } |
|
| 289 | 313 | $count++; |
| 290 | - if( $count != $limit )continue; |
|
| 314 | + if( $count != $limit ) { |
|
| 315 | + continue; |
|
| 316 | + } |
|
| 291 | 317 | return $offset; |
| 292 | 318 | } |
| 293 | 319 | return strlen( $text ); |
@@ -363,7 +389,9 @@ discard block |
||
| 363 | 389 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
| 364 | 390 | array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
| 365 | 391 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
| 366 | - if( empty( $value ))return; |
|
| 392 | + if( empty( $value )) { |
|
| 393 | + return; |
|
| 394 | + } |
|
| 367 | 395 | $value = glsr( Builder::class )->div( $value, [ |
| 368 | 396 | 'class' => 'glsr-review-'.$key, |
| 369 | 397 | ]); |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | if( $assignedPost instanceof WP_Post && $assignedPost->post_status == 'publish' ) { |
| 22 | 22 | $column = glsr( Builder::class )->a( get_the_title( $assignedPost->ID ), [ |
| 23 | 23 | 'href' => (string)get_the_permalink( $assignedPost->ID ), |
| 24 | - ]); |
|
| 24 | + ] ); |
|
| 25 | 25 | } |
| 26 | 26 | return $column; |
| 27 | 27 | } |
@@ -35,10 +35,10 @@ discard block |
||
| 35 | 35 | $pinned = get_post_meta( $postId, 'pinned', true ) |
| 36 | 36 | ? 'pinned ' |
| 37 | 37 | : ''; |
| 38 | - return glsr( Builder::class )->i([ |
|
| 38 | + return glsr( Builder::class )->i( [ |
|
| 39 | 39 | 'class' => $pinned.'dashicons dashicons-sticky', |
| 40 | 40 | 'data-id' => $postId, |
| 41 | - ]); |
|
| 41 | + ] ); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function buildColumnReviewer( $postId ) |
| 49 | 49 | { |
| 50 | - return strval( get_post_meta( $postId, 'author', true )); |
|
| 50 | + return strval( get_post_meta( $postId, 'author', true ) ); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function buildColumnRating( $postId ) |
| 59 | 59 | { |
| 60 | - return glsr_star_rating( intval( get_post_meta( $postId, 'rating', true ))); |
|
| 60 | + return glsr_star_rating( intval( get_post_meta( $postId, 'rating', true ) ) ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function renderFilters( $postType ) |
| 80 | 80 | { |
| 81 | 81 | if( $postType !== Application::POST_TYPE )return; |
| 82 | - if( !( $status = filter_input( INPUT_GET, 'post_status' ))) { |
|
| 82 | + if( !($status = filter_input( INPUT_GET, 'post_status' )) ) { |
|
| 83 | 83 | $status = 'publish'; |
| 84 | 84 | } |
| 85 | 85 | $ratings = glsr( Database::class )->getReviewsMeta( 'rating', $status ); |
@@ -108,8 +108,8 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | protected function renderFilterRatings( $ratings ) |
| 110 | 110 | { |
| 111 | - if( empty( $ratings ))return; |
|
| 112 | - $ratings = array_flip( array_reverse( $ratings )); |
|
| 111 | + if( empty($ratings) )return; |
|
| 112 | + $ratings = array_flip( array_reverse( $ratings ) ); |
|
| 113 | 113 | array_walk( $ratings, function( &$value, $key ) { |
| 114 | 114 | $label = _n( '%s star', '%s stars', $key, 'site-reviews' ); |
| 115 | 115 | $value = sprintf( $label, $key ); |
@@ -117,12 +117,12 @@ discard block |
||
| 117 | 117 | echo glsr( Builder::class )->label( __( 'Filter by rating', 'site-reviews' ), [ |
| 118 | 118 | 'class' => 'screen-reader-text', |
| 119 | 119 | 'for' => 'rating', |
| 120 | - ]); |
|
| 121 | - echo glsr( Builder::class )->select([ |
|
| 120 | + ] ); |
|
| 121 | + echo glsr( Builder::class )->select( [ |
|
| 122 | 122 | 'name' => 'rating', |
| 123 | 123 | 'options' => ['' => __( 'All ratings', 'site-reviews' )] + $ratings, |
| 124 | 124 | 'value' => filter_input( INPUT_GET, 'rating' ), |
| 125 | - ]); |
|
| 125 | + ] ); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -135,11 +135,11 @@ discard block |
||
| 135 | 135 | echo glsr( Builder::class )->label( __( 'Filter by type', 'site-reviews' ), [ |
| 136 | 136 | 'class' => 'screen-reader-text', |
| 137 | 137 | 'for' => 'review_type', |
| 138 | - ]); |
|
| 139 | - echo glsr( Builder::class )->select([ |
|
| 138 | + ] ); |
|
| 139 | + echo glsr( Builder::class )->select( [ |
|
| 140 | 140 | 'name' => 'review_type', |
| 141 | 141 | 'options' => ['' => __( 'All types', 'site-reviews' )] + glsr()->reviewTypes, |
| 142 | 142 | 'value' => filter_input( INPUT_GET, 'review_type' ), |
| 143 | - ]); |
|
| 143 | + ] ); |
|
| 144 | 144 | } |
| 145 | 145 | } |
@@ -132,13 +132,13 @@ discard block |
||
| 132 | 132 | */ |
| 133 | 133 | public function renderAssignedToMetabox( WP_Post $post ) |
| 134 | 134 | { |
| 135 | - if( !$this->isReviewPostType( $post ))return; |
|
| 135 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 136 | 136 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
| 137 | 137 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
| 138 | 138 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
| 139 | 139 | 'id' => $assignedTo, |
| 140 | 140 | 'template' => $this->buildAssignedToTemplate( $assignedTo, $post ), |
| 141 | - ]); |
|
| 141 | + ] ); |
|
| 142 | 142 | } |
| 143 | 143 | |
| 144 | 144 | /** |
@@ -147,12 +147,12 @@ discard block |
||
| 147 | 147 | */ |
| 148 | 148 | public function renderDetailsMetaBox( WP_Post $post ) |
| 149 | 149 | { |
| 150 | - if( !$this->isReviewPostType( $post ))return; |
|
| 150 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 151 | 151 | $review = glsr( ReviewManager::class )->single( $post ); |
| 152 | 152 | glsr()->render( 'partials/editor/metabox-details', [ |
| 153 | 153 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
| 154 | 154 | 'metabox' => $this->normalizeDetailsMetaBox( $review ), |
| 155 | - ]); |
|
| 155 | + ] ); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | /** |
@@ -161,14 +161,14 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function renderPinnedInPublishMetaBox() |
| 163 | 163 | { |
| 164 | - if( !$this->isReviewPostType( get_post() ))return; |
|
| 164 | + if( !$this->isReviewPostType( get_post() ) )return; |
|
| 165 | 165 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
| 166 | 166 | 'context' => [ |
| 167 | 167 | 'no' => __( 'No', 'site-reviews' ), |
| 168 | 168 | 'yes' => __( 'Yes', 'site-reviews' ), |
| 169 | 169 | ], |
| 170 | - 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )), |
|
| 171 | - ]); |
|
| 170 | + 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ), |
|
| 171 | + ] ); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -177,11 +177,11 @@ discard block |
||
| 177 | 177 | */ |
| 178 | 178 | public function renderResponseMetaBox( WP_Post $post ) |
| 179 | 179 | { |
| 180 | - if( !$this->isReviewPostType( $post ))return; |
|
| 180 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 181 | 181 | wp_nonce_field( 'response', '_nonce-response', false ); |
| 182 | 182 | glsr()->render( 'partials/editor/metabox-response', [ |
| 183 | 183 | 'response' => get_post_meta( $post->ID, 'response', true ), |
| 184 | - ]); |
|
| 184 | + ] ); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -190,11 +190,11 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | public function renderReviewEditor( WP_Post $post ) |
| 192 | 192 | { |
| 193 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 193 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 194 | 194 | glsr()->render( 'partials/editor/review', [ |
| 195 | 195 | 'post' => $post, |
| 196 | 196 | 'response' => get_post_meta( $post->ID, 'response', true ), |
| 197 | - ]); |
|
| 197 | + ] ); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | /** |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | $screen = glsr_current_screen(); |
| 207 | 207 | if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return; |
| 208 | 208 | add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] ); |
| 209 | - add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
| 209 | + add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | /** |
@@ -215,16 +215,16 @@ discard block |
||
| 215 | 215 | */ |
| 216 | 216 | public function renderReviewNotice( WP_Post $post ) |
| 217 | 217 | { |
| 218 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 218 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 219 | 219 | glsr( Notice::class )->addWarning( sprintf( |
| 220 | 220 | __( '%s reviews are read-only.', 'site-reviews' ), |
| 221 | 221 | glsr( Columns::class )->buildColumnReviewType( $post->ID ) |
| 222 | - )); |
|
| 222 | + ) ); |
|
| 223 | 223 | glsr( Template::class )->render( 'partials/editor/notice', [ |
| 224 | 224 | 'context' => [ |
| 225 | 225 | 'notices' => glsr( Notice::class )->get(), |
| 226 | 226 | ], |
| 227 | - ]); |
|
| 227 | + ] ); |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | /** |
@@ -234,12 +234,12 @@ discard block |
||
| 234 | 234 | */ |
| 235 | 235 | public function renderTaxonomyMetabox( WP_Post $post ) |
| 236 | 236 | { |
| 237 | - if( !$this->isReviewPostType( $post ))return; |
|
| 237 | + if( !$this->isReviewPostType( $post ) )return; |
|
| 238 | 238 | glsr()->render( 'partials/editor/metabox-categories', [ |
| 239 | 239 | 'post' => $post, |
| 240 | 240 | 'tax_name' => Application::TAXONOMY, |
| 241 | 241 | 'taxonomy' => get_taxonomy( Application::TAXONOMY ), |
| 242 | - ]); |
|
| 242 | + ] ); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | public function revertReview() |
| 251 | 251 | { |
| 252 | 252 | if( filter_input( INPUT_GET, 'plugin' ) != Application::ID )return; |
| 253 | - check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() )); |
|
| 253 | + check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) ); |
|
| 254 | 254 | glsr( ReviewManager::class )->revert( $postId ); |
| 255 | 255 | $this->redirect( $postId, 52 ); |
| 256 | 256 | } |
@@ -273,13 +273,13 @@ discard block |
||
| 273 | 273 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
| 274 | 274 | { |
| 275 | 275 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
| 276 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
| 276 | + if( !($assignedPost instanceof WP_Post) )return; |
|
| 277 | 277 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
| 278 | 278 | 'context' => [ |
| 279 | 279 | 'data.url' => (string)get_permalink( $assignedPost ), |
| 280 | 280 | 'data.title' => get_the_title( $assignedPost ), |
| 281 | 281 | ], |
| 282 | - ]); |
|
| 282 | + ] ); |
|
| 283 | 283 | } |
| 284 | 284 | |
| 285 | 285 | /** |
@@ -304,13 +304,13 @@ discard block |
||
| 304 | 304 | 'class' => 'button button-large', |
| 305 | 305 | 'href' => $revertUrl, |
| 306 | 306 | 'id' => 'revert', |
| 307 | - ]); |
|
| 307 | + ] ); |
|
| 308 | 308 | } |
| 309 | 309 | return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [ |
| 310 | 310 | 'class' => 'button button-large', |
| 311 | 311 | 'disabled' => true, |
| 312 | 312 | 'id' => 'revert', |
| 313 | - ]); |
|
| 313 | + ] ); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -323,11 +323,11 @@ discard block |
||
| 323 | 323 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
| 324 | 324 | ? glsr()->reviewTypes[$review->review_type] |
| 325 | 325 | : __( 'Unknown', 'site-reviews' ); |
| 326 | - if( !empty( $review->url )) { |
|
| 326 | + if( !empty($review->url) ) { |
|
| 327 | 327 | $reviewType = glsr( Builder::class )->a( $reviewType, [ |
| 328 | 328 | 'href' => $review->url, |
| 329 | 329 | 'target' => '_blank', |
| 330 | - ]); |
|
| 330 | + ] ); |
|
| 331 | 331 | } |
| 332 | 332 | return $reviewType; |
| 333 | 333 | } |
@@ -356,16 +356,16 @@ discard block |
||
| 356 | 356 | */ |
| 357 | 357 | protected function normalizeDetailsMetaBox( Review $review ) |
| 358 | 358 | { |
| 359 | - $user = empty( $review->user_id ) |
|
| 359 | + $user = empty($review->user_id) |
|
| 360 | 360 | ? __( 'Unregistered user', 'site-reviews' ) |
| 361 | 361 | : glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [ |
| 362 | 362 | 'href' => get_author_posts_url( $review->user_id ), |
| 363 | - ]); |
|
| 364 | - $email = empty( $review->email ) |
|
| 363 | + ] ); |
|
| 364 | + $email = empty($review->email) |
|
| 365 | 365 | ? '—' |
| 366 | 366 | : glsr( Builder::class )->a( $review->email, [ |
| 367 | 367 | 'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ), |
| 368 | - ]); |
|
| 368 | + ] ); |
|
| 369 | 369 | $metabox = [ |
| 370 | 370 | __( 'Rating', 'site-reviews' ) => glsr_star_rating( $review->rating ), |
| 371 | 371 | __( 'Type', 'site-reviews' ) => $this->getReviewType( $review ), |
@@ -376,7 +376,7 @@ discard block |
||
| 376 | 376 | __( 'IP Address', 'site-reviews' ) => $review->ip_address, |
| 377 | 377 | __( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ), |
| 378 | 378 | ]; |
| 379 | - return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review )); |
|
| 379 | + return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) ); |
|
| 380 | 380 | } |
| 381 | 381 | |
| 382 | 382 | /** |
@@ -393,7 +393,7 @@ discard block |
||
| 393 | 393 | $redirectUri = $hasReferer |
| 394 | 394 | ? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer ) |
| 395 | 395 | : get_edit_post_link( $postId ); |
| 396 | - wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri )); |
|
| 396 | + wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) ); |
|
| 397 | 397 | exit; |
| 398 | 398 | } |
| 399 | 399 | } |
@@ -20,8 +20,8 @@ discard block |
||
| 20 | 20 | 'glsr_log', |
| 21 | 21 | 'glsr_star_rating', |
| 22 | 22 | ); |
| 23 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
| 24 | - add_filter( $hook, function() use( $hook, $args ) { |
|
| 23 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook ) )return; |
|
| 24 | + add_filter( $hook, function() use($hook, $args) { |
|
| 25 | 25 | array_shift( $args ); // remove the fallback value |
| 26 | 26 | return call_user_func_array( $hook, $args ); |
| 27 | 27 | }); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | function glsr( $alias = null ) { |
| 34 | 34 | $app = \GeminiLabs\SiteReviews\Application::load(); |
| 35 | - return !empty( $alias ) |
|
| 35 | + return !empty($alias) |
|
| 36 | 36 | ? $app->make( $alias ) |
| 37 | 37 | : $app; |
| 38 | 38 | } |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | $result = array(); |
| 47 | 47 | foreach( $array as $subarray ) { |
| 48 | 48 | $subarray = (array)$subarray; |
| 49 | - if( !isset( $subarray[$column] ))continue; |
|
| 49 | + if( !isset($subarray[$column]) )continue; |
|
| 50 | 50 | $result[] = $subarray[$column]; |
| 51 | 51 | } |
| 52 | 52 | return $result; |
@@ -57,14 +57,14 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | function glsr_calculate_ratings() { |
| 59 | 59 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
| 60 | - glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
| 60 | + glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * @return \GeminiLabs\SiteReviews\Review|false |
| 65 | 65 | */ |
| 66 | 66 | function glsr_create_review( $reviewValues = array() ) { |
| 67 | - if( !is_array( $reviewValues )) { |
|
| 67 | + if( !is_array( $reviewValues ) ) { |
|
| 68 | 68 | $reviewValues = array(); |
| 69 | 69 | } |
| 70 | 70 | $review = new \GeminiLabs\SiteReviews\Commands\CreateReview( $reviewValues ); |
@@ -75,10 +75,10 @@ discard block |
||
| 75 | 75 | * @return \WP_Screen|object |
| 76 | 76 | */ |
| 77 | 77 | function glsr_current_screen() { |
| 78 | - if( function_exists( 'get_current_screen' )) { |
|
| 78 | + if( function_exists( 'get_current_screen' ) ) { |
|
| 79 | 79 | $screen = get_current_screen(); |
| 80 | 80 | } |
| 81 | - return empty( $screen ) |
|
| 81 | + return empty($screen) |
|
| 82 | 82 | ? (object)array_fill_keys( ['base', 'id', 'post_type'], null ) |
| 83 | 83 | : $screen; |
| 84 | 84 | } |
@@ -125,10 +125,10 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | function glsr_get_review( $post_id ) { |
| 127 | 127 | $post = null; |
| 128 | - if( is_numeric( $post_id )) { |
|
| 128 | + if( is_numeric( $post_id ) ) { |
|
| 129 | 129 | $post = get_post( $post_id ); |
| 130 | 130 | } |
| 131 | - if( !( $post instanceof WP_Post )) { |
|
| 131 | + if( !($post instanceof WP_Post) ) { |
|
| 132 | 132 | $post = new WP_Post( (object)[] ); |
| 133 | 133 | } |
| 134 | 134 | return glsr( 'Database\ReviewManager' )->single( $post ); |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | * @return array |
| 139 | 139 | */ |
| 140 | 140 | function glsr_get_reviews( $args = array() ) { |
| 141 | - if( !is_array( $args )) { |
|
| 141 | + if( !is_array( $args ) ) { |
|
| 142 | 142 | $args = []; |
| 143 | 143 | } |
| 144 | 144 | return glsr( 'Database\ReviewManager' )->get( $args ); |
@@ -149,11 +149,11 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | function glsr_log() { |
| 151 | 151 | $args = func_get_args(); |
| 152 | - $context = isset( $args[1] ) |
|
| 152 | + $context = isset($args[1]) |
|
| 153 | 153 | ? $args[1] |
| 154 | 154 | : []; |
| 155 | 155 | $console = glsr( 'Modules\Console' ); |
| 156 | - return !empty( $args ) |
|
| 156 | + return !empty($args) |
|
| 157 | 157 | ? $console->log( 'debug', $args[0], $context ) |
| 158 | 158 | : $console; |
| 159 | 159 | } |
@@ -20,7 +20,9 @@ discard block |
||
| 20 | 20 | 'glsr_log', |
| 21 | 21 | 'glsr_star_rating', |
| 22 | 22 | ); |
| 23 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
| 23 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook )) { |
|
| 24 | + return; |
|
| 25 | + } |
|
| 24 | 26 | add_filter( $hook, function() use( $hook, $args ) { |
| 25 | 27 | array_shift( $args ); // remove the fallback value |
| 26 | 28 | return call_user_func_array( $hook, $args ); |
@@ -30,7 +32,8 @@ discard block |
||
| 30 | 32 | /** |
| 31 | 33 | * @return mixed |
| 32 | 34 | */ |
| 33 | -function glsr( $alias = null ) { |
|
| 35 | +function glsr( $alias = null ) |
|
| 36 | +{ |
|
| 34 | 37 | $app = \GeminiLabs\SiteReviews\Application::load(); |
| 35 | 38 | return !empty( $alias ) |
| 36 | 39 | ? $app->make( $alias ) |
@@ -42,11 +45,14 @@ discard block |
||
| 42 | 45 | * @param $column string |
| 43 | 46 | * @return array |
| 44 | 47 | */ |
| 45 | -function glsr_array_column( array $array, $column ) { |
|
| 48 | +function glsr_array_column( array $array, $column ) |
|
| 49 | +{ |
|
| 46 | 50 | $result = array(); |
| 47 | 51 | foreach( $array as $subarray ) { |
| 48 | 52 | $subarray = (array)$subarray; |
| 49 | - if( !isset( $subarray[$column] ))continue; |
|
| 53 | + if( !isset( $subarray[$column] )) { |
|
| 54 | + continue; |
|
| 55 | + } |
|
| 50 | 56 | $result[] = $subarray[$column]; |
| 51 | 57 | } |
| 52 | 58 | return $result; |
@@ -55,7 +61,8 @@ discard block |
||
| 55 | 61 | /** |
| 56 | 62 | * @return void |
| 57 | 63 | */ |
| 58 | -function glsr_calculate_ratings() { |
|
| 64 | +function glsr_calculate_ratings() |
|
| 65 | +{ |
|
| 59 | 66 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
| 60 | 67 | glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
| 61 | 68 | } |
@@ -63,7 +70,8 @@ discard block |
||
| 63 | 70 | /** |
| 64 | 71 | * @return \GeminiLabs\SiteReviews\Review|false |
| 65 | 72 | */ |
| 66 | -function glsr_create_review( $reviewValues = array() ) { |
|
| 73 | +function glsr_create_review( $reviewValues = array() ) |
|
| 74 | +{ |
|
| 67 | 75 | if( !is_array( $reviewValues )) { |
| 68 | 76 | $reviewValues = array(); |
| 69 | 77 | } |
@@ -74,7 +82,8 @@ discard block |
||
| 74 | 82 | /** |
| 75 | 83 | * @return \WP_Screen|object |
| 76 | 84 | */ |
| 77 | -function glsr_current_screen() { |
|
| 85 | +function glsr_current_screen() |
|
| 86 | +{ |
|
| 78 | 87 | if( function_exists( 'get_current_screen' )) { |
| 79 | 88 | $screen = get_current_screen(); |
| 80 | 89 | } |
@@ -87,7 +96,8 @@ discard block |
||
| 87 | 96 | * @param mixed ...$vars |
| 88 | 97 | * @return void |
| 89 | 98 | */ |
| 90 | -function glsr_debug( ...$vars ) { |
|
| 99 | +function glsr_debug( ...$vars ) |
|
| 100 | +{ |
|
| 91 | 101 | if( count( $vars ) == 1 ) { |
| 92 | 102 | $value = htmlspecialchars( print_r( $vars[0], true ), ENT_QUOTES, 'UTF-8' ); |
| 93 | 103 | printf( '<div class="glsr-debug"><pre>%s</pre></div>', $value ); |
@@ -106,7 +116,8 @@ discard block |
||
| 106 | 116 | * @param mixed $fallback |
| 107 | 117 | * @return string|array |
| 108 | 118 | */ |
| 109 | -function glsr_get_option( $path = '', $fallback = '' ) { |
|
| 119 | +function glsr_get_option( $path = '', $fallback = '' ) |
|
| 120 | +{ |
|
| 110 | 121 | return is_string( $path ) |
| 111 | 122 | ? glsr( 'Database\OptionManager' )->get( 'settings.'.$path, $fallback ) |
| 112 | 123 | : $fallback; |
@@ -115,7 +126,8 @@ discard block |
||
| 115 | 126 | /** |
| 116 | 127 | * @return array |
| 117 | 128 | */ |
| 118 | -function glsr_get_options() { |
|
| 129 | +function glsr_get_options() |
|
| 130 | +{ |
|
| 119 | 131 | return glsr( 'Database\OptionManager' )->get( 'settings' ); |
| 120 | 132 | } |
| 121 | 133 | |
@@ -123,7 +135,8 @@ discard block |
||
| 123 | 135 | * @param int $post_id |
| 124 | 136 | * @return \GeminiLabs\SiteReviews\Review |
| 125 | 137 | */ |
| 126 | -function glsr_get_review( $post_id ) { |
|
| 138 | +function glsr_get_review( $post_id ) |
|
| 139 | +{ |
|
| 127 | 140 | $post = null; |
| 128 | 141 | if( is_numeric( $post_id )) { |
| 129 | 142 | $post = get_post( $post_id ); |
@@ -137,7 +150,8 @@ discard block |
||
| 137 | 150 | /** |
| 138 | 151 | * @return array |
| 139 | 152 | */ |
| 140 | -function glsr_get_reviews( $args = array() ) { |
|
| 153 | +function glsr_get_reviews( $args = array() ) |
|
| 154 | +{ |
|
| 141 | 155 | if( !is_array( $args )) { |
| 142 | 156 | $args = []; |
| 143 | 157 | } |
@@ -147,7 +161,8 @@ discard block |
||
| 147 | 161 | /** |
| 148 | 162 | * @return \GeminiLabs\SiteReviews\Modules\Console |
| 149 | 163 | */ |
| 150 | -function glsr_log() { |
|
| 164 | +function glsr_log() |
|
| 165 | +{ |
|
| 151 | 166 | $args = func_get_args(); |
| 152 | 167 | $context = isset( $args[1] ) |
| 153 | 168 | ? $args[1] |
@@ -161,6 +176,7 @@ discard block |
||
| 161 | 176 | /** |
| 162 | 177 | * @return string |
| 163 | 178 | */ |
| 164 | -function glsr_star_rating( $rating ) { |
|
| 179 | +function glsr_star_rating( $rating ) |
|
| 180 | +{ |
|
| 165 | 181 | return glsr( 'Modules\Html\Partial' )->build( 'star-rating', ['rating' => $rating] ); |
| 166 | 182 | } |