@@ -13,14 +13,14 @@ discard block |
||
| 13 | 13 | public function getPost( $postId ) |
| 14 | 14 | { |
| 15 | 15 | $postId = trim( $postId ); |
| 16 | - if( empty( $postId ) || !is_numeric( $postId ))return; |
|
| 16 | + if( empty($postId) || !is_numeric( $postId ) )return; |
|
| 17 | 17 | if( $this->isEnabled() ) { |
| 18 | - $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() )); |
|
| 18 | + $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ) ); |
|
| 19 | 19 | } |
| 20 | - if( !empty( $polylangPostId )) { |
|
| 20 | + if( !empty($polylangPostId) ) { |
|
| 21 | 21 | $postId = $polylangPostId; |
| 22 | 22 | } |
| 23 | - return get_post( intval( $postId )); |
|
| 23 | + return get_post( intval( $postId ) ); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | foreach( $this->cleanIds( $postIds ) as $postId ) { |
| 36 | 36 | $newPostIds = array_merge( |
| 37 | 37 | $newPostIds, |
| 38 | - array_values( pll_get_post_translations( $postId )) |
|
| 38 | + array_values( pll_get_post_translations( $postId ) ) |
|
| 39 | 39 | ); |
| 40 | 40 | } |
| 41 | 41 | return $this->cleanIds( $newPostIds ); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | */ |
| 76 | 76 | protected function cleanIds( array $postIds ) |
| 77 | 77 | { |
| 78 | - return array_filter( array_unique( $postIds )); |
|
| 78 | + return array_filter( array_unique( $postIds ) ); |
|
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
@@ -13,7 +13,9 @@ |
||
| 13 | 13 | public function getPost( $postId ) |
| 14 | 14 | { |
| 15 | 15 | $postId = trim( $postId ); |
| 16 | - if( empty( $postId ) || !is_numeric( $postId ))return; |
|
| 16 | + if( empty( $postId ) || !is_numeric( $postId )) { |
|
| 17 | + return; |
|
| 18 | + } |
|
| 17 | 19 | if( $this->isEnabled() ) { |
| 18 | 20 | $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() )); |
| 19 | 21 | } |
@@ -20,14 +20,14 @@ discard block |
||
| 20 | 20 | 'class' => 'widefat', |
| 21 | 21 | 'label' => __( 'Title', 'site-reviews' ), |
| 22 | 22 | 'name' => 'title', |
| 23 | - ]); |
|
| 23 | + ] ); |
|
| 24 | 24 | $this->renderField( 'number', [ |
| 25 | 25 | 'class' => 'small-text', |
| 26 | 26 | 'default' => 5, |
| 27 | 27 | 'label' => __( 'How many reviews would you like to display?', 'site-reviews' ), |
| 28 | 28 | 'max' => 100, |
| 29 | 29 | 'name' => 'count', |
| 30 | - ]); |
|
| 30 | + ] ); |
|
| 31 | 31 | $this->renderField( 'select', [ |
| 32 | 32 | 'label' => __( 'What is the minimum rating to display?', 'site-reviews' ), |
| 33 | 33 | 'name' => 'rating', |
@@ -38,22 +38,22 @@ discard block |
||
| 38 | 38 | '2' => sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ), |
| 39 | 39 | '1' => sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ), |
| 40 | 40 | ], |
| 41 | - ]); |
|
| 41 | + ] ); |
|
| 42 | 42 | if( count( glsr()->reviewTypes ) > 1 ) { |
| 43 | 43 | $this->renderField( 'select', [ |
| 44 | 44 | 'class' => 'widefat', |
| 45 | 45 | 'label' => __( 'Which type of review would you like to display?', 'site-reviews' ), |
| 46 | 46 | 'name' => 'type', |
| 47 | 47 | 'options' => ['' => __( 'All Reviews', 'site-reviews' )] + glsr()->reviewTypes, |
| 48 | - ]); |
|
| 48 | + ] ); |
|
| 49 | 49 | } |
| 50 | - if( !empty( $terms )) { |
|
| 50 | + if( !empty($terms) ) { |
|
| 51 | 51 | $this->renderField( 'select', [ |
| 52 | 52 | 'class' => 'widefat', |
| 53 | 53 | 'label' => __( 'Limit reviews to this category', 'site-reviews' ), |
| 54 | 54 | 'name' => 'category', |
| 55 | 55 | 'options' => ['' => __( 'All Categories', 'site-reviews' )] + $terms, |
| 56 | - ]); |
|
| 56 | + ] ); |
|
| 57 | 57 | } |
| 58 | 58 | $this->renderField( 'text', [ |
| 59 | 59 | 'class' => 'widefat', |
@@ -61,12 +61,12 @@ discard block |
||
| 61 | 61 | 'description' => sprintf( __( "Separate multiple ID's with a comma. You may also enter %s to automatically represent the current page/post ID.", 'site-reviews' ), '<code>post_id</code>' ), |
| 62 | 62 | 'label' => __( 'Limit reviews to those assigned to this page/post ID', 'site-reviews' ), |
| 63 | 63 | 'name' => 'assigned_to', |
| 64 | - ]); |
|
| 64 | + ] ); |
|
| 65 | 65 | $this->renderField( 'text', [ |
| 66 | 66 | 'class' => 'widefat', |
| 67 | 67 | 'label' => __( 'Enter any custom CSS classes here', 'site-reviews' ), |
| 68 | 68 | 'name' => 'class', |
| 69 | - ]); |
|
| 69 | + ] ); |
|
| 70 | 70 | $this->renderField( 'checkbox', [ |
| 71 | 71 | 'name' => 'hide', |
| 72 | 72 | 'options' => [ |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | 'response' => __( 'Hide the review response?', 'site-reviews' ), |
| 80 | 80 | 'title' => __( 'Hide the review title?', 'site-reviews' ), |
| 81 | 81 | ], |
| 82 | - ]); |
|
| 82 | + ] ); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
@@ -89,10 +89,10 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | public function update( $newInstance, $oldInstance ) |
| 91 | 91 | { |
| 92 | - if( !is_numeric( $newInstance['count'] )) { |
|
| 92 | + if( !is_numeric( $newInstance['count'] ) ) { |
|
| 93 | 93 | $newInstance['count'] = 10; |
| 94 | 94 | } |
| 95 | - $newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] ))); |
|
| 95 | + $newInstance['count'] = min( 50, max( 0, intval( $newInstance['count'] ) ) ); |
|
| 96 | 96 | return parent::update( $newInstance, $oldInstance ); |
| 97 | 97 | } |
| 98 | 98 | |
@@ -74,7 +74,9 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function decreasePostCounts( Review $review ) |
| 76 | 76 | { |
| 77 | - if( empty( $counts = $this->getPostCounts( $review->assigned_to )))return; |
|
| 77 | + if( empty( $counts = $this->getPostCounts( $review->assigned_to ))) { |
|
| 78 | + return; |
|
| 79 | + } |
|
| 78 | 80 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
| 79 | 81 | $this->setPostCounts( $review->assigned_to, $counts ); |
| 80 | 82 | } |
@@ -85,7 +87,9 @@ discard block |
||
| 85 | 87 | public function decreaseTermCounts( Review $review ) |
| 86 | 88 | { |
| 87 | 89 | foreach( $review->term_ids as $termId ) { |
| 88 | - if( empty( $counts = $this->getTermCounts( $termId )))continue; |
|
| 90 | + if( empty( $counts = $this->getTermCounts( $termId ))) { |
|
| 91 | + continue; |
|
| 92 | + } |
|
| 89 | 93 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
| 90 | 94 | $this->setTermCounts( $termId, $counts ); |
| 91 | 95 | } |
@@ -107,7 +111,9 @@ discard block |
||
| 107 | 111 | 'min' => Rating::MIN_RATING, |
| 108 | 112 | ]); |
| 109 | 113 | foreach( $counts as $index => &$num ) { |
| 110 | - if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ))continue; |
|
| 114 | + if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] )) { |
|
| 115 | + continue; |
|
| 116 | + } |
|
| 111 | 117 | $num = 0; |
| 112 | 118 | } |
| 113 | 119 | return $counts; |
@@ -194,7 +200,9 @@ discard block |
||
| 194 | 200 | */ |
| 195 | 201 | public function increasePostCounts( Review $review ) |
| 196 | 202 | { |
| 197 | - if( !( get_post( $review->assigned_to ) instanceof WP_Post ))return; |
|
| 203 | + if( !( get_post( $review->assigned_to ) instanceof WP_Post )) { |
|
| 204 | + return; |
|
| 205 | + } |
|
| 198 | 206 | $counts = $this->getPostCounts( $review->assigned_to ); |
| 199 | 207 | $counts = empty( $counts ) |
| 200 | 208 | ? $this->buildPostCounts( $review->assigned_to ) |
@@ -243,7 +251,9 @@ discard block |
||
| 243 | 251 | */ |
| 244 | 252 | public function setTermCounts( $termId, array $reviewCounts ) |
| 245 | 253 | { |
| 246 | - if( !term_exists( $termId ))return; |
|
| 254 | + if( !term_exists( $termId )) { |
|
| 255 | + return; |
|
| 256 | + } |
|
| 247 | 257 | $ratingCounts = $this->flatten( $reviewCounts ); |
| 248 | 258 | update_term_meta( $termId, static::META_COUNT, $reviewCounts ); |
| 249 | 259 | update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
@@ -261,7 +271,9 @@ discard block |
||
| 261 | 271 | while( $reviews = $this->queryReviews( $args, $lastPostId, $limit )) { |
| 262 | 272 | $types = array_keys( array_flip( array_column( $reviews, 'type' ))); |
| 263 | 273 | foreach( $types as $type ) { |
| 264 | - if( isset( $counts[$type] ))continue; |
|
| 274 | + if( isset( $counts[$type] )) { |
|
| 275 | + continue; |
|
| 276 | + } |
|
| 265 | 277 | $counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 ); |
| 266 | 278 | } |
| 267 | 279 | foreach( $reviews as $review ) { |
@@ -313,7 +325,9 @@ discard block |
||
| 313 | 325 | } |
| 314 | 326 | foreach( $reviewCounts as &$counts ) { |
| 315 | 327 | foreach( range( 0, Rating::MAX_RATING ) as $index ) { |
| 316 | - if( isset( $counts[$index] ))continue; |
|
| 328 | + if( isset( $counts[$index] )) { |
|
| 329 | + continue; |
|
| 330 | + } |
|
| 317 | 331 | $counts[$index] = 0; |
| 318 | 332 | } |
| 319 | 333 | ksort( $counts ); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $this->getCounts(), |
| 67 | 67 | $review->review_type, |
| 68 | 68 | $review->rating |
| 69 | - )); |
|
| 69 | + ) ); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function decreasePostCounts( Review $review ) |
| 76 | 76 | { |
| 77 | - if( empty( $counts = $this->getPostCounts( $review->assigned_to )))return; |
|
| 77 | + if( empty($counts = $this->getPostCounts( $review->assigned_to )) )return; |
|
| 78 | 78 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
| 79 | 79 | $this->setPostCounts( $review->assigned_to, $counts ); |
| 80 | 80 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | public function decreaseTermCounts( Review $review ) |
| 86 | 86 | { |
| 87 | 87 | foreach( $review->term_ids as $termId ) { |
| 88 | - if( empty( $counts = $this->getTermCounts( $termId )))continue; |
|
| 88 | + if( empty($counts = $this->getTermCounts( $termId )) )continue; |
|
| 89 | 89 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
| 90 | 90 | $this->setTermCounts( $termId, $counts ); |
| 91 | 91 | } |
@@ -97,17 +97,17 @@ discard block |
||
| 97 | 97 | public function flatten( array $reviewCounts, array $args = [] ) |
| 98 | 98 | { |
| 99 | 99 | $counts = []; |
| 100 | - array_walk_recursive( $reviewCounts, function( $num, $index ) use( &$counts ) { |
|
| 101 | - $counts[$index] = isset( $counts[$index] ) |
|
| 100 | + array_walk_recursive( $reviewCounts, function( $num, $index ) use(&$counts) { |
|
| 101 | + $counts[$index] = isset($counts[$index]) |
|
| 102 | 102 | ? $num + $counts[$index] |
| 103 | 103 | : $num; |
| 104 | 104 | }); |
| 105 | 105 | $args = wp_parse_args( $args, [ |
| 106 | 106 | 'max' => Rating::MAX_RATING, |
| 107 | 107 | 'min' => Rating::MIN_RATING, |
| 108 | - ]); |
|
| 108 | + ] ); |
|
| 109 | 109 | foreach( $counts as $index => &$num ) { |
| 110 | - if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ))continue; |
|
| 110 | + if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ) )continue; |
|
| 111 | 111 | $num = 0; |
| 112 | 112 | } |
| 113 | 113 | return $counts; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | 'post_ids' => [], |
| 123 | 123 | 'term_ids' => [], |
| 124 | 124 | 'type' => 'local', |
| 125 | - ]); |
|
| 125 | + ] ); |
|
| 126 | 126 | $counts = []; |
| 127 | 127 | foreach( glsr( Polylang::class )->getPostIds( $args['post_ids'] ) as $postId ) { |
| 128 | 128 | $counts[] = $this->getPostCounts( $postId ); |
@@ -130,12 +130,12 @@ discard block |
||
| 130 | 130 | foreach( $args['term_ids'] as $termId ) { |
| 131 | 131 | $counts[] = $this->getTermCounts( $termId ); |
| 132 | 132 | } |
| 133 | - if( empty( $counts )) { |
|
| 133 | + if( empty($counts) ) { |
|
| 134 | 134 | $counts[] = $this->getCounts(); |
| 135 | 135 | } |
| 136 | 136 | return in_array( $args['type'], ['', 'all'] ) |
| 137 | 137 | ? $this->normalize( [$this->flatten( $counts )] ) |
| 138 | - : $this->normalize( array_column( $counts, $args['type'] )); |
|
| 138 | + : $this->normalize( array_column( $counts, $args['type'] ) ); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | public function getCounts() |
| 145 | 145 | { |
| 146 | 146 | $counts = glsr( OptionManager::class )->get( 'counts', [] ); |
| 147 | - if( !is_array( $counts )) { |
|
| 147 | + if( !is_array( $counts ) ) { |
|
| 148 | 148 | glsr_log()->error( 'CountsManager: counts is not an array' )->debug( $counts ); |
| 149 | 149 | return []; |
| 150 | 150 | } |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public function getPostCounts( $postId ) |
| 159 | 159 | { |
| 160 | - return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true )); |
|
| 160 | + return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true ) ); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | public function getTermCounts( $termId ) |
| 168 | 168 | { |
| 169 | - return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true )); |
|
| 169 | + return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true ) ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | /** |
@@ -184,14 +184,14 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | public function increaseCounts( Review $review ) |
| 186 | 186 | { |
| 187 | - if( empty( $counts = $this->getCounts() )) { |
|
| 187 | + if( empty($counts = $this->getCounts()) ) { |
|
| 188 | 188 | $counts = $this->buildCounts(); |
| 189 | 189 | } |
| 190 | 190 | $this->setCounts( $this->increaseRating( |
| 191 | 191 | $counts, |
| 192 | 192 | $review->review_type, |
| 193 | 193 | $review->rating |
| 194 | - )); |
|
| 194 | + ) ); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
@@ -199,9 +199,9 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | public function increasePostCounts( Review $review ) |
| 201 | 201 | { |
| 202 | - if( !( get_post( $review->assigned_to ) instanceof WP_Post ))return; |
|
| 202 | + if( !(get_post( $review->assigned_to ) instanceof WP_Post) )return; |
|
| 203 | 203 | $counts = $this->getPostCounts( $review->assigned_to ); |
| 204 | - $counts = empty( $counts ) |
|
| 204 | + $counts = empty($counts) |
|
| 205 | 205 | ? $this->buildPostCounts( $review->assigned_to ) |
| 206 | 206 | : $this->increaseRating( $counts, $review->review_type, $review->rating ); |
| 207 | 207 | $this->setPostCounts( $review->assigned_to, $counts ); |
@@ -212,10 +212,10 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | public function increaseTermCounts( Review $review ) |
| 214 | 214 | { |
| 215 | - $termIds = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids )); |
|
| 215 | + $termIds = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids ) ); |
|
| 216 | 216 | foreach( $termIds as $termId ) { |
| 217 | 217 | $counts = $this->getTermCounts( $termId ); |
| 218 | - $counts = empty( $counts ) |
|
| 218 | + $counts = empty($counts) |
|
| 219 | 219 | ? $this->buildTermCounts( $termId ) |
| 220 | 220 | : $this->increaseRating( $counts, $review->review_type, $review->rating ); |
| 221 | 221 | $this->setTermCounts( $termId, $counts ); |
@@ -238,8 +238,8 @@ discard block |
||
| 238 | 238 | { |
| 239 | 239 | $ratingCounts = $this->flatten( $reviewCounts ); |
| 240 | 240 | update_post_meta( $postId, static::META_COUNT, $reviewCounts ); |
| 241 | - update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
|
| 242 | - update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts )); |
|
| 241 | + update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) ); |
|
| 242 | + update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) ); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -248,11 +248,11 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | public function setTermCounts( $termId, array $reviewCounts ) |
| 250 | 250 | { |
| 251 | - if( !term_exists( $termId ))return; |
|
| 251 | + if( !term_exists( $termId ) )return; |
|
| 252 | 252 | $ratingCounts = $this->flatten( $reviewCounts ); |
| 253 | 253 | update_term_meta( $termId, static::META_COUNT, $reviewCounts ); |
| 254 | - update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
|
| 255 | - update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts )); |
|
| 254 | + update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) ); |
|
| 255 | + update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) ); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | /** |
@@ -263,14 +263,14 @@ discard block |
||
| 263 | 263 | { |
| 264 | 264 | $counts = []; |
| 265 | 265 | $lastPostId = 0; |
| 266 | - while( $reviews = $this->queryReviews( $args, $lastPostId, $limit )) { |
|
| 267 | - $types = array_keys( array_flip( array_column( $reviews, 'type' ))); |
|
| 266 | + while( $reviews = $this->queryReviews( $args, $lastPostId, $limit ) ) { |
|
| 267 | + $types = array_keys( array_flip( array_column( $reviews, 'type' ) ) ); |
|
| 268 | 268 | foreach( $types as $type ) { |
| 269 | - if( isset( $counts[$type] ))continue; |
|
| 269 | + if( isset($counts[$type]) )continue; |
|
| 270 | 270 | $counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 ); |
| 271 | 271 | } |
| 272 | 272 | foreach( $reviews as $review ) { |
| 273 | - $type = empty( $review->type ) || !is_string( $review->type ) |
|
| 273 | + $type = empty($review->type) || !is_string( $review->type ) |
|
| 274 | 274 | ? 'local' |
| 275 | 275 | : $review->type; |
| 276 | 276 | $counts[$type][$review->rating]++; |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | */ |
| 288 | 288 | protected function decreaseRating( array $reviewCounts, $type, $rating ) |
| 289 | 289 | { |
| 290 | - if( isset( $reviewCounts[$type][$rating] )) { |
|
| 290 | + if( isset($reviewCounts[$type][$rating]) ) { |
|
| 291 | 291 | $reviewCounts[$type][$rating] = max( 0, $reviewCounts[$type][$rating] - 1 ); |
| 292 | 292 | } |
| 293 | 293 | return $reviewCounts; |
@@ -300,10 +300,10 @@ discard block |
||
| 300 | 300 | */ |
| 301 | 301 | protected function increaseRating( array $reviewCounts, $type, $rating ) |
| 302 | 302 | { |
| 303 | - if( !array_key_exists( $type, glsr()->reviewTypes )) { |
|
| 303 | + if( !array_key_exists( $type, glsr()->reviewTypes ) ) { |
|
| 304 | 304 | return $reviewCounts; |
| 305 | 305 | } |
| 306 | - if( !array_key_exists( $type, $reviewCounts )) { |
|
| 306 | + if( !array_key_exists( $type, $reviewCounts ) ) { |
|
| 307 | 307 | $reviewCounts[$type] = []; |
| 308 | 308 | } |
| 309 | 309 | $reviewCounts = $this->normalize( $reviewCounts ); |
@@ -316,12 +316,12 @@ discard block |
||
| 316 | 316 | */ |
| 317 | 317 | protected function normalize( array $reviewCounts ) |
| 318 | 318 | { |
| 319 | - if( empty( $reviewCounts )) { |
|
| 319 | + if( empty($reviewCounts) ) { |
|
| 320 | 320 | $reviewCounts = [[]]; |
| 321 | 321 | } |
| 322 | 322 | foreach( $reviewCounts as &$counts ) { |
| 323 | 323 | foreach( range( 0, Rating::MAX_RATING ) as $index ) { |
| 324 | - if( isset( $counts[$index] ))continue; |
|
| 324 | + if( isset($counts[$index]) )continue; |
|
| 325 | 325 | $counts[$index] = 0; |
| 326 | 326 | } |
| 327 | 327 | ksort( $counts ); |
@@ -336,14 +336,14 @@ discard block |
||
| 336 | 336 | */ |
| 337 | 337 | protected function queryReviews( array $args = [], $lastPostId, $limit ) |
| 338 | 338 | { |
| 339 | - $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_id'], '' )); |
|
| 340 | - if( empty( array_filter( $args ))) { |
|
| 339 | + $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_id'], '' ) ); |
|
| 340 | + if( empty(array_filter( $args )) ) { |
|
| 341 | 341 | return glsr( SqlQueries::class )->getReviewCounts( $lastPostId, $limit ); |
| 342 | 342 | } |
| 343 | - if( !empty( $args['post_id'] )) { |
|
| 343 | + if( !empty($args['post_id']) ) { |
|
| 344 | 344 | return glsr( SqlQueries::class )->getReviewPostCounts( $args['post_id'], $lastPostId, $limit ); |
| 345 | 345 | } |
| 346 | - if( !empty( $args['term_id'] )) { |
|
| 346 | + if( !empty($args['term_id']) ) { |
|
| 347 | 347 | return glsr( SqlQueries::class )->getReviewTermCounts( $args['term_id'], $lastPostId, $limit ); |
| 348 | 348 | } |
| 349 | 349 | } |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | 'navigation' => $navigation, |
| 58 | 58 | 'reviews' => $this->buildReviews(), |
| 59 | 59 | ], |
| 60 | - ]); |
|
| 60 | + ] ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -68,9 +68,9 @@ discard block |
||
| 68 | 68 | $reviews = ''; |
| 69 | 69 | foreach( $this->reviews->results as $index => $result ) { |
| 70 | 70 | $this->current = $index; |
| 71 | - $reviews.= glsr( Template::class )->build( 'templates/review', [ |
|
| 71 | + $reviews .= glsr( Template::class )->build( 'templates/review', [ |
|
| 72 | 72 | 'context' => $this->buildReview( $result )->values, |
| 73 | - ]); |
|
| 73 | + ] ); |
|
| 74 | 74 | } |
| 75 | 75 | return $reviews; |
| 76 | 76 | } |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | $renderedFields = []; |
| 86 | 86 | foreach( (array)$review as $key => $value ) { |
| 87 | 87 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
| 88 | - if( !method_exists( $this, $method ))continue; |
|
| 88 | + if( !method_exists( $this, $method ) )continue; |
|
| 89 | 89 | $renderedFields[$key] = $this->$method( $key, $value ); |
| 90 | 90 | } |
| 91 | 91 | $this->wrap( $renderedFields, $review ); |
@@ -100,12 +100,12 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | protected function buildOptionAssignedTo( $key, $value ) |
| 102 | 102 | { |
| 103 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 103 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
| 104 | 104 | $post = glsr( Polylang::class )->getPost( $value ); |
| 105 | - if( !( $post instanceof WP_Post ))return; |
|
| 105 | + if( !($post instanceof WP_Post) )return; |
|
| 106 | 106 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 107 | 107 | 'href' => get_the_permalink( $post->ID ), |
| 108 | - ]); |
|
| 108 | + ] ); |
|
| 109 | 109 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
| 110 | 110 | return '<span>'.$assignedTo.'</span>'; |
| 111 | 111 | } |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | protected function buildOptionAuthor( $key, $value ) |
| 119 | 119 | { |
| 120 | - if( $this->isHidden( $key ))return; |
|
| 120 | + if( $this->isHidden( $key ) )return; |
|
| 121 | 121 | return '<span>'.$value.'</span>'; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -128,14 +128,14 @@ discard block |
||
| 128 | 128 | */ |
| 129 | 129 | protected function buildOptionAvatar( $key, $value ) |
| 130 | 130 | { |
| 131 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 131 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
| 132 | 132 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 133 | - return glsr( Builder::class )->img([ |
|
| 133 | + return glsr( Builder::class )->img( [ |
|
| 134 | 134 | 'height' => $size, |
| 135 | 135 | 'src' => $this->generateAvatar( $value ), |
| 136 | 136 | 'style' => sprintf( 'width:%1$spx; height:%1$spx;', $size ), |
| 137 | 137 | 'width' => $size, |
| 138 | - ]); |
|
| 138 | + ] ); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | /** |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | protected function buildOptionContent( $key, $value ) |
| 147 | 147 | { |
| 148 | 148 | $text = $this->normalizeText( $value ); |
| 149 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 149 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
| 150 | 150 | return '<p>'.$text.'</p>'; |
| 151 | 151 | } |
| 152 | 152 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | protected function buildOptionDate( $key, $value ) |
| 159 | 159 | { |
| 160 | - if( $this->isHidden( $key ))return; |
|
| 160 | + if( $this->isHidden( $key ) )return; |
|
| 161 | 161 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 162 | 162 | if( $dateFormat == 'relative' ) { |
| 163 | 163 | $date = glsr( Date::class )->relative( $value ); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $format = $dateFormat == 'custom' |
| 167 | 167 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
| 168 | 168 | : (string)get_option( 'date_format' ); |
| 169 | - $date = date_i18n( $format, strtotime( $value )); |
|
| 169 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
| 170 | 170 | } |
| 171 | 171 | return '<span>'.$date.'</span>'; |
| 172 | 172 | } |
@@ -178,10 +178,10 @@ discard block |
||
| 178 | 178 | */ |
| 179 | 179 | protected function buildOptionRating( $key, $value ) |
| 180 | 180 | { |
| 181 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 181 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 182 | 182 | return glsr( Partial::class )->build( 'star-rating', [ |
| 183 | 183 | 'rating' => $value, |
| 184 | - ]); |
|
| 184 | + ] ); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -191,8 +191,8 @@ discard block |
||
| 191 | 191 | */ |
| 192 | 192 | protected function buildOptionResponse( $key, $value ) |
| 193 | 193 | { |
| 194 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 195 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
| 194 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 195 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
| 196 | 196 | $text = $this->normalizeText( $value ); |
| 197 | 197 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
| 198 | 198 | $response = glsr( Builder::class )->div( $text, ['class' => 'glsr-review-response-inner'] ); |
@@ -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 '<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 ); |
@@ -378,12 +378,12 @@ discard block |
||
| 378 | 378 | protected function wrap( array &$renderedFields, Review $review ) |
| 379 | 379 | { |
| 380 | 380 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
| 381 | - array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
|
| 381 | + array_walk( $renderedFields, function( &$value, $key ) use($review) { |
|
| 382 | 382 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
| 383 | - if( empty( $value ))return; |
|
| 383 | + if( empty($value) )return; |
|
| 384 | 384 | $value = glsr( Builder::class )->div( $value, [ |
| 385 | 385 | 'class' => 'glsr-review-'.$key, |
| 386 | - ]); |
|
| 386 | + ] ); |
|
| 387 | 387 | }); |
| 388 | 388 | } |
| 389 | 389 | } |
@@ -85,7 +85,9 @@ discard block |
||
| 85 | 85 | $renderedFields = []; |
| 86 | 86 | foreach( (array)$review as $key => $value ) { |
| 87 | 87 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
| 88 | - if( !method_exists( $this, $method ))continue; |
|
| 88 | + if( !method_exists( $this, $method )) { |
|
| 89 | + continue; |
|
| 90 | + } |
|
| 89 | 91 | $renderedFields[$key] = $this->$method( $key, $value ); |
| 90 | 92 | } |
| 91 | 93 | $this->wrap( $renderedFields, $review ); |
@@ -100,9 +102,13 @@ discard block |
||
| 100 | 102 | */ |
| 101 | 103 | protected function buildOptionAssignedTo( $key, $value ) |
| 102 | 104 | { |
| 103 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
| 105 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
| 106 | + return; |
|
| 107 | + } |
|
| 104 | 108 | $post = glsr( Polylang::class )->getPost( $value ); |
| 105 | - if( !( $post instanceof WP_Post ))return; |
|
| 109 | + if( !( $post instanceof WP_Post )) { |
|
| 110 | + return; |
|
| 111 | + } |
|
| 106 | 112 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 107 | 113 | 'href' => get_the_permalink( $post->ID ), |
| 108 | 114 | ]); |
@@ -117,7 +123,9 @@ discard block |
||
| 117 | 123 | */ |
| 118 | 124 | protected function buildOptionAuthor( $key, $value ) |
| 119 | 125 | { |
| 120 | - if( $this->isHidden( $key ))return; |
|
| 126 | + if( $this->isHidden( $key )) { |
|
| 127 | + return; |
|
| 128 | + } |
|
| 121 | 129 | return '<span>'.$value.'</span>'; |
| 122 | 130 | } |
| 123 | 131 | |
@@ -128,7 +136,9 @@ discard block |
||
| 128 | 136 | */ |
| 129 | 137 | protected function buildOptionAvatar( $key, $value ) |
| 130 | 138 | { |
| 131 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
| 139 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
| 140 | + return; |
|
| 141 | + } |
|
| 132 | 142 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
| 133 | 143 | return glsr( Builder::class )->img([ |
| 134 | 144 | 'height' => $size, |
@@ -146,7 +156,9 @@ discard block |
||
| 146 | 156 | protected function buildOptionContent( $key, $value ) |
| 147 | 157 | { |
| 148 | 158 | $text = $this->normalizeText( $value ); |
| 149 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 159 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
| 160 | + return; |
|
| 161 | + } |
|
| 150 | 162 | return '<p>'.$text.'</p>'; |
| 151 | 163 | } |
| 152 | 164 | |
@@ -157,7 +169,9 @@ discard block |
||
| 157 | 169 | */ |
| 158 | 170 | protected function buildOptionDate( $key, $value ) |
| 159 | 171 | { |
| 160 | - if( $this->isHidden( $key ))return; |
|
| 172 | + if( $this->isHidden( $key )) { |
|
| 173 | + return; |
|
| 174 | + } |
|
| 161 | 175 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 162 | 176 | if( $dateFormat == 'relative' ) { |
| 163 | 177 | $date = glsr( Date::class )->relative( $value ); |
@@ -178,7 +192,9 @@ discard block |
||
| 178 | 192 | */ |
| 179 | 193 | protected function buildOptionRating( $key, $value ) |
| 180 | 194 | { |
| 181 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 195 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 196 | + return; |
|
| 197 | + } |
|
| 182 | 198 | return glsr( Partial::class )->build( 'star-rating', [ |
| 183 | 199 | 'rating' => $value, |
| 184 | 200 | ]); |
@@ -191,7 +207,9 @@ discard block |
||
| 191 | 207 | */ |
| 192 | 208 | protected function buildOptionResponse( $key, $value ) |
| 193 | 209 | { |
| 194 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 210 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
| 211 | + return; |
|
| 212 | + } |
|
| 195 | 213 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
| 196 | 214 | $text = $this->normalizeText( $value ); |
| 197 | 215 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -207,7 +225,9 @@ discard block |
||
| 207 | 225 | */ |
| 208 | 226 | protected function buildOptionTitle( $key, $value ) |
| 209 | 227 | { |
| 210 | - if( $this->isHidden( $key ))return; |
|
| 228 | + if( $this->isHidden( $key )) { |
|
| 229 | + return; |
|
| 230 | + } |
|
| 211 | 231 | if( empty( $value )) { |
| 212 | 232 | $value = __( 'No Title', 'site-reviews' ); |
| 213 | 233 | } |
@@ -239,7 +259,9 @@ discard block |
||
| 239 | 259 | */ |
| 240 | 260 | protected function generateSchema() |
| 241 | 261 | { |
| 242 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 262 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
| 263 | + return; |
|
| 264 | + } |
|
| 243 | 265 | glsr( Schema::class )->store( |
| 244 | 266 | glsr( Schema::class )->build( $this->args ) |
| 245 | 267 | ); |
@@ -289,9 +311,13 @@ discard block |
||
| 289 | 311 | $words->setText( $text ); |
| 290 | 312 | $count = 0; |
| 291 | 313 | foreach( $words as $offset ){ |
| 292 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
| 314 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
| 315 | + continue; |
|
| 316 | + } |
|
| 293 | 317 | $count++; |
| 294 | - if( $count != $limit )continue; |
|
| 318 | + if( $count != $limit ) { |
|
| 319 | + continue; |
|
| 320 | + } |
|
| 295 | 321 | return $offset; |
| 296 | 322 | } |
| 297 | 323 | return strlen( $text ); |
@@ -380,7 +406,9 @@ discard block |
||
| 380 | 406 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
| 381 | 407 | array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
| 382 | 408 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
| 383 | - if( empty( $value ))return; |
|
| 409 | + if( empty( $value )) { |
|
| 410 | + return; |
|
| 411 | + } |
|
| 384 | 412 | $value = glsr( Builder::class )->div( $value, [ |
| 385 | 413 | 'class' => 'glsr-review-'.$key, |
| 386 | 414 | ]); |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | public function download( $filename, $content ) |
| 17 | 17 | { |
| 18 | - if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return; |
|
| 18 | + if( !current_user_can( glsr()->constant( 'CAPABILITY' ) ) )return; |
|
| 19 | 19 | nocache_headers(); |
| 20 | 20 | header( 'Content-Type: text/plain' ); |
| 21 | 21 | header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); |
@@ -30,8 +30,8 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function execute( $command ) |
| 32 | 32 | { |
| 33 | - $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command )); |
|
| 34 | - if( !class_exists( $handlerClass )) { |
|
| 33 | + $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) ); |
|
| 34 | + if( !class_exists( $handlerClass ) ) { |
|
| 35 | 35 | throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' ); |
| 36 | 36 | } |
| 37 | 37 | try { |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | } |
| 40 | 40 | catch( Exception $e ) { |
| 41 | 41 | status_header( 400 ); |
| 42 | - glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() )); |
|
| 42 | + glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) ); |
|
| 43 | 43 | glsr_log()->error( $e->getMessage() ); |
| 44 | 44 | } |
| 45 | 45 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | protected function getPostId() |
| 51 | 51 | { |
| 52 | - return intval( filter_input( INPUT_GET, 'post' )); |
|
| 52 | + return intval( filter_input( INPUT_GET, 'post' ) ); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -15,7 +15,9 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | public function download( $filename, $content ) |
| 17 | 17 | { |
| 18 | - if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return; |
|
| 18 | + if( !current_user_can( glsr()->constant( 'CAPABILITY' ))) { |
|
| 19 | + return; |
|
| 20 | + } |
|
| 19 | 21 | nocache_headers(); |
| 20 | 22 | header( 'Content-Type: text/plain' ); |
| 21 | 23 | header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); |
@@ -22,17 +22,17 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | global $menu, $typenow; |
| 24 | 24 | foreach( $menu as $key => $value ) { |
| 25 | - if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
| 25 | + if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
| 26 | 26 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 27 | 27 | $pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [ |
| 28 | 28 | 'class' => 'pending-count', |
| 29 | - ]); |
|
| 29 | + ] ); |
|
| 30 | 30 | $awaitingModeration = glsr( Builder::class )->span( $pendingCount, [ |
| 31 | 31 | 'class' => 'awaiting-mod count-'.$postCount->pending, |
| 32 | - ]); |
|
| 32 | + ] ); |
|
| 33 | 33 | $menu[$key][0] .= ' '.$awaitingModeration; |
| 34 | 34 | if( $typenow === Application::POST_TYPE ) { |
| 35 | - $menu[$key][4].= ' current'; |
|
| 35 | + $menu[$key][4] .= ' current'; |
|
| 36 | 36 | } |
| 37 | 37 | break; |
| 38 | 38 | } |
@@ -49,11 +49,11 @@ discard block |
||
| 49 | 49 | 'tools' => __( 'Tools', 'site-reviews' ), |
| 50 | 50 | 'addons' => __( 'Addons', 'site-reviews' ), |
| 51 | 51 | 'documentation' => __( 'Documentation', 'site-reviews' ), |
| 52 | - ]); |
|
| 52 | + ] ); |
|
| 53 | 53 | foreach( $pages as $slug => $title ) { |
| 54 | 54 | $method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' ); |
| 55 | 55 | $callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug ); |
| 56 | - if( !is_callable( $callback ))continue; |
|
| 56 | + if( !is_callable( $callback ) )continue; |
|
| 57 | 57 | add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->constant( 'CAPABILITY' ), $slug, $callback ); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | { |
| 68 | 68 | $this->renderPage( 'addons', [ |
| 69 | 69 | 'template' => glsr( Template::class ), |
| 70 | - ]); |
|
| 70 | + ] ); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -84,16 +84,16 @@ discard block |
||
| 84 | 84 | 'hooks' => __( 'Hooks', 'site-reviews' ), |
| 85 | 85 | 'functions' => __( 'Functions', 'site-reviews' ), |
| 86 | 86 | 'addons' => __( 'Addons', 'site-reviews' ), |
| 87 | - ]); |
|
| 87 | + ] ); |
|
| 88 | 88 | $addons = apply_filters( 'site-reviews/addon/documentation', [] ); |
| 89 | 89 | ksort( $addons ); |
| 90 | - if( empty( $addons )) { |
|
| 91 | - unset( $tabs['addons'] ); |
|
| 90 | + if( empty($addons) ) { |
|
| 91 | + unset($tabs['addons']); |
|
| 92 | 92 | } |
| 93 | 93 | $this->renderPage( 'documentation', [ |
| 94 | 94 | 'addons' => $addons, |
| 95 | 95 | 'tabs' => $tabs, |
| 96 | - ]); |
|
| 96 | + ] ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
@@ -111,18 +111,18 @@ discard block |
||
| 111 | 111 | 'translations' => __( 'Translations', 'site-reviews' ), |
| 112 | 112 | 'addons' => __( 'Addons', 'site-reviews' ), |
| 113 | 113 | 'licenses' => __( 'Licenses', 'site-reviews' ), |
| 114 | - ]); |
|
| 115 | - if( empty( glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults ))) { |
|
| 116 | - unset( $tabs['addons'] ); |
|
| 114 | + ] ); |
|
| 115 | + if( empty(glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults )) ) { |
|
| 116 | + unset($tabs['addons']); |
|
| 117 | 117 | } |
| 118 | - if( empty( glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults ))) { |
|
| 119 | - unset( $tabs['licenses'] ); |
|
| 118 | + if( empty(glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults )) ) { |
|
| 119 | + unset($tabs['licenses']); |
|
| 120 | 120 | } |
| 121 | 121 | $this->renderPage( 'settings', [ |
| 122 | 122 | 'notices' => $this->getNotices(), |
| 123 | 123 | 'settings' => glsr( Settings::class ), |
| 124 | 124 | 'tabs' => $tabs, |
| 125 | - ]); |
|
| 125 | + ] ); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
@@ -137,24 +137,24 @@ discard block |
||
| 137 | 137 | 'sync' => __( 'Sync Reviews', 'site-reviews' ), |
| 138 | 138 | 'console' => __( 'Console', 'site-reviews' ), |
| 139 | 139 | 'system-info' => __( 'System Info', 'site-reviews' ), |
| 140 | - ]); |
|
| 141 | - if( !apply_filters( 'site-reviews/addon/sync/enable', false )) { |
|
| 142 | - unset( $tabs['sync'] ); |
|
| 140 | + ] ); |
|
| 141 | + if( !apply_filters( 'site-reviews/addon/sync/enable', false ) ) { |
|
| 142 | + unset($tabs['sync']); |
|
| 143 | 143 | } |
| 144 | 144 | $this->renderPage( 'tools', [ |
| 145 | 145 | 'data' => [ |
| 146 | 146 | 'context' => [ |
| 147 | 147 | 'base_url' => admin_url( 'edit.php?post_type='.Application::POST_TYPE ), |
| 148 | - 'console' => strval( glsr( Console::class )), |
|
| 148 | + 'console' => strval( glsr( Console::class ) ), |
|
| 149 | 149 | 'id' => Application::ID, |
| 150 | - 'system' => strval( glsr( System::class )), |
|
| 150 | + 'system' => strval( glsr( System::class ) ), |
|
| 151 | 151 | ], |
| 152 | 152 | 'services' => apply_filters( 'site-reviews/addon/sync/services', [] ), |
| 153 | 153 | ], |
| 154 | 154 | 'notices' => $this->getNotices(), |
| 155 | 155 | 'tabs' => $tabs, |
| 156 | 156 | 'template' => glsr( Template::class ), |
| 157 | - ]); |
|
| 157 | + ] ); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | { |
| 176 | 176 | return glsr( Builder::class )->div( glsr( Notice::class )->get(), [ |
| 177 | 177 | 'id' => 'glsr-notices', |
| 178 | - ]); |
|
| 178 | + ] ); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -22,7 +22,9 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | global $menu, $typenow; |
| 24 | 24 | foreach( $menu as $key => $value ) { |
| 25 | - if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
| 25 | + if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE ) { |
|
| 26 | + continue; |
|
| 27 | + } |
|
| 26 | 28 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 27 | 29 | $pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [ |
| 28 | 30 | 'class' => 'pending-count', |
@@ -53,7 +55,9 @@ discard block |
||
| 53 | 55 | foreach( $pages as $slug => $title ) { |
| 54 | 56 | $method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' ); |
| 55 | 57 | $callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug ); |
| 56 | - if( !is_callable( $callback ))continue; |
|
| 58 | + if( !is_callable( $callback )) { |
|
| 59 | + continue; |
|
| 60 | + } |
|
| 57 | 61 | add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, glsr()->constant( 'CAPABILITY' ), $slug, $callback ); |
| 58 | 62 | } |
| 59 | 63 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $translations = $this->translations(); |
| 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 | $potFile = glsr()->path( glsr()->languages.'/'.Application::ID.'.pot' ); |
| 48 | 48 | $entries = $this->extractEntriesFromPotFile( $potFile ); |
| 49 | 49 | $entries = apply_filters( 'site-reviews/translation/entries', $entries ); |
@@ -88,13 +88,13 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | public function filter( $filterWith = null, $entries = null, $intersect = true ) |
| 90 | 90 | { |
| 91 | - if( !is_array( $entries )) { |
|
| 91 | + if( !is_array( $entries ) ) { |
|
| 92 | 92 | $entries = $this->results; |
| 93 | 93 | } |
| 94 | - if( !is_array( $filterWith )) { |
|
| 94 | + if( !is_array( $filterWith ) ) { |
|
| 95 | 95 | $filterWith = $this->translations(); |
| 96 | 96 | } |
| 97 | - $keys = array_flip( array_column( $filterWith, 'id' )); |
|
| 97 | + $keys = array_flip( array_column( $filterWith, 'id' ) ); |
|
| 98 | 98 | $this->results = $intersect |
| 99 | 99 | ? array_intersect_key( $entries, $keys ) |
| 100 | 100 | : array_diff_key( $entries, $keys ); |
@@ -108,17 +108,17 @@ discard block |
||
| 108 | 108 | public function render( $template, array $entry ) |
| 109 | 109 | { |
| 110 | 110 | $data = array_combine( |
| 111 | - array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry )), |
|
| 111 | + array_map( function( $key ) { return 'data.'.$key; }, array_keys( $entry ) ), |
|
| 112 | 112 | $entry |
| 113 | 113 | ); |
| 114 | 114 | $data['data.class'] = $data['data.error'] = ''; |
| 115 | - if( array_search( $entry['s1'], array_column( $this->entries(), 'msgid' )) === false ) { |
|
| 115 | + if( array_search( $entry['s1'], array_column( $this->entries(), 'msgid' ) ) === false ) { |
|
| 116 | 116 | $data['data.class'] = 'is-invalid'; |
| 117 | 117 | $data['data.error'] = __( 'This custom translation is no longer valid as the original text has been changed or removed.', 'site-reviews' ); |
| 118 | 118 | } |
| 119 | 119 | return glsr( Template::class )->build( 'partials/translations/'.$template, [ |
| 120 | 120 | 'context' => $data, |
| 121 | - ]); |
|
| 121 | + ] ); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -150,13 +150,13 @@ discard block |
||
| 150 | 150 | 'p1' => $this->getEntryString( $entry, 'msgid_plural' ), |
| 151 | 151 | 's1' => $this->getEntryString( $entry, 'msgid' ), |
| 152 | 152 | ]; |
| 153 | - $text = !empty( $data['p1'] ) |
|
| 153 | + $text = !empty($data['p1']) |
|
| 154 | 154 | ? sprintf( '%s | %s', $data['s1'], $data['p1'] ) |
| 155 | 155 | : $data['s1']; |
| 156 | 156 | $rendered .= $this->render( 'result', [ |
| 157 | - 'entry' => json_encode( $data, JSON_HEX_APOS|JSON_HEX_QUOT|JSON_HEX_TAG|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE ), |
|
| 157 | + 'entry' => json_encode( $data, JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_TAG | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE ), |
|
| 158 | 158 | 'text' => wp_strip_all_tags( $text ), |
| 159 | - ]); |
|
| 159 | + ] ); |
|
| 160 | 160 | } |
| 161 | 161 | if( $resetAfterRender ) { |
| 162 | 162 | $this->reset(); |
@@ -189,12 +189,12 @@ discard block |
||
| 189 | 189 | public function search( $needle = '' ) |
| 190 | 190 | { |
| 191 | 191 | $this->reset(); |
| 192 | - $needle = trim( strtolower( $needle )); |
|
| 192 | + $needle = trim( strtolower( $needle ) ); |
|
| 193 | 193 | foreach( $this->entries() as $key => $entry ) { |
| 194 | - $single = strtolower( $this->getEntryString( $entry, 'msgid' )); |
|
| 195 | - $plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' )); |
|
| 194 | + $single = strtolower( $this->getEntryString( $entry, 'msgid' ) ); |
|
| 195 | + $plural = strtolower( $this->getEntryString( $entry, 'msgid_plural' ) ); |
|
| 196 | 196 | if( strlen( $needle ) < static::SEARCH_THRESHOLD ) { |
| 197 | - if( in_array( $needle, [$single, $plural] )) { |
|
| 197 | + if( in_array( $needle, [$single, $plural] ) ) { |
|
| 198 | 198 | $this->results[$key] = $entry; |
| 199 | 199 | } |
| 200 | 200 | } |
@@ -212,10 +212,10 @@ discard block |
||
| 212 | 212 | public function translations() |
| 213 | 213 | { |
| 214 | 214 | static $translations; |
| 215 | - if( empty( $translations )) { |
|
| 215 | + if( empty($translations) ) { |
|
| 216 | 216 | $settings = glsr( OptionManager::class )->get( 'settings' ); |
| 217 | - $translations = isset( $settings['strings'] ) |
|
| 218 | - ? $this->normalizeSettings( (array) $settings['strings'] ) |
|
| 217 | + $translations = isset($settings['strings']) |
|
| 218 | + ? $this->normalizeSettings( (array)$settings['strings'] ) |
|
| 219 | 219 | : []; |
| 220 | 220 | } |
| 221 | 221 | return $translations; |
@@ -227,8 +227,8 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | protected function getEntryString( array $entry, $key ) |
| 229 | 229 | { |
| 230 | - return isset( $entry[$key] ) |
|
| 231 | - ? implode( '', (array) $entry[$key] ) |
|
| 230 | + return isset($entry[$key]) |
|
| 231 | + ? implode( '', (array)$entry[$key] ) |
|
| 232 | 232 | : ''; |
| 233 | 233 | } |
| 234 | 234 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | $keys = [ |
| 241 | 241 | 'msgctxt', 'msgid', 'msgid_plural', 'msgstr', 'msgstr[0]', 'msgstr[1]', |
| 242 | 242 | ]; |
| 243 | - array_walk( $entries, function( &$entry ) use( $keys ) { |
|
| 243 | + array_walk( $entries, function( &$entry ) use($keys) { |
|
| 244 | 244 | foreach( $keys as $key ) { |
| 245 | 245 | $entry = $this->normalizeEntryString( $entry, $key ); |
| 246 | 246 | } |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | */ |
| 255 | 255 | protected function normalizeEntryString( array $entry, $key ) |
| 256 | 256 | { |
| 257 | - if( isset( $entry[$key] )) { |
|
| 257 | + if( isset($entry[$key]) ) { |
|
| 258 | 258 | $entry[$key] = $this->getEntryString( $entry, $key ); |
| 259 | 259 | } |
| 260 | 260 | return $entry; |
@@ -268,11 +268,11 @@ discard block |
||
| 268 | 268 | $defaultString = array_fill_keys( ['id', 's1', 's2', 'p1', 'p2'], '' ); |
| 269 | 269 | $strings = array_filter( $strings, 'is_array' ); |
| 270 | 270 | foreach( $strings as &$string ) { |
| 271 | - $string['type'] = isset( $string['p1'] ) ? 'plural' : 'single'; |
|
| 271 | + $string['type'] = isset($string['p1']) ? 'plural' : 'single'; |
|
| 272 | 272 | $string = wp_parse_args( $string, $defaultString ); |
| 273 | 273 | } |
| 274 | 274 | return array_filter( $strings, function( $string ) { |
| 275 | - return !empty( $string['id'] ); |
|
| 275 | + return !empty($string['id']); |
|
| 276 | 276 | }); |
| 277 | 277 | } |
| 278 | 278 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | { |
| 19 | 19 | return $this->translate( $translation, $domain, [ |
| 20 | 20 | 'single' => $text, |
| 21 | - ]); |
|
| 21 | + ] ); |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | return $this->translate( $translation, $domain, [ |
| 34 | 34 | 'context' => $context, |
| 35 | 35 | 'single' => $text, |
| 36 | - ]); |
|
| 36 | + ] ); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | 'number' => $number, |
| 51 | 51 | 'plural' => $plural, |
| 52 | 52 | 'single' => $single, |
| 53 | - ]); |
|
| 53 | + ] ); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | 'number' => $number, |
| 70 | 70 | 'plural' => $plural, |
| 71 | 71 | 'single' => $single, |
| 72 | - ]); |
|
| 72 | + ] ); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -80,12 +80,12 @@ discard block |
||
| 80 | 80 | public function translate( $original, $domain, array $args ) |
| 81 | 81 | { |
| 82 | 82 | $domains = apply_filters( 'site-reviews/translator/domains', [Application::ID] ); |
| 83 | - if( !in_array( $domain, $domains )) { |
|
| 83 | + if( !in_array( $domain, $domains ) ) { |
|
| 84 | 84 | return $original; |
| 85 | 85 | } |
| 86 | 86 | $args = $this->normalizeTranslationArgs( $args ); |
| 87 | 87 | $strings = $this->getTranslationStrings( $args['single'], $args['plural'] ); |
| 88 | - if( empty( $strings )) { |
|
| 88 | + if( empty($strings) ) { |
|
| 89 | 89 | return $original; |
| 90 | 90 | } |
| 91 | 91 | $string = current( $strings ); |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | protected function getTranslationStrings( $single, $plural ) |
| 103 | 103 | { |
| 104 | - return array_filter( glsr( Translation::class )->translations(), function( $string ) use( $single, $plural ) { |
|
| 104 | + return array_filter( glsr( Translation::class )->translations(), function( $string ) use($single, $plural) { |
|
| 105 | 105 | return $string['s1'] == html_entity_decode( $single, ENT_COMPAT, 'UTF-8' ) |
| 106 | 106 | && $string['p1'] == html_entity_decode( $plural, ENT_COMPAT, 'UTF-8' ); |
| 107 | 107 | }); |
@@ -127,10 +127,10 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | protected function translatePlural( $domain, array $string, array $args ) |
| 129 | 129 | { |
| 130 | - if( !empty( $string['s2'] )) { |
|
| 130 | + if( !empty($string['s2']) ) { |
|
| 131 | 131 | $args['single'] = $string['s2']; |
| 132 | 132 | } |
| 133 | - if( !empty( $string['p2'] )) { |
|
| 133 | + if( !empty($string['p2']) ) { |
|
| 134 | 134 | $args['plural'] = $string['p2']; |
| 135 | 135 | } |
| 136 | 136 | return get_translations_for_domain( $domain )->translate_plural( |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | */ |
| 148 | 148 | protected function translateSingle( $domain, array $string, array $args ) |
| 149 | 149 | { |
| 150 | - if( !empty( $string['s2'] )) { |
|
| 150 | + if( !empty($string['s2']) ) { |
|
| 151 | 151 | $args['single'] = $string['s2']; |
| 152 | 152 | } |
| 153 | 153 | return get_translations_for_domain( $domain )->translate( |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | public function build() |
| 23 | 23 | { |
| 24 | - glsr_log()->error( 'Build method is not implemented for '.get_class( $this )); |
|
| 24 | + glsr_log()->error( 'Build method is not implemented for '.get_class( $this ) ); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |