@@ -22,10 +22,10 @@ discard block |
||
| 22 | 22 | 'after_widget' => '</div>', |
| 23 | 23 | 'before_title' => '<h3 class="glsr-shortcode-title">', |
| 24 | 24 | 'after_title' => '</h3>', |
| 25 | - ]); |
|
| 25 | + ] ); |
|
| 26 | 26 | $instance = $this->normalize( $instance ); |
| 27 | 27 | $partial = glsr( Html::class )->buildPartial( $shortcodePartial, $instance ); |
| 28 | - if( !empty( $instance['title'] )) { |
|
| 28 | + if( !empty($instance['title']) ) { |
|
| 29 | 29 | $instance['title'] = $args['before_title'].$instance['title'].$args['after_title']; |
| 30 | 30 | } |
| 31 | 31 | return $args['before_widget'].$instance['title'].$partial.$args['after_widget']; |
@@ -68,10 +68,10 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function normalize( $args ) |
| 70 | 70 | { |
| 71 | - $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args )); |
|
| 71 | + $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args ) ); |
|
| 72 | 72 | array_walk( $args, function( &$value, $key ) { |
| 73 | 73 | $methodName = glsr( Helper::class )->buildMethodName( $key, 'normalize' ); |
| 74 | - if( !method_exists( $this, $methodName ))return; |
|
| 74 | + if( !method_exists( $this, $methodName ) )return; |
|
| 75 | 75 | $value = $this->$methodName( $value ); |
| 76 | 76 | }); |
| 77 | 77 | return $this->sanitize( $args ); |
@@ -103,13 +103,13 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | protected function normalizeHide( $hide ) |
| 105 | 105 | { |
| 106 | - if( is_string( $hide )) { |
|
| 106 | + if( is_string( $hide ) ) { |
|
| 107 | 107 | $hide = explode( ',', $hide ); |
| 108 | 108 | } |
| 109 | 109 | $hiddenKeys = defined( 'static::HIDDEN_KEYS' ) |
| 110 | 110 | ? static::HIDDEN_KEYS |
| 111 | 111 | : []; |
| 112 | - return array_filter( array_map( 'trim', $hide ), function( $value ) use( $hiddenKeys ) { |
|
| 112 | + return array_filter( array_map( 'trim', $hide ), function( $value ) use($hiddenKeys) { |
|
| 113 | 113 | return in_array( $value, $hiddenKeys ); |
| 114 | 114 | }); |
| 115 | 115 | } |
@@ -137,9 +137,9 @@ discard block |
||
| 137 | 137 | __( 'Terrible', 'site-reviews' ), |
| 138 | 138 | ]; |
| 139 | 139 | $defaults = array_pad( $defaults, Rating::MAX_RATING, '' ); |
| 140 | - $labels = array_map( 'trim', explode( ',', $labels )); |
|
| 140 | + $labels = array_map( 'trim', explode( ',', $labels ) ); |
|
| 141 | 141 | foreach( $defaults as $i => $label ) { |
| 142 | - if( empty( $labels[$i] ))continue; |
|
| 142 | + if( empty($labels[$i]) )continue; |
|
| 143 | 143 | $defaults[$i] = $labels[$i]; |
| 144 | 144 | } |
| 145 | 145 | return array_combine( range( Rating::MAX_RATING, 1 ), $defaults ); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $this->args = $args; |
| 36 | 36 | $this->reviews = glsr( Database::class )->getReviews( $args )->results; |
| 37 | - if( empty( $this->reviews ) && $this->isHidden( 'if_empty' ))return; |
|
| 37 | + if( empty($this->reviews) && $this->isHidden( 'if_empty' ) )return; |
|
| 38 | 38 | $this->rating = glsr( Rating::class )->getAverage( $this->reviews ); |
| 39 | 39 | $this->generateSchema(); |
| 40 | 40 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | 'stars' => $this->buildStars(), |
| 47 | 47 | 'text' => $this->buildText(), |
| 48 | 48 | ], |
| 49 | - ]); |
|
| 49 | + ] ); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
@@ -54,16 +54,16 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | protected function buildPercentage() |
| 56 | 56 | { |
| 57 | - if( $this->isHidden( 'bars' ))return; |
|
| 57 | + if( $this->isHidden( 'bars' ) )return; |
|
| 58 | 58 | $range = range( Rating::MAX_RATING, 1 ); |
| 59 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->reviews )); |
|
| 60 | - $bars = array_reduce( $range, function( $carry, $level ) use( $percentages ) { |
|
| 59 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->reviews ) ); |
|
| 60 | + $bars = array_reduce( $range, function( $carry, $level ) use($percentages) { |
|
| 61 | 61 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
| 62 | 62 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
| 63 | 63 | $percent = $this->buildPercentagePercent( $percentages[$level] ); |
| 64 | 64 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
| 65 | 65 | 'class' => 'glsr-bar', |
| 66 | - ]); |
|
| 66 | + ] ); |
|
| 67 | 67 | }); |
| 68 | 68 | return $this->wrap( 'percentage', $bars ); |
| 69 | 69 | } |
@@ -74,10 +74,10 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | protected function buildPercentageBackground( $percent ) |
| 76 | 76 | { |
| 77 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
| 77 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
| 78 | 78 | 'class' => 'glsr-bar-background-percent', |
| 79 | 79 | 'style' => 'width:'.$percent, |
| 80 | - ]); |
|
| 80 | + ] ); |
|
| 81 | 81 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
| 82 | 82 | } |
| 83 | 83 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | protected function buildRating() |
| 106 | 106 | { |
| 107 | - if( $this->isHidden( 'rating' ))return; |
|
| 107 | + if( $this->isHidden( 'rating' ) )return; |
|
| 108 | 108 | return $this->wrap( 'rating', '<span>'.$this->rating.'</span>' ); |
| 109 | 109 | } |
| 110 | 110 | |
@@ -113,10 +113,10 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | protected function buildStars() |
| 115 | 115 | { |
| 116 | - if( $this->isHidden( 'stars' ))return; |
|
| 116 | + if( $this->isHidden( 'stars' ) )return; |
|
| 117 | 117 | $stars = glsr( Partial::class )->build( 'star-rating', [ |
| 118 | 118 | 'rating' => $this->rating, |
| 119 | - ]); |
|
| 119 | + ] ); |
|
| 120 | 120 | return $this->wrap( 'stars', $stars ); |
| 121 | 121 | } |
| 122 | 122 | |
@@ -125,9 +125,9 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | protected function buildText() |
| 127 | 127 | { |
| 128 | - if( $this->isHidden( 'summary' ))return; |
|
| 128 | + if( $this->isHidden( 'summary' ) )return; |
|
| 129 | 129 | $count = count( $this->reviews ); |
| 130 | - if( empty( $this->args['text'] )) { |
|
| 130 | + if( empty($this->args['text']) ) { |
|
| 131 | 131 | $this->args['text'] = _nx( |
| 132 | 132 | '{rating} out of {max} stars (based on %d review)', |
| 133 | 133 | '{rating} out of {max} stars (based on %d reviews)', |
@@ -136,8 +136,8 @@ discard block |
||
| 136 | 136 | 'site-reviews' |
| 137 | 137 | ); |
| 138 | 138 | } |
| 139 | - $summary = str_replace( ['{rating}','{max}'], [$this->rating, Rating::MAX_RATING], $this->args['text'] ); |
|
| 140 | - $summary = str_replace( ['%s','%d'], $count, $summary ); |
|
| 139 | + $summary = str_replace( ['{rating}', '{max}'], [$this->rating, Rating::MAX_RATING], $this->args['text'] ); |
|
| 140 | + $summary = str_replace( ['%s', '%d'], $count, $summary ); |
|
| 141 | 141 | return $this->wrap( 'text', '<span>'.$summary.'</span>' ); |
| 142 | 142 | } |
| 143 | 143 | |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | protected function generateSchema() |
| 148 | 148 | { |
| 149 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 149 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 150 | 150 | glsr( Schema::class )->store( |
| 151 | 151 | glsr( Schema::class )->buildSummary( $this->args ) |
| 152 | 152 | ); |
@@ -179,6 +179,6 @@ discard block |
||
| 179 | 179 | { |
| 180 | 180 | return glsr( Builder::class )->div( $value, [ |
| 181 | 181 | 'class' => 'glsr-summary-'.$key, |
| 182 | - ]); |
|
| 182 | + ] ); |
|
| 183 | 183 | } |
| 184 | 184 | } |
@@ -27,13 +27,13 @@ |
||
| 27 | 27 | public function getFields( $id ) |
| 28 | 28 | { |
| 29 | 29 | $fields = []; |
| 30 | - $configPath = glsr()->path( 'config/'.$id.'.php' );; |
|
| 30 | + $configPath = glsr()->path( 'config/'.$id.'.php' ); ; |
|
| 31 | 31 | $values = file_exists( $configPath ) |
| 32 | 32 | ? include $configPath |
| 33 | 33 | : []; |
| 34 | 34 | $values = apply_filters( 'site-reviews/form/fields', $values ); |
| 35 | 35 | foreach( $values as $name => $field ) { |
| 36 | - $fields[] = new Field( wp_parse_args( $field, ['name' => $name] )); |
|
| 36 | + $fields[] = new Field( wp_parse_args( $field, ['name' => $name] ) ); |
|
| 37 | 37 | } |
| 38 | 38 | return $fields; |
| 39 | 39 | } |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | 'navigation' => $navigation, |
| 56 | 56 | ], |
| 57 | 57 | 'reviews' => $this->buildReviews(), |
| 58 | - ]); |
|
| 58 | + ] ); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | $generatedReview = []; |
| 84 | 84 | foreach( $review as $key => $value ) { |
| 85 | 85 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
| 86 | - if( !method_exists( $this, $method ))continue; |
|
| 86 | + if( !method_exists( $this, $method ) )continue; |
|
| 87 | 87 | $generatedReview[$key] = $this->$method( $key, $value ); |
| 88 | 88 | } |
| 89 | 89 | return (object)$generatedReview; |
@@ -96,12 +96,12 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | protected function buildOptionAssignedTo( $key, $value ) |
| 98 | 98 | { |
| 99 | - if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' ))return; |
|
| 100 | - $post = get_post( intval( $value )); |
|
| 101 | - if( !( $post instanceof WP_Post ))return; |
|
| 99 | + if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' ) )return; |
|
| 100 | + $post = get_post( intval( $value ) ); |
|
| 101 | + if( !($post instanceof WP_Post) )return; |
|
| 102 | 102 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
| 103 | 103 | 'href' => get_the_permalink( $post->ID ), |
| 104 | - ]); |
|
| 104 | + ] ); |
|
| 105 | 105 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
| 106 | 106 | return $this->wrap( $key, '<span>'.$assignedTo.'</span>' ); |
| 107 | 107 | } |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | protected function buildOptionAuthor( $key, $value ) |
| 115 | 115 | { |
| 116 | - if( $this->isHidden( $key ))return; |
|
| 116 | + if( $this->isHidden( $key ) )return; |
|
| 117 | 117 | $prefix = !$this->isOptionEnabled( 'settings.reviews.avatars.enabled' ) |
| 118 | 118 | ? apply_filters( 'site-reviews/review/author/prefix', '—' ) |
| 119 | 119 | : ''; |
@@ -127,13 +127,13 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | protected function buildOptionAvatar( $key, $value ) |
| 129 | 129 | { |
| 130 | - if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' ))return; |
|
| 130 | + if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' ) )return; |
|
| 131 | 131 | $size = $this->getOption( 'settings.reviews.avatars.size', 40 ); |
| 132 | - return $this->wrap( $key, glsr( Builder::class )->img([ |
|
| 132 | + return $this->wrap( $key, glsr( Builder::class )->img( [ |
|
| 133 | 133 | 'src' => $this->generateAvatar( $value ), |
| 134 | 134 | 'height' => $size, |
| 135 | 135 | 'width' => $size, |
| 136 | - ])); |
|
| 136 | + ] ) ); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | protected function buildOptionContent( $key, $value ) |
| 145 | 145 | { |
| 146 | 146 | $text = $this->normalizeText( $value ); |
| 147 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
| 147 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
| 148 | 148 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
| 149 | 149 | } |
| 150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | */ |
| 156 | 156 | protected function buildOptionDate( $key, $value ) |
| 157 | 157 | { |
| 158 | - if( $this->isHidden( $key ))return; |
|
| 158 | + if( $this->isHidden( $key ) )return; |
|
| 159 | 159 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
| 160 | 160 | if( $dateFormat == 'relative' ) { |
| 161 | 161 | $date = glsr( Date::class )->relative( $value ); |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | $format = $dateFormat == 'custom' |
| 165 | 165 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
| 166 | 166 | : (string)get_option( 'date_format' ); |
| 167 | - $date = date_i18n( $format, strtotime( $value )); |
|
| 167 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
| 168 | 168 | } |
| 169 | 169 | return $this->wrap( $key, '<span>'.$date.'</span>' ); |
| 170 | 170 | } |
@@ -176,10 +176,10 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | protected function buildOptionRating( $key, $value ) |
| 178 | 178 | { |
| 179 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 179 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 180 | 180 | $rating = glsr( Html::class )->buildPartial( 'star-rating', [ |
| 181 | 181 | 'rating' => $value, |
| 182 | - ]); |
|
| 182 | + ] ); |
|
| 183 | 183 | return $this->wrap( $key, $rating ); |
| 184 | 184 | } |
| 185 | 185 | |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | protected function buildOptionResponse( $key, $value ) |
| 192 | 192 | { |
| 193 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
| 194 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
| 193 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
| 194 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
| 195 | 195 | $text = $this->normalizeText( $value ); |
| 196 | 196 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
| 197 | 197 | return $this->wrap( $key, |
@@ -207,8 +207,8 @@ discard block |
||
| 207 | 207 | */ |
| 208 | 208 | protected function buildOptionTitle( $key, $value ) |
| 209 | 209 | { |
| 210 | - if( $this->isHidden( $key ))return; |
|
| 211 | - if( empty( $value )) { |
|
| 210 | + if( $this->isHidden( $key ) )return; |
|
| 211 | + if( empty($value) ) { |
|
| 212 | 212 | $value = __( 'No Title', 'site-reviews' ); |
| 213 | 213 | } |
| 214 | 214 | return $this->wrap( $key, '<h3>'.$value.'</h3>' ); |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | return $avatarUrl; |
| 227 | 227 | } |
| 228 | 228 | $authorIdOrEmail = get_the_author_meta( 'ID', $review->user_id ); |
| 229 | - if( empty( $authorIdOrEmail )) { |
|
| 229 | + if( empty($authorIdOrEmail) ) { |
|
| 230 | 230 | $authorIdOrEmail = $review->email; |
| 231 | 231 | } |
| 232 | 232 | return (string)get_avatar_url( $authorIdOrEmail ); |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | */ |
| 238 | 238 | protected function generateSchema() |
| 239 | 239 | { |
| 240 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
| 240 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
| 241 | 241 | glsr( Schema::class )->store( |
| 242 | 242 | glsr( Schema::class )->build( $this->args ) |
| 243 | 243 | ); |
@@ -263,14 +263,14 @@ discard block |
||
| 263 | 263 | { |
| 264 | 264 | $limit = $this->getOption( 'settings.reviews.excerpt.length', 55 ); |
| 265 | 265 | if( str_word_count( $text, 0 ) > $limit ) { |
| 266 | - $words = array_keys( str_word_count( $text, 2 )); |
|
| 267 | - $excerpt = ltrim( substr( $text, 0, $words[$limit] )); |
|
| 268 | - $hiddenText = substr( $text, strlen( $excerpt )); |
|
| 266 | + $words = array_keys( str_word_count( $text, 2 ) ); |
|
| 267 | + $excerpt = ltrim( substr( $text, 0, $words[$limit] ) ); |
|
| 268 | + $hiddenText = substr( $text, strlen( $excerpt ) ); |
|
| 269 | 269 | $showMore = glsr( Builder::class )->span( $hiddenText, [ |
| 270 | 270 | 'class' => 'glsr-hidden glsr-hidden-text', |
| 271 | 271 | 'data-show-less' => __( 'Show less', 'site-reviews' ), |
| 272 | 272 | 'data-show-more' => __( 'Show more', 'site-reviews' ), |
| 273 | - ]); |
|
| 273 | + ] ); |
|
| 274 | 274 | $text = $excerpt.$showMore; |
| 275 | 275 | } |
| 276 | 276 | return nl2br( $text ); |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | */ |
| 284 | 284 | protected function getOption( $path, $fallback = '' ) |
| 285 | 285 | { |
| 286 | - if( array_key_exists( $path, $this->options )) { |
|
| 286 | + if( array_key_exists( $path, $this->options ) ) { |
|
| 287 | 287 | return $this->options[$path]; |
| 288 | 288 | } |
| 289 | 289 | return $fallback; |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | */ |
| 297 | 297 | protected function isHidden( $key, $path = '' ) |
| 298 | 298 | { |
| 299 | - $isOptionEnabled = !empty( $path ) |
|
| 299 | + $isOptionEnabled = !empty($path) |
|
| 300 | 300 | ? $this->isOptionEnabled( $path ) |
| 301 | 301 | : true; |
| 302 | 302 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | */ |
| 310 | 310 | protected function isHiddenOrEmpty( $key, $value ) |
| 311 | 311 | { |
| 312 | - return $this->isHidden( $key ) || empty( $value ); |
|
| 312 | + return $this->isHidden( $key ) || empty($value); |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | /** |
@@ -328,7 +328,7 @@ discard block |
||
| 328 | 328 | protected function normalizeText( $text ) |
| 329 | 329 | { |
| 330 | 330 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
| 331 | - $text = convert_smilies( wptexturize( strip_shortcodes( $text ))); |
|
| 331 | + $text = convert_smilies( wptexturize( strip_shortcodes( $text ) ) ); |
|
| 332 | 332 | $text = str_replace( ']]>', ']]>', $text ); |
| 333 | 333 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
| 334 | 334 | return $this->isOptionEnabled( 'settings.reviews.excerpt.enabled' ) |
@@ -345,6 +345,6 @@ discard block |
||
| 345 | 345 | { |
| 346 | 346 | return glsr( Builder::class )->div( $value, [ |
| 347 | 347 | 'class' => 'glsr-review-'.$key, |
| 348 | - ]); |
|
| 348 | + ] ); |
|
| 349 | 349 | } |
| 350 | 350 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | { |
| 14 | 14 | $this->builder->args = wp_parse_args( $this->builder->args, [ |
| 15 | 15 | 'name' => $this->builder->args['text'], |
| 16 | - ]); |
|
| 16 | + ] ); |
|
| 17 | 17 | $this->builder->tag = 'input'; |
| 18 | 18 | $this->mergeFieldArgs(); |
| 19 | 19 | return $this->builder->getOpeningTag(); |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | glsr()->version, |
| 45 | 45 | true |
| 46 | 46 | ); |
| 47 | - if( !empty( $this->pointers )) { |
|
| 47 | + if( !empty($this->pointers) ) { |
|
| 48 | 48 | wp_enqueue_style( 'wp-pointer' ); |
| 49 | 49 | wp_enqueue_script( 'wp-pointer' ); |
| 50 | 50 | } |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | $dependencies = apply_filters( 'site-reviews/enqueue/admin/dependencies', [] ); |
| 85 | 85 | $dependencies = array_merge( $dependencies, [ |
| 86 | 86 | 'jquery', 'jquery-ui-sortable', 'underscore', 'wp-util', |
| 87 | - ]); |
|
| 87 | + ] ); |
|
| 88 | 88 | return $dependencies; |
| 89 | 89 | } |
| 90 | 90 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | $generatedPointers = []; |
| 115 | 115 | foreach( $pointers as $pointer ) { |
| 116 | 116 | if( $pointer['screen'] != glsr_current_screen()->id )continue; |
| 117 | - if( in_array( $pointer['id'], $dismissedPointers ))continue; |
|
| 117 | + if( in_array( $pointer['id'], $dismissedPointers ) )continue; |
|
| 118 | 118 | $generatedPointers[] = $this->generatePointer( $pointer ); |
| 119 | 119 | } |
| 120 | 120 | $this->pointers = $generatedPointers; |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | protected function isCurrentScreen() |
| 127 | 127 | { |
| 128 | 128 | $screen = glsr_current_screen(); |
| 129 | - return $screen && ( $screen->post_type == Application::POST_TYPE |
|
| 129 | + return $screen && ($screen->post_type == Application::POST_TYPE |
|
| 130 | 130 | || $screen->base == 'post' |
| 131 | 131 | || $screen->id == 'dashboard' |
| 132 | 132 | || $screen->id == 'widgets' |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | { |
| 141 | 141 | $variables = []; |
| 142 | 142 | foreach( glsr()->mceShortcodes as $tag => $args ) { |
| 143 | - if( empty( $args['required'] ))continue; |
|
| 143 | + if( empty($args['required']) )continue; |
|
| 144 | 144 | $variables[$tag] = $args['required']; |
| 145 | 145 | } |
| 146 | 146 | return $variables; |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | 'inactive-plugin' => 'Inactive Plugins', |
| 38 | 38 | 'setting' => 'Plugin Settings', |
| 39 | 39 | ]; |
| 40 | - $systemInfo = array_reduce( array_keys( $details ), function( $carry, $key ) use( $details ) { |
|
| 40 | + $systemInfo = array_reduce( array_keys( $details ), function( $carry, $key ) use($details) { |
|
| 41 | 41 | $methodName = glsr( Helper::class )->buildMethodName( 'get-'.$key.'-details' ); |
| 42 | 42 | if( method_exists( $this, $methodName ) && $systemDetails = $this->$methodName() ) { |
| 43 | 43 | return $carry.$this->implode( $details[$key], $systemDetails ); |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | $plugins = get_plugins(); |
| 56 | 56 | $activePlugins = (array)get_option( 'active_plugins', [] ); |
| 57 | - $inactive = array_diff_key( $plugins, array_flip( $activePlugins )); |
|
| 58 | - return $this->normalizePluginList( array_diff_key( $plugins, $inactive )); |
|
| 57 | + $inactive = array_diff_key( $plugins, array_flip( $activePlugins ) ); |
|
| 58 | + return $this->normalizePluginList( array_diff_key( $plugins, $inactive ) ); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function getInactivePluginDetails() |
| 80 | 80 | { |
| 81 | 81 | $activePlugins = (array)get_option( 'active_plugins', [] ); |
| 82 | - return $this->normalizePluginList( array_diff_key( get_plugins(), array_flip( $activePlugins ))); |
|
| 82 | + return $this->normalizePluginList( array_diff_key( get_plugins(), array_flip( $activePlugins ) ) ); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
@@ -89,9 +89,9 @@ discard block |
||
| 89 | 89 | { |
| 90 | 90 | $plugins = array_merge( |
| 91 | 91 | get_mu_plugins(), |
| 92 | - get_plugins( '/../'.basename( WPMU_PLUGIN_DIR )) |
|
| 92 | + get_plugins( '/../'.basename( WPMU_PLUGIN_DIR ) ) |
|
| 93 | 93 | ); |
| 94 | - if( empty( $plugins ))return; |
|
| 94 | + if( empty($plugins) )return; |
|
| 95 | 95 | return $this->normalizePluginList( $plugins ); |
| 96 | 96 | } |
| 97 | 97 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function getMultisitePluginDetails() |
| 102 | 102 | { |
| 103 | - if( !is_multisite() || empty( get_site_option( 'active_sitewide_plugins', [] )))return; |
|
| 103 | + if( !is_multisite() || empty(get_site_option( 'active_sitewide_plugins', [] )) )return; |
|
| 104 | 104 | return $this->normalizePluginList( wp_get_active_network_plugins() ); |
| 105 | 105 | } |
| 106 | 106 | |
@@ -122,11 +122,11 @@ discard block |
||
| 122 | 122 | 'Max Input Vars' => ini_get( 'max_input_vars' ), |
| 123 | 123 | 'Memory Limit' => ini_get( 'memory_limit' ), |
| 124 | 124 | 'Post Max Size' => ini_get( 'post_max_size' ), |
| 125 | - 'Session Cookie Path' => esc_html( ini_get( 'session.cookie_path' )), |
|
| 126 | - 'Session Name' => esc_html( ini_get( 'session.name' )), |
|
| 127 | - 'Session Save Path' => esc_html( ini_get( 'session.save_path' )), |
|
| 128 | - 'Session Use Cookies' => var_export( wp_validate_boolean( ini_get( 'session.use_cookies' )), true ), |
|
| 129 | - 'Session Use Only Cookies' => var_export( wp_validate_boolean( ini_get( 'session.use_only_cookies' )), true ), |
|
| 125 | + 'Session Cookie Path' => esc_html( ini_get( 'session.cookie_path' ) ), |
|
| 126 | + 'Session Name' => esc_html( ini_get( 'session.name' ) ), |
|
| 127 | + 'Session Save Path' => esc_html( ini_get( 'session.save_path' ) ), |
|
| 128 | + 'Session Use Cookies' => var_export( wp_validate_boolean( ini_get( 'session.use_cookies' ) ), true ), |
|
| 129 | + 'Session Use Only Cookies' => var_export( wp_validate_boolean( ini_get( 'session.use_only_cookies' ) ), true ), |
|
| 130 | 130 | 'Upload Max Filesize' => ini_get( 'upload_max_filesize' ), |
| 131 | 131 | ]; |
| 132 | 132 | } |
@@ -154,13 +154,13 @@ discard block |
||
| 154 | 154 | $settings = glsr( OptionManager::class )->get( 'settings', [] ); |
| 155 | 155 | $settings = $helper->flattenArray( $settings, true ); |
| 156 | 156 | foreach( ['submissions.recaptcha.key', 'submissions.recaptcha.secret'] as $key ) { |
| 157 | - if( empty( $settings[$key] ))continue; |
|
| 157 | + if( empty($settings[$key]) )continue; |
|
| 158 | 158 | $settings[$key] = str_repeat( '*', 10 ); |
| 159 | 159 | } |
| 160 | 160 | $details = []; |
| 161 | 161 | foreach( $settings as $key => $value ) { |
| 162 | - if( $helper->startsWith( 'strings', $key ) && $helper->endsWith( 'id', $key ))continue; |
|
| 163 | - $value = htmlspecialchars( trim( preg_replace('/\s\s+/', '\\n', $value )), ENT_QUOTES, 'UTF-8' ); |
|
| 162 | + if( $helper->startsWith( 'strings', $key ) && $helper->endsWith( 'id', $key ) )continue; |
|
| 163 | + $value = htmlspecialchars( trim( preg_replace( '/\s\s+/', '\\n', $value ) ), ENT_QUOTES, 'UTF-8' ); |
|
| 164 | 164 | $details[$key] = $value; |
| 165 | 165 | } |
| 166 | 166 | return $details; |
@@ -231,10 +231,10 @@ discard block |
||
| 231 | 231 | 'WPE_APIKEY' => 'WP Engine', |
| 232 | 232 | ]; |
| 233 | 233 | foreach( $checks as $key => $value ) { |
| 234 | - if( !$this->isWebhostCheckValid( $key ))continue; |
|
| 234 | + if( !$this->isWebhostCheckValid( $key ) )continue; |
|
| 235 | 235 | return $value; |
| 236 | 236 | } |
| 237 | - return implode( ',', array_filter( [DB_HOST, filter_input( INPUT_SERVER, 'SERVER_NAME' )] )); |
|
| 237 | + return implode( ',', array_filter( [DB_HOST, filter_input( INPUT_SERVER, 'SERVER_NAME' )] ) ); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | /** |
@@ -255,8 +255,8 @@ discard block |
||
| 255 | 255 | { |
| 256 | 256 | $plugins = get_plugins(); |
| 257 | 257 | $activePlugins = (array)get_option( 'active_plugins', [] ); |
| 258 | - $inactive = $this->normalizePluginList( array_diff_key( $plugins, array_flip( $activePlugins ))); |
|
| 259 | - $active = $this->normalizePluginList( array_diff_key( $plugins, $inactive )); |
|
| 258 | + $inactive = $this->normalizePluginList( array_diff_key( $plugins, array_flip( $activePlugins ) ) ); |
|
| 259 | + $active = $this->normalizePluginList( array_diff_key( $plugins, $inactive ) ); |
|
| 260 | 260 | return $active + $inactive; |
| 261 | 261 | } |
| 262 | 262 | |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | protected function implode( $title, array $details ) |
| 268 | 268 | { |
| 269 | 269 | $strings = ['['.$title.']']; |
| 270 | - $padding = max( array_map( 'strlen', array_keys( $details )) ); |
|
| 270 | + $padding = max( array_map( 'strlen', array_keys( $details ) ) ); |
|
| 271 | 271 | $padding = max( [$padding, static::PAD] ); |
| 272 | 272 | foreach( $details as $key => $value ) { |
| 273 | 273 | $strings[] = is_string( $key ) |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | defined( 'WPINC' ) || die; |
| 4 | 4 | |
| 5 | -require_once( ABSPATH.WPINC.'/class-phpass.php' ); |
|
| 5 | +require_once(ABSPATH.WPINC.'/class-phpass.php'); |
|
| 6 | 6 | |
| 7 | 7 | spl_autoload_register( function( $className ) { |
| 8 | 8 | $namespaces = [ |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | foreach( $namespaces as $prefix => $baseDir ) { |
| 17 | 17 | $len = strlen( $prefix ); |
| 18 | 18 | if( strncmp( $prefix, $className, $len ) !== 0 )continue; |
| 19 | - $file = $baseDir.str_replace( '\\', '/', substr( $className, $len )).'.php'; |
|
| 20 | - if( !file_exists( $file ))continue; |
|
| 19 | + $file = $baseDir.str_replace( '\\', '/', substr( $className, $len ) ).'.php'; |
|
| 20 | + if( !file_exists( $file ) )continue; |
|
| 21 | 21 | require $file; |
| 22 | 22 | break; |
| 23 | 23 | } |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | 'post_type' => Application::POST_TYPE, |
| 36 | 36 | ]; |
| 37 | 37 | $postId = wp_insert_post( $post, true ); |
| 38 | - if( is_wp_error( $postId )) { |
|
| 38 | + if( is_wp_error( $postId ) ) { |
|
| 39 | 39 | glsr_log()->error( $postId->get_error_message() ); |
| 40 | 40 | return false; |
| 41 | 41 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function deleteReview( $metaReviewId ) |
| 53 | 53 | { |
| 54 | - if( $postId = $this->getReviewPostId( $metaReviewId )) { |
|
| 54 | + if( $postId = $this->getReviewPostId( $metaReviewId ) ) { |
|
| 55 | 55 | wp_delete_post( $postId, true ); |
| 56 | 56 | } |
| 57 | 57 | } |
@@ -64,12 +64,12 @@ discard block |
||
| 64 | 64 | public function getAssignedToPost( $post, $assignedTo = '' ) |
| 65 | 65 | { |
| 66 | 66 | $post = get_post( $post ); |
| 67 | - if( !( $post instanceof WP_Post ))return; |
|
| 68 | - if( empty( $assignedTo )) { |
|
| 67 | + if( !($post instanceof WP_Post) )return; |
|
| 68 | + if( empty($assignedTo) ) { |
|
| 69 | 69 | $assignedTo = get_post_meta( $post->ID, 'assigned_to', true ); |
| 70 | 70 | } |
| 71 | 71 | $assignedPost = get_post( $assignedTo ); |
| 72 | - if( !empty( $assignedTo ) |
|
| 72 | + if( !empty($assignedTo) |
|
| 73 | 73 | && $assignedPost instanceof WP_Post |
| 74 | 74 | && $assignedPost->ID != $post->ID ) { |
| 75 | 75 | return $assignedPost; |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | public function getReview( $post ) |
| 84 | 84 | { |
| 85 | - if( !( $post instanceof WP_Post ) || $post->post_type != Application::POST_TYPE )return; |
|
| 85 | + if( !($post instanceof WP_Post) || $post->post_type != Application::POST_TYPE )return; |
|
| 86 | 86 | $review = $this->getReviewMeta( $post->ID ); |
| 87 | 87 | $modified = $this->isReviewModified( $post, $review ); |
| 88 | 88 | $review->content = $post->post_content; |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | { |
| 105 | 105 | $metaKey = $this->normalizeMetaKey( $metaKey ); |
| 106 | 106 | if( !$metaKey ) { |
| 107 | - return (array) wp_count_posts( Application::POST_TYPE ); |
|
| 107 | + return (array)wp_count_posts( Application::POST_TYPE ); |
|
| 108 | 108 | } |
| 109 | 109 | $counts = glsr( Cache::class )->getReviewCountsFor( $metaKey ); |
| 110 | 110 | if( !$metaValue ) { |
| 111 | 111 | return $counts; |
| 112 | 112 | } |
| 113 | - return isset( $counts[$metaValue] ) |
|
| 113 | + return isset($counts[$metaValue]) |
|
| 114 | 114 | ? $counts[$metaValue] |
| 115 | 115 | : 0; |
| 116 | 116 | } |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | public function getReviewMeta( $postId ) |
| 132 | 132 | { |
| 133 | 133 | $meta = get_post_type( $postId ) == Application::POST_TYPE |
| 134 | - ? array_map( 'array_shift', (array) get_post_meta( $postId )) |
|
| 134 | + ? array_map( 'array_shift', (array)get_post_meta( $postId ) ) |
|
| 135 | 135 | : []; |
| 136 | - return (object) $this->normalizeMeta( array_filter( $meta, 'strlen' )); |
|
| 136 | + return (object)$this->normalizeMeta( array_filter( $meta, 'strlen' ) ); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | $paged = glsr( QueryBuilder::class )->getPaged( |
| 163 | 163 | wp_validate_boolean( $args['pagination'] ) |
| 164 | 164 | ); |
| 165 | - $reviews = new WP_Query([ |
|
| 165 | + $reviews = new WP_Query( [ |
|
| 166 | 166 | 'meta_key' => 'pinned', |
| 167 | 167 | 'meta_query' => $metaQuery, |
| 168 | 168 | 'offset' => $args['offset'], |
@@ -175,8 +175,8 @@ discard block |
||
| 175 | 175 | 'post_type' => Application::POST_TYPE, |
| 176 | 176 | 'posts_per_page' => $args['count'] ? $args['count'] : -1, |
| 177 | 177 | 'tax_query' => $taxQuery, |
| 178 | - ]); |
|
| 179 | - return (object) [ |
|
| 178 | + ] ); |
|
| 179 | + return (object)[ |
|
| 180 | 180 | 'results' => array_map( [$this, 'getReview'], $reviews->posts ), |
| 181 | 181 | 'max_num_pages' => $reviews->max_num_pages, |
| 182 | 182 | ]; |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | public function getReviewsMeta( $keys, $status = 'publish' ) |
| 191 | 191 | { |
| 192 | 192 | $keys = array_map( [$this, 'normalizeMetaKey'], (array)$keys ); |
| 193 | - if( $status == 'all' || empty( $status )) { |
|
| 193 | + if( $status == 'all' || empty($status) ) { |
|
| 194 | 194 | $status = get_post_stati( ['exclude_from_search' => false] ); |
| 195 | 195 | } |
| 196 | 196 | return glsr( SqlQueries::class )->getReviewsMeta( $keys, $status ); |
@@ -206,10 +206,10 @@ discard block |
||
| 206 | 206 | 'fields' => 'id=>name', |
| 207 | 207 | 'hide_empty' => false, |
| 208 | 208 | 'taxonomy' => Application::TAXONOMY, |
| 209 | - ]); |
|
| 210 | - unset( $args['count'] ); //we don't want a term count |
|
| 209 | + ] ); |
|
| 210 | + unset($args['count']); //we don't want a term count |
|
| 211 | 211 | $terms = get_terms( $args ); |
| 212 | - if( is_wp_error( $terms )) { |
|
| 212 | + if( is_wp_error( $terms ) ) { |
|
| 213 | 213 | glsr_log()->error( $terms->get_error_message() ); |
| 214 | 214 | return []; |
| 215 | 215 | } |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | */ |
| 222 | 222 | public function normalizeMeta( array $meta ) |
| 223 | 223 | { |
| 224 | - if( empty( $meta )) { |
|
| 224 | + if( empty($meta) ) { |
|
| 225 | 225 | return []; |
| 226 | 226 | } |
| 227 | 227 | $defaults = wp_parse_args( $meta, [ |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | 'date' => '', |
| 230 | 230 | 'review_id' => '', |
| 231 | 231 | 'review_type' => '', |
| 232 | - ]); |
|
| 232 | + ] ); |
|
| 233 | 233 | return glsr( CreateReviewDefaults::class )->restrict( $defaults ); |
| 234 | 234 | } |
| 235 | 235 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | public function normalizeMetaKey( $metaKey ) |
| 241 | 241 | { |
| 242 | 242 | $metaKey = strtolower( $metaKey ); |
| 243 | - if( in_array( $metaKey, ['id', 'type'] )) { |
|
| 243 | + if( in_array( $metaKey, ['id', 'type'] ) ) { |
|
| 244 | 244 | $metaKey = 'review_'.$metaKey; |
| 245 | 245 | } |
| 246 | 246 | return $metaKey; |
@@ -253,10 +253,10 @@ discard block |
||
| 253 | 253 | public function normalizeTerms( $termIds ) |
| 254 | 254 | { |
| 255 | 255 | $terms = []; |
| 256 | - $termIds = array_map( 'trim', explode( ',', $termIds )); |
|
| 256 | + $termIds = array_map( 'trim', explode( ',', $termIds ) ); |
|
| 257 | 257 | foreach( $termIds as $termId ) { |
| 258 | 258 | $term = term_exists( $termId, Application::TAXONOMY ); |
| 259 | - if( !isset( $term['term_id'] ))continue; |
|
| 259 | + if( !isset($term['term_id']) )continue; |
|
| 260 | 260 | $terms[] = intval( $term['term_id'] ); |
| 261 | 261 | } |
| 262 | 262 | return $terms; |
@@ -269,15 +269,15 @@ discard block |
||
| 269 | 269 | public function revertReview( $postId ) |
| 270 | 270 | { |
| 271 | 271 | $post = get_post( $postId ); |
| 272 | - if( !( $post instanceof WP_Post ) || $post->post_type != Application::POST_TYPE )return; |
|
| 272 | + if( !($post instanceof WP_Post) || $post->post_type != Application::POST_TYPE )return; |
|
| 273 | 273 | delete_post_meta( $post->ID, '_edit_last' ); |
| 274 | - $result = wp_update_post([ |
|
| 274 | + $result = wp_update_post( [ |
|
| 275 | 275 | 'ID' => $post->ID, |
| 276 | 276 | 'post_content' => get_post_meta( $post->ID, 'content', true ), |
| 277 | 277 | 'post_date' => get_post_meta( $post->ID, 'date', true ), |
| 278 | 278 | 'post_title' => get_post_meta( $post->ID, 'title', true ), |
| 279 | - ]); |
|
| 280 | - if( is_wp_error( $result )) { |
|
| 279 | + ] ); |
|
| 280 | + if( is_wp_error( $result ) ) { |
|
| 281 | 281 | glsr_log()->error( $result->get_error_message() ); |
| 282 | 282 | } |
| 283 | 283 | } |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | 'post_status' => 'publish', |
| 293 | 293 | 'post_type' => 'any', |
| 294 | 294 | ]; |
| 295 | - if( is_numeric( $searchTerm )) { |
|
| 295 | + if( is_numeric( $searchTerm ) ) { |
|
| 296 | 296 | $args['post__in'] = [$searchTerm]; |
| 297 | 297 | } |
| 298 | 298 | else { |
@@ -311,9 +311,9 @@ discard block |
||
| 311 | 311 | ob_start(); |
| 312 | 312 | glsr()->render( 'partials/editor/search-result', [ |
| 313 | 313 | 'ID' => get_the_ID(), |
| 314 | - 'permalink' => esc_url( (string) get_permalink() ), |
|
| 314 | + 'permalink' => esc_url( (string)get_permalink() ), |
|
| 315 | 315 | 'title' => esc_attr( get_the_title() ), |
| 316 | - ]); |
|
| 316 | + ] ); |
|
| 317 | 317 | $results .= ob_get_clean(); |
| 318 | 318 | } |
| 319 | 319 | wp_reset_postdata(); |
@@ -331,9 +331,9 @@ discard block |
||
| 331 | 331 | update_post_meta( $postId, $metaKey, $metaValue ); |
| 332 | 332 | } |
| 333 | 333 | $terms = $this->normalizeTerms( $termIds ); |
| 334 | - if( empty( $terms ))return; |
|
| 334 | + if( empty($terms) )return; |
|
| 335 | 335 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
| 336 | - if( is_wp_error( $result )) { |
|
| 336 | + if( is_wp_error( $result ) ) { |
|
| 337 | 337 | glsr_log()->error( $result->get_error_message() ); |
| 338 | 338 | } |
| 339 | 339 | } |
@@ -345,7 +345,7 @@ discard block |
||
| 345 | 345 | protected function getNewPostStatus( array $review, $isBlacklisted ) |
| 346 | 346 | { |
| 347 | 347 | $requireApprovalOption = glsr( OptionManager::class )->get( 'settings.general.require.approval' ); |
| 348 | - return $review['review_type'] == 'local' && ( $requireApprovalOption == 'yes' || $isBlacklisted ) |
|
| 348 | + return $review['review_type'] == 'local' && ($requireApprovalOption == 'yes' || $isBlacklisted) |
|
| 349 | 349 | ? 'pending' |
| 350 | 350 | : 'publish'; |
| 351 | 351 | } |