@@ -19,8 +19,8 @@ discard block |
||
| 19 | 19 | 'glsr_get_review', 'glsr_get_reviews', |
| 20 | 20 | 'glsr_log', |
| 21 | 21 | ); |
| 22 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
| 23 | - add_filter( $hook, function() use( $hook, $args ) { |
|
| 22 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook ) )return; |
|
| 23 | + add_filter( $hook, function() use($hook, $args) { |
|
| 24 | 24 | array_shift( $args ); // remove the fallback value |
| 25 | 25 | return call_user_func_array( $hook, $args ); |
| 26 | 26 | }); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | function glsr( $alias = null ) { |
| 33 | 33 | $app = \GeminiLabs\SiteReviews\Application::load(); |
| 34 | - return !empty( $alias ) |
|
| 34 | + return !empty($alias) |
|
| 35 | 35 | ? $app->make( $alias ) |
| 36 | 36 | : $app; |
| 37 | 37 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $result = array(); |
| 46 | 46 | foreach( $array as $subarray ) { |
| 47 | 47 | $subarray = (array)$subarray; |
| 48 | - if( !isset( $subarray[$column] ))continue; |
|
| 48 | + if( !isset($subarray[$column]) )continue; |
|
| 49 | 49 | $result[] = $subarray[$column]; |
| 50 | 50 | } |
| 51 | 51 | return $result; |
@@ -56,19 +56,19 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | function glsr_calculate_ratings() { |
| 58 | 58 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
| 59 | - glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
| 59 | + glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | 63 | * @return null|\GeminiLabs\SiteReviews\Review |
| 64 | 64 | */ |
| 65 | 65 | function glsr_create_review( $reviewValues = array() ) { |
| 66 | - if( !is_array( $reviewValues )) { |
|
| 66 | + if( !is_array( $reviewValues ) ) { |
|
| 67 | 67 | $reviewValues = array(); |
| 68 | 68 | } |
| 69 | 69 | $review = new \GeminiLabs\SiteReviews\Commands\CreateReview( $reviewValues ); |
| 70 | 70 | $result = glsr( 'Database\ReviewManager' )->create( $review ); |
| 71 | - return !empty( $result ) |
|
| 71 | + return !empty($result) |
|
| 72 | 72 | ? $result |
| 73 | 73 | : null; |
| 74 | 74 | } |
@@ -77,10 +77,10 @@ discard block |
||
| 77 | 77 | * @return \WP_Screen|object |
| 78 | 78 | */ |
| 79 | 79 | function glsr_current_screen() { |
| 80 | - if( function_exists( 'get_current_screen' )) { |
|
| 80 | + if( function_exists( 'get_current_screen' ) ) { |
|
| 81 | 81 | $screen = get_current_screen(); |
| 82 | 82 | } |
| 83 | - return empty( $screen ) |
|
| 83 | + return empty($screen) |
|
| 84 | 84 | ? (object)array_fill_keys( ['base', 'id', 'post_type'], null ) |
| 85 | 85 | : $screen; |
| 86 | 86 | } |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | * @return \GeminiLabs\SiteReviews\Review|void |
| 127 | 127 | */ |
| 128 | 128 | function glsr_get_review( $post_id ) { |
| 129 | - if( !is_numeric( $post_id ))return; |
|
| 129 | + if( !is_numeric( $post_id ) )return; |
|
| 130 | 130 | $post = get_post( $post_id ); |
| 131 | 131 | if( $post instanceof WP_Post ) { |
| 132 | 132 | return glsr( 'Database\ReviewManager' )->single( $post ); |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | * @todo document change of $reviews->reviews to $reviews->results |
| 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 | } |
@@ -35,15 +35,15 @@ discard block |
||
| 35 | 35 | public function build( array $args = [] ) |
| 36 | 36 | { |
| 37 | 37 | $this->args = $args; |
| 38 | - $counts = glsr( CountsManager::class )->get([ |
|
| 38 | + $counts = glsr( CountsManager::class )->get( [ |
|
| 39 | 39 | 'post_ids' => glsr( Helper::class )->convertStringToArray( $args['assigned_to'] ), |
| 40 | 40 | 'term_ids' => glsr( ReviewManager::class )->normalizeTermIds( $args['category'] ), |
| 41 | 41 | 'type' => $args['type'], |
| 42 | - ]); |
|
| 42 | + ] ); |
|
| 43 | 43 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
| 44 | 44 | 'min' => $args['rating'], |
| 45 | - ]); |
|
| 46 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
| 45 | + ] ); |
|
| 46 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return; |
|
| 47 | 47 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
| 48 | 48 | $this->generateSchema(); |
| 49 | 49 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | 'stars' => $this->buildStars(), |
| 57 | 57 | 'text' => $this->buildText(), |
| 58 | 58 | ], |
| 59 | - ]); |
|
| 59 | + ] ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
@@ -64,9 +64,9 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | protected function buildPercentage() |
| 66 | 66 | { |
| 67 | - if( $this->isHidden( 'bars' ))return; |
|
| 68 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
|
| 69 | - $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
|
| 67 | + if( $this->isHidden( 'bars' ) )return; |
|
| 68 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) ); |
|
| 69 | + $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use($percentages) { |
|
| 70 | 70 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
| 71 | 71 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
| 72 | 72 | $count = apply_filters( 'site-reviews/summary/counts', |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | $percent = $this->buildPercentageCount( $count ); |
| 77 | 77 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
| 78 | 78 | 'class' => 'glsr-bar', |
| 79 | - ]); |
|
| 79 | + ] ); |
|
| 80 | 80 | }); |
| 81 | 81 | return $this->wrap( 'percentage', $bars ); |
| 82 | 82 | } |
@@ -87,10 +87,10 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | protected function buildPercentageBackground( $percent ) |
| 89 | 89 | { |
| 90 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
| 90 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
| 91 | 91 | 'class' => 'glsr-bar-background-percent', |
| 92 | 92 | 'style' => 'width:'.$percent, |
| 93 | - ]); |
|
| 93 | + ] ); |
|
| 94 | 94 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
| 95 | 95 | } |
| 96 | 96 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | protected function buildRating() |
| 119 | 119 | { |
| 120 | - if( $this->isHidden( 'rating' ))return; |
|
| 120 | + if( $this->isHidden( 'rating' ) )return; |
|
| 121 | 121 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
| 122 | 122 | } |
| 123 | 123 | |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | protected function buildStars() |
| 128 | 128 | { |
| 129 | - if( $this->isHidden( 'stars' ))return; |
|
| 129 | + if( $this->isHidden( 'stars' ) )return; |
|
| 130 | 130 | $stars = glsr( Partial::class )->build( 'star-rating', ['rating' => $this->averageRating] ); |
| 131 | 131 | return $this->wrap( 'stars', $stars ); |
| 132 | 132 | } |
@@ -136,9 +136,9 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | protected function buildText() |
| 138 | 138 | { |
| 139 | - if( $this->isHidden( 'summary' ))return; |
|
| 140 | - $count = intval( array_sum( $this->ratingCounts )); |
|
| 141 | - if( empty( $this->args['text'] )) { |
|
| 139 | + if( $this->isHidden( 'summary' ) )return; |
|
| 140 | + $count = intval( array_sum( $this->ratingCounts ) ); |
|
| 141 | + if( empty($this->args['text']) ) { |
|
| 142 | 142 | // @todo document this change |
| 143 | 143 | $this->args['text'] = _nx( |
| 144 | 144 | '{rating} out of {max} stars (based on {num} review)', |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | ); |
| 150 | 150 | } |
| 151 | 151 | $summary = str_replace( |
| 152 | - ['{rating}','{max}', '{num}'], |
|
| 152 | + ['{rating}', '{max}', '{num}'], |
|
| 153 | 153 | [$this->averageRating, Rating::MAX_RATING, $count], |
| 154 | 154 | $this->args['text'] |
| 155 | 155 | ); |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | protected function generateSchema() |
| 163 | 163 | { |
| 164 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 164 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 165 | 165 | glsr( Schema::class )->store( |
| 166 | 166 | glsr( Schema::class )->buildSummary( $this->args ) |
| 167 | 167 | ); |
@@ -193,6 +193,6 @@ discard block |
||
| 193 | 193 | { |
| 194 | 194 | return glsr( Builder::class )->div( $value, [ |
| 195 | 195 | 'class' => 'glsr-summary-'.$key, |
| 196 | - ]); |
|
| 196 | + ] ); |
|
| 197 | 197 | } |
| 198 | 198 | } |
@@ -38,10 +38,10 @@ discard block |
||
| 38 | 38 | if( $review->review_type != 'local' )continue; |
| 39 | 39 | $reviews[] = $this->buildReview( $review ); |
| 40 | 40 | } |
| 41 | - if( !empty( $reviews )) { |
|
| 41 | + if( !empty($reviews) ) { |
|
| 42 | 42 | array_walk( $reviews, function( &$review ) { |
| 43 | - unset( $review['@context'] ); |
|
| 44 | - unset( $review['itemReviewed'] ); |
|
| 43 | + unset($review['@context']); |
|
| 44 | + unset($review['itemReviewed']); |
|
| 45 | 45 | }); |
| 46 | 46 | $schema['review'] = $reviews; |
| 47 | 47 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function buildSummary( $args = null ) |
| 56 | 56 | { |
| 57 | - if( is_array( $args )) { |
|
| 57 | + if( is_array( $args ) ) { |
|
| 58 | 58 | $this->args = $args; |
| 59 | 59 | } |
| 60 | 60 | $buildSummary = glsr( Helper::class )->buildMethodName( $this->getSchemaOptionValue( 'type' ), 'buildSummaryFor' ); |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | $schema = method_exists( $this, $buildSummary ) |
| 63 | 63 | ? $this->$buildSummary() |
| 64 | 64 | : $this->buildSummaryForCustom(); |
| 65 | - if( !empty( $count )) { |
|
| 65 | + if( !empty($count) ) { |
|
| 66 | 66 | $schema->aggregateRating( |
| 67 | 67 | $this->getSchemaType( 'AggregateRating' ) |
| 68 | 68 | ->ratingValue( $this->getRatingValue() ) |
@@ -80,11 +80,11 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | public function render() |
| 82 | 82 | { |
| 83 | - if( empty( glsr()->schemas ))return; |
|
| 83 | + if( empty(glsr()->schemas) )return; |
|
| 84 | 84 | printf( '<script type="application/ld+json">%s</script>', json_encode( |
| 85 | 85 | apply_filters( 'site-reviews/schema/all', glsr()->schemas ), |
| 86 | 86 | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
| 87 | - )); |
|
| 87 | + ) ); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /** |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | { |
| 95 | 95 | $schemas = glsr()->schemas; |
| 96 | 96 | $schemas[] = $schema; |
| 97 | - glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ))); |
|
| 97 | + glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ) ) ); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
@@ -104,16 +104,16 @@ discard block |
||
| 104 | 104 | protected function buildReview( $review ) |
| 105 | 105 | { |
| 106 | 106 | $schema = $this->getSchemaType( 'Review' ) |
| 107 | - ->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use( $review ) { |
|
| 107 | + ->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use($review) { |
|
| 108 | 108 | $schema->name( $review->title ); |
| 109 | 109 | }) |
| 110 | - ->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use( $review ) { |
|
| 110 | + ->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use($review) { |
|
| 111 | 111 | $schema->reviewBody( $review->content ); |
| 112 | 112 | }) |
| 113 | - ->datePublished(( new DateTime( $review->date ))) |
|
| 114 | - ->author( $this->getSchemaType( 'Person' )->name( $review->author )) |
|
| 115 | - ->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ))); |
|
| 116 | - if( !empty( $review->rating )) { |
|
| 113 | + ->datePublished( (new DateTime( $review->date )) ) |
|
| 114 | + ->author( $this->getSchemaType( 'Person' )->name( $review->author ) ) |
|
| 115 | + ->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ) ) ); |
|
| 116 | + if( !empty($review->rating) ) { |
|
| 117 | 117 | $schema->reviewRating( |
| 118 | 118 | $this->getSchemaType( 'Rating' ) |
| 119 | 119 | ->ratingValue( $review->rating ) |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | foreach( $values as $value ) { |
| 134 | 134 | $option = $this->getSchemaOptionValue( $value ); |
| 135 | - if( empty( $option ))continue; |
|
| 135 | + if( empty($option) )continue; |
|
| 136 | 136 | $schema->$value( $option ); |
| 137 | 137 | } |
| 138 | 138 | return $schema; |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | { |
| 146 | 146 | return $this->buildSchemaValues( $this->getSchemaType(), [ |
| 147 | 147 | 'description', 'image', 'name', 'url', |
| 148 | - ]); |
|
| 148 | + ] ); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | { |
| 156 | 156 | return $this->buildSchemaValues( $this->buildSummaryForCustom(), [ |
| 157 | 157 | 'address', 'priceRange', 'telephone', |
| 158 | - ]); |
|
| 158 | + ] ); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -165,10 +165,10 @@ discard block |
||
| 165 | 165 | { |
| 166 | 166 | $offers = $this->buildSchemaValues( $this->getSchemaType( 'AggregateOffer' ), [ |
| 167 | 167 | 'highPrice', 'lowPrice', 'priceCurrency', |
| 168 | - ]); |
|
| 168 | + ] ); |
|
| 169 | 169 | return $this->buildSummaryForCustom() |
| 170 | 170 | ->offers( $offers ) |
| 171 | - ->setProperty( '@id', $this->getSchemaOptionValue( 'url' )); |
|
| 171 | + ->setProperty( '@id', $this->getSchemaOptionValue( 'url' ) ); |
|
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
@@ -176,14 +176,14 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | protected function getRatingCounts() |
| 178 | 178 | { |
| 179 | - if( !isset( $this->ratingCounts )) { |
|
| 180 | - $counts = glsr( CountsManager::class )->get([ |
|
| 179 | + if( !isset($this->ratingCounts) ) { |
|
| 180 | + $counts = glsr( CountsManager::class )->get( [ |
|
| 181 | 181 | 'post_ids' => glsr( Helper::class )->convertStringToArray( $this->args['assigned_to'] ), |
| 182 | 182 | 'term_ids' => glsr( ReviewManager::class )->normalizeTermIds( $this->args['category'] ), |
| 183 | - ]); |
|
| 183 | + ] ); |
|
| 184 | 184 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
| 185 | 185 | 'min' => $this->args['rating'], |
| 186 | - ]); |
|
| 186 | + ] ); |
|
| 187 | 187 | } |
| 188 | 188 | return $this->ratingCounts; |
| 189 | 189 | } |
@@ -204,14 +204,14 @@ discard block |
||
| 204 | 204 | protected function getSchemaOption( $option, $fallback ) |
| 205 | 205 | { |
| 206 | 206 | $option = strtolower( $option ); |
| 207 | - if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ))) { |
|
| 207 | + if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ) ) ) { |
|
| 208 | 208 | return $schemaOption; |
| 209 | 209 | } |
| 210 | 210 | $setting = glsr( OptionManager::class )->get( 'settings.schema.'.$option ); |
| 211 | - if( is_array( $setting )) { |
|
| 211 | + if( is_array( $setting ) ) { |
|
| 212 | 212 | return $this->getSchemaOptionDefault( $setting, $fallback ); |
| 213 | 213 | } |
| 214 | - return !empty( $setting ) |
|
| 214 | + return !empty($setting) |
|
| 215 | 215 | ? $setting |
| 216 | 216 | : $fallback; |
| 217 | 217 | } |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | $setting = wp_parse_args( $setting, [ |
| 226 | 226 | 'custom' => '', |
| 227 | 227 | 'default' => $fallback, |
| 228 | - ]); |
|
| 228 | + ] ); |
|
| 229 | 229 | return $setting['default'] != 'custom' |
| 230 | 230 | ? $setting['default'] |
| 231 | 231 | : $setting['custom']; |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | } |
| 245 | 245 | if( !is_single() && !is_page() )return; |
| 246 | 246 | $method = glsr( Helper::class )->buildMethodName( $option, 'getThing' ); |
| 247 | - if( method_exists( $this, $method )) { |
|
| 247 | + if( method_exists( $this, $method ) ) { |
|
| 248 | 248 | return $this->$method(); |
| 249 | 249 | } |
| 250 | 250 | } |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | */ |
| 256 | 256 | protected function getSchemaType( $type = null ) |
| 257 | 257 | { |
| 258 | - if( !is_string( $type )) { |
|
| 258 | + if( !is_string( $type ) ) { |
|
| 259 | 259 | $type = $this->getSchemaOption( 'type', 'LocalBusiness' ); |
| 260 | 260 | } |
| 261 | 261 | $className = glsr( Helper::class )->buildClassName( $type, 'Modules\Schema' ); |
@@ -270,11 +270,11 @@ discard block |
||
| 270 | 270 | protected function getThingDescription() |
| 271 | 271 | { |
| 272 | 272 | $post = get_post(); |
| 273 | - if( !( $post instanceof WP_Post )) { |
|
| 273 | + if( !($post instanceof WP_Post) ) { |
|
| 274 | 274 | return ''; |
| 275 | 275 | } |
| 276 | - $text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt )); |
|
| 277 | - return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 )); |
|
| 276 | + $text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt ) ); |
|
| 277 | + return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 ) ); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | /** |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | public function enqueueAssets() |
| 26 | 26 | { |
| 27 | - $command = new EnqueueAdminAssets([ |
|
| 27 | + $command = new EnqueueAdminAssets( [ |
|
| 28 | 28 | 'pointers' => [[ |
| 29 | 29 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
| 30 | 30 | 'id' => 'glsr-pointer-pinned', |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | 'target' => '#misc-pub-pinned', |
| 37 | 37 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
| 38 | 38 | ]], |
| 39 | - ]); |
|
| 39 | + ] ); |
|
| 40 | 40 | $this->execute( $command ); |
| 41 | 41 | } |
| 42 | 42 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | { |
| 49 | 49 | $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
| 50 | 50 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
| 51 | - ]); |
|
| 51 | + ] ); |
|
| 52 | 52 | return $links; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -59,19 +59,19 @@ discard block |
||
| 59 | 59 | public function filterDashboardGlanceItems( array $items ) |
| 60 | 60 | { |
| 61 | 61 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 62 | - if( empty( $postCount->publish )) { |
|
| 62 | + if( empty($postCount->publish) ) { |
|
| 63 | 63 | return $items; |
| 64 | 64 | } |
| 65 | 65 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
| 66 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
| 66 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
| 67 | 67 | $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts ) |
| 68 | 68 | ? glsr( Builder::class )->a( $text, [ |
| 69 | 69 | 'class' => 'glsr-review-count', |
| 70 | 70 | 'href' => 'edit.php?post_type='.Application::POST_TYPE, |
| 71 | - ]) |
|
| 71 | + ] ) |
|
| 72 | 72 | : glsr( Builder::class )->span( $text, [ |
| 73 | 73 | 'class' => 'glsr-review-count', |
| 74 | - ]); |
|
| 74 | + ] ); |
|
| 75 | 75 | return $items; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | public function filterTinymcePlugins( array $plugins ) |
| 83 | 83 | { |
| 84 | - if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) { |
|
| 84 | + if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) { |
|
| 85 | 85 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
| 86 | 86 | } |
| 87 | 87 | return $plugins; |
@@ -93,11 +93,11 @@ discard block |
||
| 93 | 93 | */ |
| 94 | 94 | public function registerTinymcePopups() |
| 95 | 95 | { |
| 96 | - $command = new RegisterTinymcePopups([ |
|
| 96 | + $command = new RegisterTinymcePopups( [ |
|
| 97 | 97 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
| 98 | 98 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
| 99 | 99 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
| 100 | - ]); |
|
| 100 | + ] ); |
|
| 101 | 101 | $this->execute( $command ); |
| 102 | 102 | } |
| 103 | 103 | |
@@ -109,15 +109,15 @@ discard block |
||
| 109 | 109 | public function renderTinymceButton( $editorId ) |
| 110 | 110 | { |
| 111 | 111 | $allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId ); |
| 112 | - if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return; |
|
| 112 | + if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ) )return; |
|
| 113 | 113 | $shortcodes = []; |
| 114 | 114 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
| 115 | 115 | $shortcodes[$shortcode] = $values; |
| 116 | 116 | } |
| 117 | - if( empty( $shortcodes ))return; |
|
| 117 | + if( empty($shortcodes) )return; |
|
| 118 | 118 | glsr()->render( 'partials/editor/tinymce', [ |
| 119 | 119 | 'shortcodes' => $shortcodes, |
| 120 | - ]); |
|
| 120 | + ] ); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | public function routerClearConsole() |
| 127 | 127 | { |
| 128 | 128 | glsr( Console::class )->clear(); |
| 129 | - glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' )); |
|
| 129 | + glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) ); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | */ |
| 135 | 135 | public function routerFetchConsole() |
| 136 | 136 | { |
| 137 | - glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' )); |
|
| 137 | + glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) ); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -153,13 +153,13 @@ discard block |
||
| 153 | 153 | } |
| 154 | 154 | $postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' ); |
| 155 | 155 | foreach( $postIds as $postId ) { |
| 156 | - $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId )); |
|
| 156 | + $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) ); |
|
| 157 | 157 | } |
| 158 | 158 | $countManager->setCounts( $countManager->buildCounts() ); |
| 159 | 159 | if( $showNotice ) { |
| 160 | - glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
| 160 | + glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
| 161 | 161 | } |
| 162 | - glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' )); |
|
| 162 | + glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) ); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -193,17 +193,17 @@ discard block |
||
| 193 | 193 | { |
| 194 | 194 | $file = $_FILES['import-file']; |
| 195 | 195 | if( $file['error'] !== UPLOAD_ERR_OK ) { |
| 196 | - return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] )); |
|
| 196 | + return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) ); |
|
| 197 | 197 | } |
| 198 | - if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) { |
|
| 199 | - return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' )); |
|
| 198 | + if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) { |
|
| 199 | + return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) ); |
|
| 200 | 200 | } |
| 201 | 201 | $settings = json_decode( file_get_contents( $file['tmp_name'] ), true ); |
| 202 | - if( empty( $settings )) { |
|
| 203 | - return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' )); |
|
| 202 | + if( empty($settings) ) { |
|
| 203 | + return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) ); |
|
| 204 | 204 | } |
| 205 | - glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings )); |
|
| 206 | - glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' )); |
|
| 205 | + glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) ); |
|
| 206 | + glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) ); |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | /** |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ), |
| 222 | 222 | UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ), |
| 223 | 223 | ]; |
| 224 | - return !isset( $errors[$errorCode] ) |
|
| 224 | + return !isset($errors[$errorCode]) |
|
| 225 | 225 | ? __( 'Unknown upload error.', 'site-reviews' ) |
| 226 | 226 | : $errors[$errorCode]; |
| 227 | 227 | } |
@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public function deleteAllSessions( $sessionCookiePrefix ) |
| 25 | 25 | { |
| 26 | - return $this->db->query(" |
|
| 26 | + return $this->db->query( " |
|
| 27 | 27 | DELETE |
| 28 | 28 | FROM {$this->db->options} |
| 29 | 29 | WHERE option_name LIKE '{$sessionCookiePrefix}_%' |
| 30 | - "); |
|
| 30 | + " ); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -36,11 +36,11 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public function deleteExpiredSessions( $expiredSessions ) |
| 38 | 38 | { |
| 39 | - return $this->db->query(" |
|
| 39 | + return $this->db->query( " |
|
| 40 | 40 | DELETE |
| 41 | 41 | FROM {$this->db->options} |
| 42 | 42 | WHERE option_name IN ('{$expiredSessions}') |
| 43 | - "); |
|
| 43 | + " ); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /** |
@@ -49,14 +49,14 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function getReviewCountsFor( $metaKey ) |
| 51 | 51 | { |
| 52 | - return (array) $this->db->get_results(" |
|
| 52 | + return (array)$this->db->get_results( " |
|
| 53 | 53 | SELECT m.meta_value AS name, COUNT(*) num_posts |
| 54 | 54 | FROM {$this->db->posts} AS p |
| 55 | 55 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
| 56 | 56 | WHERE p.post_type = '{$this->postType}' |
| 57 | 57 | AND m.meta_key = '{$metaKey}' |
| 58 | 58 | GROUP BY name |
| 59 | - "); |
|
| 59 | + " ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
@@ -66,13 +66,13 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | public function getExpiredSessions( $sessionCookiePrefix, $limit ) |
| 68 | 68 | { |
| 69 | - return $this->db->get_results(" |
|
| 69 | + return $this->db->get_results( " |
|
| 70 | 70 | SELECT option_name AS name, option_value AS expiration |
| 71 | 71 | FROM {$this->db->options} |
| 72 | 72 | WHERE option_name LIKE '{$sessionCookiePrefix}_expires_%' |
| 73 | 73 | ORDER BY option_value ASC |
| 74 | 74 | LIMIT 0, {$limit} |
| 75 | - "); |
|
| 75 | + " ); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | public function getReviewCounts( $lastPostId = 0, $limit = 500 ) |
| 84 | 84 | { |
| 85 | - return $this->db->get_results(" |
|
| 85 | + return $this->db->get_results( " |
|
| 86 | 86 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
| 87 | 87 | FROM {$this->db->posts} AS p |
| 88 | 88 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -103,14 +103,14 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function getReviewPostId( $metaReviewId ) |
| 105 | 105 | { |
| 106 | - $postId = $this->db->get_var(" |
|
| 106 | + $postId = $this->db->get_var( " |
|
| 107 | 107 | SELECT p.ID |
| 108 | 108 | FROM {$this->db->posts} AS p |
| 109 | 109 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
| 110 | 110 | WHERE p.post_type = '{$this->postType}' |
| 111 | 111 | AND m.meta_key = 'review_id' |
| 112 | 112 | AND m.meta_value = '{$metaReviewId}' |
| 113 | - "); |
|
| 113 | + " ); |
|
| 114 | 114 | return intval( $postId ); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | */ |
| 121 | 121 | public function getReviewIdsByType( $reviewType ) |
| 122 | 122 | { |
| 123 | - $query = $this->db->get_col(" |
|
| 123 | + $query = $this->db->get_col( " |
|
| 124 | 124 | SELECT m1.meta_value AS review_id |
| 125 | 125 | FROM {$this->db->posts} AS p |
| 126 | 126 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -129,8 +129,8 @@ discard block |
||
| 129 | 129 | AND m1.meta_key = 'review_id' |
| 130 | 130 | AND m2.meta_key = 'review_type' |
| 131 | 131 | AND m2.meta_value = '{$reviewType}' |
| 132 | - "); |
|
| 133 | - return array_keys( array_flip( $query )); |
|
| 132 | + " ); |
|
| 133 | + return array_keys( array_flip( $query ) ); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | /** |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function getReviewPostCounts( $postId, $lastPostId = 0, $limit = 500 ) |
| 143 | 143 | { |
| 144 | - return $this->db->get_results(" |
|
| 144 | + return $this->db->get_results( " |
|
| 145 | 145 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
| 146 | 146 | FROM {$this->db->posts} AS p |
| 147 | 147 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -167,9 +167,9 @@ discard block |
||
| 167 | 167 | public function getReviewRatingsFromIds( array $postIds, $greaterThanId = 0, $limit = 100 ) |
| 168 | 168 | { |
| 169 | 169 | sort( $postIds ); |
| 170 | - $postIds = array_slice( $postIds, intval( array_search( $greaterThanId, $postIds )), $limit ); |
|
| 170 | + $postIds = array_slice( $postIds, intval( array_search( $greaterThanId, $postIds ) ), $limit ); |
|
| 171 | 171 | $postIds = implode( ',', $postIds ); |
| 172 | - return $this->db->get_results(" |
|
| 172 | + return $this->db->get_results( " |
|
| 173 | 173 | SELECT p.ID, m.meta_value AS rating |
| 174 | 174 | FROM {$this->db->posts} AS p |
| 175 | 175 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | $queryBuilder = glsr( QueryBuilder::class ); |
| 194 | 194 | $key = $queryBuilder->buildSqlOr( $key, "m.meta_key = '%s'" ); |
| 195 | 195 | $status = $queryBuilder->buildSqlOr( $status, "p.post_status = '%s'" ); |
| 196 | - return $this->db->get_col(" |
|
| 196 | + return $this->db->get_col( " |
|
| 197 | 197 | SELECT DISTINCT m.meta_value |
| 198 | 198 | FROM {$this->db->postmeta} m |
| 199 | 199 | LEFT JOIN {$this->db->posts} p ON p.ID = m.post_id |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | AND ({$key}) |
| 202 | 202 | AND ({$status}) |
| 203 | 203 | ORDER BY m.meta_value |
| 204 | - "); |
|
| 204 | + " ); |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | public function getReviewTermCounts( $termTaxonomyId, $lastPostId = 0, $limit = 500 ) |
| 214 | 214 | { |
| 215 | - return $this->db->get_results(" |
|
| 215 | + return $this->db->get_results( " |
|
| 216 | 216 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
| 217 | 217 | FROM {$this->db->posts} AS p |
| 218 | 218 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -35,12 +35,12 @@ discard block |
||
| 35 | 35 | 'post_type' => Application::POST_TYPE, |
| 36 | 36 | ]; |
| 37 | 37 | $postId = wp_insert_post( $postValues, true ); |
| 38 | - if( is_wp_error( $postId )) { |
|
| 38 | + if( is_wp_error( $postId ) ) { |
|
| 39 | 39 | glsr_log()->error( $postId->get_error_message() )->debug( $postValues ); |
| 40 | 40 | return false; |
| 41 | 41 | } |
| 42 | 42 | $this->setTerms( $postId, $command->category ); |
| 43 | - $review = $this->single( get_post( $postId )); |
|
| 43 | + $review = $this->single( get_post( $postId ) ); |
|
| 44 | 44 | do_action( 'site-reviews/review/created', $review, $command ); |
| 45 | 45 | return $review; |
| 46 | 46 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function delete( $metaReviewId ) |
| 53 | 53 | { |
| 54 | - if( $postId = $this->getPostId( $metaReviewId )) { |
|
| 54 | + if( $postId = $this->getPostId( $metaReviewId ) ) { |
|
| 55 | 55 | wp_delete_post( $postId, true ); |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $paged = glsr( QueryBuilder::class )->getPaged( |
| 74 | 74 | wp_validate_boolean( $args['pagination'] ) |
| 75 | 75 | ); |
| 76 | - $reviews = new WP_Query([ |
|
| 76 | + $reviews = new WP_Query( [ |
|
| 77 | 77 | 'meta_key' => 'pinned', |
| 78 | 78 | 'meta_query' => $metaQuery, |
| 79 | 79 | 'offset' => $args['offset'], |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | 'post_type' => Application::POST_TYPE, |
| 87 | 87 | 'posts_per_page' => $args['count'], |
| 88 | 88 | 'tax_query' => $taxQuery, |
| 89 | - ]); |
|
| 89 | + ] ); |
|
| 90 | 90 | return (object)[ |
| 91 | 91 | 'results' => array_map( [$this, 'single'], $reviews->posts ), |
| 92 | 92 | 'max_num_pages' => $reviews->max_num_pages, |
@@ -120,11 +120,11 @@ discard block |
||
| 120 | 120 | $terms = []; |
| 121 | 121 | $termIds = glsr( Helper::class )->convertStringToArray( $commaSeparatedTermIds ); |
| 122 | 122 | foreach( $termIds as $termId ) { |
| 123 | - if( is_numeric( $termId )) { |
|
| 123 | + if( is_numeric( $termId ) ) { |
|
| 124 | 124 | $termId = intval( $termId ); |
| 125 | 125 | } |
| 126 | 126 | $term = term_exists( $termId, Application::TAXONOMY ); |
| 127 | - if( !isset( $term['term_id'] ))continue; |
|
| 127 | + if( !isset($term['term_id']) )continue; |
|
| 128 | 128 | $terms[] = $term; |
| 129 | 129 | } |
| 130 | 130 | return $terms; |
@@ -138,13 +138,13 @@ discard block |
||
| 138 | 138 | { |
| 139 | 139 | if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
| 140 | 140 | delete_post_meta( $postId, '_edit_last' ); |
| 141 | - $result = wp_update_post([ |
|
| 141 | + $result = wp_update_post( [ |
|
| 142 | 142 | 'ID' => $postId, |
| 143 | 143 | 'post_content' => get_post_meta( $postId, 'content', true ), |
| 144 | 144 | 'post_date' => get_post_meta( $postId, 'date', true ), |
| 145 | 145 | 'post_title' => get_post_meta( $postId, 'title', true ), |
| 146 | - ]); |
|
| 147 | - if( is_wp_error( $result )) { |
|
| 146 | + ] ); |
|
| 147 | + if( is_wp_error( $result ) ) { |
|
| 148 | 148 | glsr_log()->error( $result->get_error_message() ); |
| 149 | 149 | } |
| 150 | 150 | } |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | protected function getNewPostStatus( array $review, $isBlacklisted ) |
| 167 | 167 | { |
| 168 | 168 | $requireApprovalOption = glsr( OptionManager::class )->get( 'settings.general.require.approval' ); |
| 169 | - return $review['review_type'] == 'local' && ( $requireApprovalOption == 'yes' || $isBlacklisted ) |
|
| 169 | + return $review['review_type'] == 'local' && ($requireApprovalOption == 'yes' || $isBlacklisted) |
|
| 170 | 170 | ? 'pending' |
| 171 | 171 | : 'publish'; |
| 172 | 172 | } |
@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | protected function setTerms( $postId, $termIds ) |
| 180 | 180 | { |
| 181 | 181 | $terms = $this->normalizeTermIds( $termIds ); |
| 182 | - if( empty( $terms ))return; |
|
| 182 | + if( empty($terms) )return; |
|
| 183 | 183 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
| 184 | - if( is_wp_error( $result )) { |
|
| 184 | + if( is_wp_error( $result ) ) { |
|
| 185 | 185 | glsr_log()->error( $result->get_error_message() ); |
| 186 | 186 | } |
| 187 | 187 | } |
@@ -26,15 +26,15 @@ discard block |
||
| 26 | 26 | { |
| 27 | 27 | sort( $termTaxonomyIds ); |
| 28 | 28 | sort( $oldTermTaxonomyIds ); |
| 29 | - if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ))return; |
|
| 30 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
| 29 | + if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ) )return; |
|
| 30 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
| 31 | 31 | $ignoredIds = array_intersect( $oldTermTaxonomyIds, $termTaxonomyIds ); |
| 32 | 32 | $decreasedIds = array_diff( $oldTermTaxonomyIds, $ignoredIds ); |
| 33 | 33 | $increasedIds = array_diff( $termTaxonomyIds, $ignoredIds ); |
| 34 | - if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' )) { |
|
| 34 | + if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' ) ) { |
|
| 35 | 35 | glsr( CountsManager::class )->decreaseTermCounts( $review ); |
| 36 | 36 | } |
| 37 | - if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' )) { |
|
| 37 | + if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' ) ) { |
|
| 38 | 38 | glsr( CountsManager::class )->increaseTermCounts( $review ); |
| 39 | 39 | } |
| 40 | 40 | } |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function onAfterChangeStatus( $newStatus, $oldStatus, WP_Post $post ) |
| 49 | 49 | { |
| 50 | - if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ))return; |
|
| 51 | - $review = glsr( ReviewManager::class )->single( get_post( $post->ID )); |
|
| 50 | + if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ) )return; |
|
| 51 | + $review = glsr( ReviewManager::class )->single( get_post( $post->ID ) ); |
|
| 52 | 52 | if( $post->post_status == 'publish' ) { |
| 53 | 53 | glsr( CountsManager::class )->increase( $review ); |
| 54 | 54 | } |
@@ -74,8 +74,8 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | public function onBeforeDelete( $postId ) |
| 76 | 76 | { |
| 77 | - if( !$this->isReviewPostId( $postId ))return; |
|
| 78 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
| 77 | + if( !$this->isReviewPostId( $postId ) )return; |
|
| 78 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
| 79 | 79 | glsr( CountsManager::class )->decrease( $review ); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | if( !$this->isReviewPostId( $postId ) |
| 93 | 93 | || !in_array( $metaKey, ['assigned_to', 'rating', 'review_type'] ) |
| 94 | 94 | )return; |
| 95 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
| 95 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
| 96 | 96 | if( $review->$metaKey == $metaValue )return; |
| 97 | 97 | $method = glsr( Helper::class )->buildMethodName( $metaKey, 'onBeforeChange' ); |
| 98 | 98 | call_user_func( [$this, $method], $review, $metaValue ); |
@@ -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( glsr_array_column( $counts, $args['type'] )); |
|
| 138 | + : $this->normalize( glsr_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 | - $terms = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids )); |
|
| 215 | + $terms = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids ) ); |
|
| 216 | 216 | foreach( $terms as $term ) { |
| 217 | 217 | $counts = $this->getTermCounts( $term['term_id'] ); |
| 218 | - $counts = empty( $counts ) |
|
| 218 | + $counts = empty($counts) |
|
| 219 | 219 | ? $this->buildTermCounts( $term['term_taxonomy_id'] ) |
| 220 | 220 | : $this->increaseRating( $counts, $review->review_type, $review->rating ); |
| 221 | 221 | $this->setTermCounts( $term['term_id'], $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 | /** |
@@ -249,11 +249,11 @@ discard block |
||
| 249 | 249 | public function setTermCounts( $termId, array $reviewCounts ) |
| 250 | 250 | { |
| 251 | 251 | $term = get_term( $termId, Application::TAXONOMY ); |
| 252 | - if( !isset( $term->term_id ))return; |
|
| 252 | + if( !isset($term->term_id) )return; |
|
| 253 | 253 | $ratingCounts = $this->flatten( $reviewCounts ); |
| 254 | 254 | update_term_meta( $termId, static::META_COUNT, $reviewCounts ); |
| 255 | - update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
|
| 256 | - update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts )); |
|
| 255 | + update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) ); |
|
| 256 | + update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) ); |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | /** |
@@ -265,12 +265,12 @@ discard block |
||
| 265 | 265 | { |
| 266 | 266 | $counts = []; |
| 267 | 267 | $lastPostId = 0; |
| 268 | - while( $reviews = $this->queryReviews( $args, $lastPostId, $limit )) { |
|
| 269 | - $types = array_keys( array_flip( glsr_array_column( $reviews, 'type' ))); |
|
| 270 | - $types = array_unique( array_merge( ['local'], $types )); |
|
| 268 | + while( $reviews = $this->queryReviews( $args, $lastPostId, $limit ) ) { |
|
| 269 | + $types = array_keys( array_flip( glsr_array_column( $reviews, 'type' ) ) ); |
|
| 270 | + $types = array_unique( array_merge( ['local'], $types ) ); |
|
| 271 | 271 | foreach( $types as $type ) { |
| 272 | 272 | $type = $this->normalizeType( $type ); |
| 273 | - if( isset( $counts[$type] ))continue; |
|
| 273 | + if( isset($counts[$type]) )continue; |
|
| 274 | 274 | $counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 ); |
| 275 | 275 | } |
| 276 | 276 | foreach( $reviews as $review ) { |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | */ |
| 290 | 290 | protected function decreaseRating( array $reviewCounts, $type, $rating ) |
| 291 | 291 | { |
| 292 | - if( isset( $reviewCounts[$type][$rating] )) { |
|
| 292 | + if( isset($reviewCounts[$type][$rating]) ) { |
|
| 293 | 293 | $reviewCounts[$type][$rating] = max( 0, $reviewCounts[$type][$rating] - 1 ); |
| 294 | 294 | } |
| 295 | 295 | return $reviewCounts; |
@@ -302,10 +302,10 @@ discard block |
||
| 302 | 302 | */ |
| 303 | 303 | protected function increaseRating( array $reviewCounts, $type, $rating ) |
| 304 | 304 | { |
| 305 | - if( !array_key_exists( $type, glsr()->reviewTypes )) { |
|
| 305 | + if( !array_key_exists( $type, glsr()->reviewTypes ) ) { |
|
| 306 | 306 | return $reviewCounts; |
| 307 | 307 | } |
| 308 | - if( !array_key_exists( $type, $reviewCounts )) { |
|
| 308 | + if( !array_key_exists( $type, $reviewCounts ) ) { |
|
| 309 | 309 | $reviewCounts[$type] = []; |
| 310 | 310 | } |
| 311 | 311 | $reviewCounts = $this->normalize( $reviewCounts ); |
@@ -318,12 +318,12 @@ discard block |
||
| 318 | 318 | */ |
| 319 | 319 | protected function normalize( array $reviewCounts ) |
| 320 | 320 | { |
| 321 | - if( empty( $reviewCounts )) { |
|
| 321 | + if( empty($reviewCounts) ) { |
|
| 322 | 322 | $reviewCounts = [[]]; |
| 323 | 323 | } |
| 324 | 324 | foreach( $reviewCounts as &$counts ) { |
| 325 | 325 | foreach( range( 0, Rating::MAX_RATING ) as $index ) { |
| 326 | - if( isset( $counts[$index] ))continue; |
|
| 326 | + if( isset($counts[$index]) )continue; |
|
| 327 | 327 | $counts[$index] = 0; |
| 328 | 328 | } |
| 329 | 329 | ksort( $counts ); |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | */ |
| 338 | 338 | protected function normalizeType( $type ) |
| 339 | 339 | { |
| 340 | - return empty( $type ) || !is_string( $type ) |
|
| 340 | + return empty($type) || !is_string( $type ) |
|
| 341 | 341 | ? 'local' |
| 342 | 342 | : $type; |
| 343 | 343 | } |
@@ -349,14 +349,14 @@ discard block |
||
| 349 | 349 | */ |
| 350 | 350 | protected function queryReviews( array $args = [], $lastPostId, $limit ) |
| 351 | 351 | { |
| 352 | - $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_taxonomy_id'], '' )); |
|
| 353 | - if( empty( array_filter( $args ))) { |
|
| 352 | + $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_taxonomy_id'], '' ) ); |
|
| 353 | + if( empty(array_filter( $args )) ) { |
|
| 354 | 354 | return glsr( SqlQueries::class )->getReviewCounts( $lastPostId, $limit ); |
| 355 | 355 | } |
| 356 | - if( !empty( $args['post_id'] )) { |
|
| 356 | + if( !empty($args['post_id']) ) { |
|
| 357 | 357 | return glsr( SqlQueries::class )->getReviewPostCounts( $args['post_id'], $lastPostId, $limit ); |
| 358 | 358 | } |
| 359 | - if( !empty( $args['term_taxonomy_id'] )) { |
|
| 359 | + if( !empty($args['term_taxonomy_id']) ) { |
|
| 360 | 360 | return glsr( SqlQueries::class )->getReviewTermCounts( $args['term_taxonomy_id'], $lastPostId, $limit ); |
| 361 | 361 | } |
| 362 | 362 | } |
@@ -20,10 +20,10 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | public function getAssignedToPost( $postId, $assignedTo = '' ) |
| 22 | 22 | { |
| 23 | - if( empty( $assignedTo )) { |
|
| 23 | + if( empty($assignedTo) ) { |
|
| 24 | 24 | $assignedTo = get_post_meta( $postId, 'assigned_to', true ); |
| 25 | 25 | } |
| 26 | - if( empty( $assignedTo ))return; |
|
| 26 | + if( empty($assignedTo) )return; |
|
| 27 | 27 | $assignedPost = get_post( $assignedTo ); |
| 28 | 28 | if( $assignedPost instanceof WP_Post && $assignedPost->ID != $postId ) { |
| 29 | 29 | return $assignedPost; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | if( !$metaValue ) { |
| 45 | 45 | return $counts; |
| 46 | 46 | } |
| 47 | - return isset( $counts[$metaValue] ) |
|
| 47 | + return isset($counts[$metaValue]) |
|
| 48 | 48 | ? $counts[$metaValue] |
| 49 | 49 | : 0; |
| 50 | 50 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public function getReviewsMeta( $key, $status = 'publish' ) |
| 67 | 67 | { |
| 68 | - if( $status == 'all' || empty( $status )) { |
|
| 68 | + if( $status == 'all' || empty($status) ) { |
|
| 69 | 69 | $status = get_post_stati( ['exclude_from_search' => false] ); |
| 70 | 70 | } |
| 71 | 71 | return glsr( SqlQueries::class )->getReviewsMeta( $key, $status ); |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | $termIds = []; |
| 81 | 81 | foreach( $values as $value ) { |
| 82 | 82 | $term = get_term_by( $field, $value, Application::TAXONOMY ); |
| 83 | - if( !isset( $term->term_id ))continue; |
|
| 83 | + if( !isset($term->term_id) )continue; |
|
| 84 | 84 | $termIds[] = $term->term_id; |
| 85 | 85 | } |
| 86 | 86 | return $termIds; |
@@ -96,9 +96,9 @@ discard block |
||
| 96 | 96 | 'fields' => 'id=>name', |
| 97 | 97 | 'hide_empty' => false, |
| 98 | 98 | 'taxonomy' => Application::TAXONOMY, |
| 99 | - ]); |
|
| 99 | + ] ); |
|
| 100 | 100 | $terms = get_terms( $args ); |
| 101 | - if( is_wp_error( $terms )) { |
|
| 101 | + if( is_wp_error( $terms ) ) { |
|
| 102 | 102 | glsr_log()->error( $terms->get_error_message() ); |
| 103 | 103 | return []; |
| 104 | 104 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | 'post_status' => 'publish', |
| 116 | 116 | 'post_type' => 'any', |
| 117 | 117 | ]; |
| 118 | - if( is_numeric( $searchTerm )) { |
|
| 118 | + if( is_numeric( $searchTerm ) ) { |
|
| 119 | 119 | $args['post__in'] = [$searchTerm]; |
| 120 | 120 | } |
| 121 | 121 | else { |
@@ -134,9 +134,9 @@ discard block |
||
| 134 | 134 | ob_start(); |
| 135 | 135 | glsr()->render( 'partials/editor/search-result', [ |
| 136 | 136 | 'ID' => get_the_ID(), |
| 137 | - 'permalink' => esc_url( (string) get_permalink() ), |
|
| 137 | + 'permalink' => esc_url( (string)get_permalink() ), |
|
| 138 | 138 | 'title' => esc_attr( get_the_title() ), |
| 139 | - ]); |
|
| 139 | + ] ); |
|
| 140 | 140 | $results .= ob_get_clean(); |
| 141 | 141 | } |
| 142 | 142 | wp_reset_postdata(); |