@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $this->newSettings['settings.submissions'][] = 'terms'; |
43 | 43 | $this->migrateNotificationSettings(); |
44 | 44 | $this->migrateRecaptchaSettings(); |
45 | - glsr( OptionManager::class )->set( glsr( Helper::class )->convertDotNotationArray( $this->newSettings )); |
|
45 | + glsr( OptionManager::class )->set( glsr( Helper::class )->convertDotNotationArray( $this->newSettings ) ); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | protected function getOldSettings() |
62 | 62 | { |
63 | - $settings = glsr( Helper::class )->flattenArray( get_option( Application::ID.'-v2', [] )); |
|
63 | + $settings = glsr( Helper::class )->flattenArray( get_option( Application::ID.'-v2', [] ) ); |
|
64 | 64 | return wp_parse_args( $settings, [ |
65 | 65 | 'settings.general.notification' => '', |
66 | 66 | 'settings.general.webhook_url' => '', |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | 'settings.reviews-form.recaptcha.key' => $this->newSettings['submissions.recaptcha.key'], |
74 | 74 | 'settings.reviews-form.recaptcha.secret' => $this->newSettings['submissions.recaptcha.secret'], |
75 | 75 | 'settings.reviews-form.recaptcha.position' => $this->newSettings['submissions.recaptcha.position'], |
76 | - ]); |
|
76 | + ] ); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -97,15 +97,15 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected function migrateRecaptchaSettings() |
99 | 99 | { |
100 | - if( in_array( $this->oldSettings['settings.reviews-form.recaptcha.integration'], ['custom', 'invisible-recaptcha'] )) { |
|
100 | + if( in_array( $this->oldSettings['settings.reviews-form.recaptcha.integration'], ['custom', 'invisible-recaptcha'] ) ) { |
|
101 | 101 | $this->newSettings['settings.submissions.recaptcha.integration'] == 'all'; |
102 | 102 | } |
103 | 103 | if( $this->oldSettings['settings.reviews-form.recaptcha.integration'] == 'invisible-recaptcha' ) { |
104 | - $invisibleRecaptchaOptions = wp_parse_args( get_site_option( 'ic-settings', [] , false ). [ |
|
104 | + $invisibleRecaptchaOptions = wp_parse_args( get_site_option( 'ic-settings', [], false ).[ |
|
105 | 105 | 'BadgePosition' => $this->oldSettings['settings.reviews-form.recaptcha.position'], |
106 | 106 | 'SecretKey' => $this->oldSettings['settings.reviews-form.recaptcha.secret'], |
107 | 107 | 'SiteKey' => $this->oldSettings['settings.reviews-form.recaptcha.key'], |
108 | - ]); |
|
108 | + ] ); |
|
109 | 109 | $this->newSettings['settings.submissions.recaptcha.key'] = $invisibleRecaptchaOptions['SiteKey']; |
110 | 110 | $this->newSettings['settings.submissions.recaptcha.secret'] = $invisibleRecaptchaOptions['SecretKey']; |
111 | 111 | $this->newSettings['settings.submissions.recaptcha.position'] = $invisibleRecaptchaOptions['BadgePosition']; |
@@ -87,7 +87,9 @@ |
||
87 | 87 | 'webhook' => 'slack', |
88 | 88 | ]; |
89 | 89 | foreach( $notifications as $old => $new ) { |
90 | - if( $this->oldSettings['settings.general.notification'] != $old )continue; |
|
90 | + if( $this->oldSettings['settings.general.notification'] != $old ) { |
|
91 | + continue; |
|
92 | + } |
|
91 | 93 | $this->newSettings['settings.general.notifications'][] = $new; |
92 | 94 | } |
93 | 95 | } |
@@ -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( is_null( glsr()->schemas ))return; |
|
83 | + if( is_null( 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 )->normalizeTerms( $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 | /** |
@@ -34,14 +34,14 @@ discard block |
||
34 | 34 | public function build( array $args = [] ) |
35 | 35 | { |
36 | 36 | $this->args = $args; |
37 | - $counts = glsr( CountsManager::class )->get([ |
|
37 | + $counts = glsr( CountsManager::class )->get( [ |
|
38 | 38 | 'post_ids' => glsr( Helper::class )->convertStringToArray( $args['assigned_to'] ), |
39 | 39 | 'term_ids' => glsr( Helper::class )->convertStringToArray( $args['category'] ), |
40 | - ]); |
|
40 | + ] ); |
|
41 | 41 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
42 | 42 | 'min' => $args['rating'], |
43 | - ]); |
|
44 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
43 | + ] ); |
|
44 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return; |
|
45 | 45 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
46 | 46 | $this->generateSchema(); |
47 | 47 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | 'stars' => $this->buildStars(), |
54 | 54 | 'text' => $this->buildText(), |
55 | 55 | ], |
56 | - ]); |
|
56 | + ] ); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -61,15 +61,15 @@ discard block |
||
61 | 61 | */ |
62 | 62 | protected function buildPercentage() |
63 | 63 | { |
64 | - if( $this->isHidden( 'bars' ))return; |
|
65 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
|
66 | - $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
|
64 | + if( $this->isHidden( 'bars' ) )return; |
|
65 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) ); |
|
66 | + $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use($percentages) { |
|
67 | 67 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
68 | 68 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
69 | 69 | $percent = $this->buildPercentagePercent( $percentages[$level] ); |
70 | 70 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
71 | 71 | 'class' => 'glsr-bar', |
72 | - ]); |
|
72 | + ] ); |
|
73 | 73 | }); |
74 | 74 | return $this->wrap( 'percentage', $bars ); |
75 | 75 | } |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected function buildPercentageBackground( $percent ) |
82 | 82 | { |
83 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
83 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
84 | 84 | 'class' => 'glsr-bar-background-percent', |
85 | 85 | 'style' => 'width:'.$percent, |
86 | - ]); |
|
86 | + ] ); |
|
87 | 87 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
88 | 88 | } |
89 | 89 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | protected function buildRating() |
112 | 112 | { |
113 | - if( $this->isHidden( 'rating' ))return; |
|
113 | + if( $this->isHidden( 'rating' ) )return; |
|
114 | 114 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
115 | 115 | } |
116 | 116 | |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | protected function buildStars() |
121 | 121 | { |
122 | - if( $this->isHidden( 'stars' ))return; |
|
122 | + if( $this->isHidden( 'stars' ) )return; |
|
123 | 123 | $stars = glsr( Partial::class )->build( 'star-rating', ['rating' => $this->averageRating] ); |
124 | 124 | return $this->wrap( 'stars', $stars ); |
125 | 125 | } |
@@ -129,9 +129,9 @@ discard block |
||
129 | 129 | */ |
130 | 130 | protected function buildText() |
131 | 131 | { |
132 | - if( $this->isHidden( 'summary' ))return; |
|
133 | - $count = intval( array_sum( $this->ratingCounts )); |
|
134 | - if( empty( $this->args['text'] )) { |
|
132 | + if( $this->isHidden( 'summary' ) )return; |
|
133 | + $count = intval( array_sum( $this->ratingCounts ) ); |
|
134 | + if( empty($this->args['text']) ) { |
|
135 | 135 | // @todo document this change |
136 | 136 | $this->args['text'] = _nx( |
137 | 137 | '{rating} out of {max} stars (based on {num} review)', |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | ); |
143 | 143 | } |
144 | 144 | $summary = str_replace( |
145 | - ['{rating}','{max}', '{num}'], |
|
145 | + ['{rating}', '{max}', '{num}'], |
|
146 | 146 | [$this->averageRating, Rating::MAX_RATING, $count], |
147 | 147 | $this->args['text'] |
148 | 148 | ); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | */ |
155 | 155 | protected function generateSchema() |
156 | 156 | { |
157 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
157 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
158 | 158 | glsr( Schema::class )->store( |
159 | 159 | glsr( Schema::class )->buildSummary( $this->args ) |
160 | 160 | ); |
@@ -186,6 +186,6 @@ discard block |
||
186 | 186 | { |
187 | 187 | return glsr( Builder::class )->div( $value, [ |
188 | 188 | 'class' => 'glsr-summary-'.$key, |
189 | - ]); |
|
189 | + ] ); |
|
190 | 190 | } |
191 | 191 | } |
@@ -41,7 +41,9 @@ discard block |
||
41 | 41 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
42 | 42 | 'min' => $args['rating'], |
43 | 43 | ]); |
44 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
44 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' )) { |
|
45 | + return; |
|
46 | + } |
|
45 | 47 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
46 | 48 | $this->generateSchema(); |
47 | 49 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -61,7 +63,9 @@ discard block |
||
61 | 63 | */ |
62 | 64 | protected function buildPercentage() |
63 | 65 | { |
64 | - if( $this->isHidden( 'bars' ))return; |
|
66 | + if( $this->isHidden( 'bars' )) { |
|
67 | + return; |
|
68 | + } |
|
65 | 69 | $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
66 | 70 | $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
67 | 71 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
@@ -110,7 +114,9 @@ discard block |
||
110 | 114 | */ |
111 | 115 | protected function buildRating() |
112 | 116 | { |
113 | - if( $this->isHidden( 'rating' ))return; |
|
117 | + if( $this->isHidden( 'rating' )) { |
|
118 | + return; |
|
119 | + } |
|
114 | 120 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
115 | 121 | } |
116 | 122 | |
@@ -119,7 +125,9 @@ discard block |
||
119 | 125 | */ |
120 | 126 | protected function buildStars() |
121 | 127 | { |
122 | - if( $this->isHidden( 'stars' ))return; |
|
128 | + if( $this->isHidden( 'stars' )) { |
|
129 | + return; |
|
130 | + } |
|
123 | 131 | $stars = glsr( Partial::class )->build( 'star-rating', ['rating' => $this->averageRating] ); |
124 | 132 | return $this->wrap( 'stars', $stars ); |
125 | 133 | } |
@@ -129,7 +137,9 @@ discard block |
||
129 | 137 | */ |
130 | 138 | protected function buildText() |
131 | 139 | { |
132 | - if( $this->isHidden( 'summary' ))return; |
|
140 | + if( $this->isHidden( 'summary' )) { |
|
141 | + return; |
|
142 | + } |
|
133 | 143 | $count = intval( array_sum( $this->ratingCounts )); |
134 | 144 | if( empty( $this->args['text'] )) { |
135 | 145 | // @todo document this change |
@@ -154,7 +164,9 @@ discard block |
||
154 | 164 | */ |
155 | 165 | protected function generateSchema() |
156 | 166 | { |
157 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
167 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
168 | + return; |
|
169 | + } |
|
158 | 170 | glsr( Schema::class )->store( |
159 | 171 | glsr( Schema::class )->buildSummary( $this->args ) |
160 | 172 | ); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | 'loader' => '<div class="glsr-loader"></div>', |
28 | 28 | 'screen_reader_text' => __( 'Site Reviews navigation', 'site-reviews' ), |
29 | 29 | ], |
30 | - ]); |
|
30 | + ] ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | */ |
36 | 36 | protected function buildLinks() |
37 | 37 | { |
38 | - $args = glsr( Style::class )->paginationArgs([ |
|
38 | + $args = glsr( Style::class )->paginationArgs( [ |
|
39 | 39 | 'current' => $this->args['paged'], |
40 | 40 | 'total' => $this->args['total'], |
41 | - ]); |
|
41 | + ] ); |
|
42 | 42 | if( is_front_page() ) { |
43 | - unset( $args['format'] ); |
|
43 | + unset($args['format']); |
|
44 | 44 | } |
45 | 45 | $args = apply_filters( 'site-reviews/paginate_links/args', $args, $this->args ); |
46 | 46 | return paginate_links( $args ); |
@@ -54,6 +54,6 @@ discard block |
||
54 | 54 | return wp_parse_args( $args, [ |
55 | 55 | 'paged' => glsr( QueryBuilder::class )->getPaged(), |
56 | 56 | 'total' => 1, |
57 | - ]); |
|
57 | + ] ); |
|
58 | 58 | } |
59 | 59 | } |
@@ -20,7 +20,9 @@ |
||
20 | 20 | public function build( array $args = [] ) |
21 | 21 | { |
22 | 22 | $this->args = $this->normalize( $args ); |
23 | - if( $this->args['total'] < 2 )return; |
|
23 | + if( $this->args['total'] < 2 ) { |
|
24 | + return; |
|
25 | + } |
|
24 | 26 | return glsr( Template::class )->build( 'templates/pagination', [ |
25 | 27 | 'context' => [ |
26 | 28 | 'links' => apply_filters( 'site-reviews/paginate_links', $this->buildLinks(), $this->args ), |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'navigation' => $navigation, |
58 | 58 | 'reviews' => $this->buildReviews(), |
59 | 59 | ], |
60 | - ]); |
|
60 | + ] ); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | $reviews = ''; |
69 | 69 | foreach( $this->reviews->results as $index => $result ) { |
70 | 70 | $this->current = $index; |
71 | - $reviews.= glsr( Template::class )->build( 'templates/review', [ |
|
71 | + $reviews .= glsr( Template::class )->build( 'templates/review', [ |
|
72 | 72 | 'context' => $this->buildReview( $result )->values, |
73 | - ]); |
|
73 | + ] ); |
|
74 | 74 | } |
75 | 75 | return $reviews; |
76 | 76 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $renderedFields = []; |
86 | 86 | foreach( $review as $key => $value ) { |
87 | 87 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
88 | - if( !method_exists( $this, $method ))continue; |
|
88 | + if( !method_exists( $this, $method ) )continue; |
|
89 | 89 | $renderedFields[$key] = $this->$method( $key, $value ); |
90 | 90 | } |
91 | 91 | $renderedFields = apply_filters( 'site-reviews/review/build/after', (array)$renderedFields ); |
@@ -99,12 +99,12 @@ discard block |
||
99 | 99 | */ |
100 | 100 | protected function buildOptionAssignedTo( $key, $value ) |
101 | 101 | { |
102 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
102 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
103 | 103 | $post = glsr( Polylang::class )->getPost( $value ); |
104 | - if( !( $post instanceof WP_Post ))return; |
|
104 | + if( !($post instanceof WP_Post) )return; |
|
105 | 105 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
106 | 106 | 'href' => get_the_permalink( $post->ID ), |
107 | - ]); |
|
107 | + ] ); |
|
108 | 108 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
109 | 109 | return $this->wrap( $key, '<span>'.$assignedTo.'</span>' ); |
110 | 110 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | protected function buildOptionAuthor( $key, $value ) |
118 | 118 | { |
119 | - if( $this->isHidden( $key ))return; |
|
119 | + if( $this->isHidden( $key ) )return; |
|
120 | 120 | return $this->wrap( $key, '<span>'.$value.'</span>' ); |
121 | 121 | } |
122 | 122 | |
@@ -127,13 +127,13 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function buildOptionAvatar( $key, $value ) |
129 | 129 | { |
130 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
130 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
131 | 131 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
132 | - return $this->wrap( $key, glsr( Builder::class )->img([ |
|
132 | + return $this->wrap( $key, glsr( Builder::class )->img( [ |
|
133 | 133 | 'src' => $this->generateAvatar( $value ), |
134 | 134 | 'height' => $size, |
135 | 135 | 'width' => $size, |
136 | - ])); |
|
136 | + ] ) ); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | /** |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | protected function buildOptionContent( $key, $value ) |
145 | 145 | { |
146 | 146 | $text = $this->normalizeText( $value ); |
147 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
147 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
148 | 148 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
149 | 149 | } |
150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | */ |
156 | 156 | protected function buildOptionDate( $key, $value ) |
157 | 157 | { |
158 | - if( $this->isHidden( $key ))return; |
|
158 | + if( $this->isHidden( $key ) )return; |
|
159 | 159 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
160 | 160 | if( $dateFormat == 'relative' ) { |
161 | 161 | $date = glsr( Date::class )->relative( $value ); |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | $format = $dateFormat == 'custom' |
165 | 165 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
166 | 166 | : (string)get_option( 'date_format' ); |
167 | - $date = date_i18n( $format, strtotime( $value )); |
|
167 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
168 | 168 | } |
169 | 169 | return $this->wrap( $key, '<span>'.$date.'</span>' ); |
170 | 170 | } |
@@ -176,10 +176,10 @@ discard block |
||
176 | 176 | */ |
177 | 177 | protected function buildOptionRating( $key, $value ) |
178 | 178 | { |
179 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
179 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
180 | 180 | $rating = glsr( Partial::class )->build( 'star-rating', [ |
181 | 181 | 'rating' => $value, |
182 | - ]); |
|
182 | + ] ); |
|
183 | 183 | return $this->wrap( $key, $rating ); |
184 | 184 | } |
185 | 185 | |
@@ -190,8 +190,8 @@ discard block |
||
190 | 190 | */ |
191 | 191 | protected function buildOptionResponse( $key, $value ) |
192 | 192 | { |
193 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
194 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
193 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
194 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
195 | 195 | $text = $this->normalizeText( $value ); |
196 | 196 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
197 | 197 | return $this->wrap( $key, |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | */ |
208 | 208 | protected function buildOptionTitle( $key, $value ) |
209 | 209 | { |
210 | - if( $this->isHidden( $key ))return; |
|
211 | - if( empty( $value )) { |
|
210 | + if( $this->isHidden( $key ) )return; |
|
211 | + if( empty($value) ) { |
|
212 | 212 | $value = __( 'No Title', 'site-reviews' ); |
213 | 213 | } |
214 | 214 | return $this->wrap( $key, '<h3>'.$value.'</h3>' ); |
@@ -225,10 +225,10 @@ discard block |
||
225 | 225 | return $avatarUrl; |
226 | 226 | } |
227 | 227 | $authorIdOrEmail = get_the_author_meta( 'ID', $review->user_id ); |
228 | - if( empty( $authorIdOrEmail )) { |
|
228 | + if( empty($authorIdOrEmail) ) { |
|
229 | 229 | $authorIdOrEmail = $review->email; |
230 | 230 | } |
231 | - if( $newAvatar = get_avatar_url( $authorIdOrEmail )) { |
|
231 | + if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) { |
|
232 | 232 | return $newAvatar; |
233 | 233 | } |
234 | 234 | return $avatarUrl; |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | */ |
240 | 240 | protected function generateSchema() |
241 | 241 | { |
242 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
242 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
243 | 243 | glsr( Schema::class )->store( |
244 | 244 | glsr( Schema::class )->build( $this->args ) |
245 | 245 | ); |
@@ -262,18 +262,18 @@ discard block |
||
262 | 262 | */ |
263 | 263 | protected function getExcerpt( $text ) |
264 | 264 | { |
265 | - $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 )); |
|
265 | + $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ) ); |
|
266 | 266 | $split = extension_loaded( 'intl' ) |
267 | 267 | ? $this->getExcerptIntlSplit( $text, $limit ) |
268 | 268 | : $this->getExcerptSplit( $text, $limit ); |
269 | 269 | $hiddenText = substr( $text, $split ); |
270 | - if( !empty( $hiddenText )) { |
|
270 | + if( !empty($hiddenText) ) { |
|
271 | 271 | $showMore = glsr( Builder::class )->span( $hiddenText, [ |
272 | 272 | 'class' => 'glsr-hidden glsr-hidden-text', |
273 | 273 | 'data-show-less' => __( 'Show less', 'site-reviews' ), |
274 | 274 | 'data-show-more' => __( 'Show more', 'site-reviews' ), |
275 | - ]); |
|
276 | - $text = ltrim( substr( $text, 0, $split )).$showMore; |
|
275 | + ] ); |
|
276 | + $text = ltrim( substr( $text, 0, $split ) ).$showMore; |
|
277 | 277 | } |
278 | 278 | return nl2br( $text ); |
279 | 279 | } |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | $words = IntlRuleBasedBreakIterator::createWordInstance( '' ); |
289 | 289 | $words->setText( $text ); |
290 | 290 | $count = 0; |
291 | - foreach( $words as $offset ){ |
|
291 | + foreach( $words as $offset ) { |
|
292 | 292 | if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
293 | 293 | $count++; |
294 | 294 | if( $count != $limit )continue; |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | protected function getExcerptSplit( $text, $limit ) |
306 | 306 | { |
307 | 307 | if( str_word_count( $text, 0 ) > $limit ) { |
308 | - $words = array_keys( str_word_count( $text, 2 )); |
|
308 | + $words = array_keys( str_word_count( $text, 2 ) ); |
|
309 | 309 | return $words[$limit]; |
310 | 310 | } |
311 | 311 | return strlen( $text ); |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | */ |
319 | 319 | protected function getOption( $path, $fallback = '' ) |
320 | 320 | { |
321 | - if( array_key_exists( $path, $this->options )) { |
|
321 | + if( array_key_exists( $path, $this->options ) ) { |
|
322 | 322 | return $this->options[$path]; |
323 | 323 | } |
324 | 324 | return $fallback; |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | */ |
332 | 332 | protected function isHidden( $key, $path = '' ) |
333 | 333 | { |
334 | - $isOptionEnabled = !empty( $path ) |
|
334 | + $isOptionEnabled = !empty($path) |
|
335 | 335 | ? $this->isOptionEnabled( $path ) |
336 | 336 | : true; |
337 | 337 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | */ |
345 | 345 | protected function isHiddenOrEmpty( $key, $value ) |
346 | 346 | { |
347 | - return $this->isHidden( $key ) || empty( $value ); |
|
347 | + return $this->isHidden( $key ) || empty($value); |
|
348 | 348 | } |
349 | 349 | |
350 | 350 | /** |
@@ -363,10 +363,10 @@ discard block |
||
363 | 363 | protected function normalizeText( $text ) |
364 | 364 | { |
365 | 365 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
366 | - $text = convert_smilies( strip_shortcodes( $text )); |
|
366 | + $text = convert_smilies( strip_shortcodes( $text ) ); |
|
367 | 367 | $text = str_replace( ']]>', ']]>', $text ); |
368 | 368 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
369 | - if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) { |
|
369 | + if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) { |
|
370 | 370 | $text = $this->getExcerpt( $text ); |
371 | 371 | } |
372 | 372 | return wptexturize( $text ); |
@@ -381,6 +381,6 @@ discard block |
||
381 | 381 | { |
382 | 382 | return glsr( Builder::class )->div( $value, [ |
383 | 383 | 'class' => 'glsr-review-'.$key, |
384 | - ]); |
|
384 | + ] ); |
|
385 | 385 | } |
386 | 386 | } |
@@ -85,7 +85,9 @@ discard block |
||
85 | 85 | $renderedFields = []; |
86 | 86 | foreach( $review as $key => $value ) { |
87 | 87 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
88 | - if( !method_exists( $this, $method ))continue; |
|
88 | + if( !method_exists( $this, $method )) { |
|
89 | + continue; |
|
90 | + } |
|
89 | 91 | $renderedFields[$key] = $this->$method( $key, $value ); |
90 | 92 | } |
91 | 93 | $renderedFields = apply_filters( 'site-reviews/review/build/after', (array)$renderedFields ); |
@@ -99,9 +101,13 @@ discard block |
||
99 | 101 | */ |
100 | 102 | protected function buildOptionAssignedTo( $key, $value ) |
101 | 103 | { |
102 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
104 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
105 | + return; |
|
106 | + } |
|
103 | 107 | $post = glsr( Polylang::class )->getPost( $value ); |
104 | - if( !( $post instanceof WP_Post ))return; |
|
108 | + if( !( $post instanceof WP_Post )) { |
|
109 | + return; |
|
110 | + } |
|
105 | 111 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
106 | 112 | 'href' => get_the_permalink( $post->ID ), |
107 | 113 | ]); |
@@ -116,7 +122,9 @@ discard block |
||
116 | 122 | */ |
117 | 123 | protected function buildOptionAuthor( $key, $value ) |
118 | 124 | { |
119 | - if( $this->isHidden( $key ))return; |
|
125 | + if( $this->isHidden( $key )) { |
|
126 | + return; |
|
127 | + } |
|
120 | 128 | return $this->wrap( $key, '<span>'.$value.'</span>' ); |
121 | 129 | } |
122 | 130 | |
@@ -127,7 +135,9 @@ discard block |
||
127 | 135 | */ |
128 | 136 | protected function buildOptionAvatar( $key, $value ) |
129 | 137 | { |
130 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
138 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
139 | + return; |
|
140 | + } |
|
131 | 141 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
132 | 142 | return $this->wrap( $key, glsr( Builder::class )->img([ |
133 | 143 | 'src' => $this->generateAvatar( $value ), |
@@ -144,7 +154,9 @@ discard block |
||
144 | 154 | protected function buildOptionContent( $key, $value ) |
145 | 155 | { |
146 | 156 | $text = $this->normalizeText( $value ); |
147 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
157 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
158 | + return; |
|
159 | + } |
|
148 | 160 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
149 | 161 | } |
150 | 162 | |
@@ -155,7 +167,9 @@ discard block |
||
155 | 167 | */ |
156 | 168 | protected function buildOptionDate( $key, $value ) |
157 | 169 | { |
158 | - if( $this->isHidden( $key ))return; |
|
170 | + if( $this->isHidden( $key )) { |
|
171 | + return; |
|
172 | + } |
|
159 | 173 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
160 | 174 | if( $dateFormat == 'relative' ) { |
161 | 175 | $date = glsr( Date::class )->relative( $value ); |
@@ -176,7 +190,9 @@ discard block |
||
176 | 190 | */ |
177 | 191 | protected function buildOptionRating( $key, $value ) |
178 | 192 | { |
179 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
193 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
194 | + return; |
|
195 | + } |
|
180 | 196 | $rating = glsr( Partial::class )->build( 'star-rating', [ |
181 | 197 | 'rating' => $value, |
182 | 198 | ]); |
@@ -190,7 +206,9 @@ discard block |
||
190 | 206 | */ |
191 | 207 | protected function buildOptionResponse( $key, $value ) |
192 | 208 | { |
193 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
209 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
210 | + return; |
|
211 | + } |
|
194 | 212 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
195 | 213 | $text = $this->normalizeText( $value ); |
196 | 214 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -207,7 +225,9 @@ discard block |
||
207 | 225 | */ |
208 | 226 | protected function buildOptionTitle( $key, $value ) |
209 | 227 | { |
210 | - if( $this->isHidden( $key ))return; |
|
228 | + if( $this->isHidden( $key )) { |
|
229 | + return; |
|
230 | + } |
|
211 | 231 | if( empty( $value )) { |
212 | 232 | $value = __( 'No Title', 'site-reviews' ); |
213 | 233 | } |
@@ -239,7 +259,9 @@ discard block |
||
239 | 259 | */ |
240 | 260 | protected function generateSchema() |
241 | 261 | { |
242 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
262 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
263 | + return; |
|
264 | + } |
|
243 | 265 | glsr( Schema::class )->store( |
244 | 266 | glsr( Schema::class )->build( $this->args ) |
245 | 267 | ); |
@@ -289,9 +311,13 @@ discard block |
||
289 | 311 | $words->setText( $text ); |
290 | 312 | $count = 0; |
291 | 313 | foreach( $words as $offset ){ |
292 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
314 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
315 | + continue; |
|
316 | + } |
|
293 | 317 | $count++; |
294 | - if( $count != $limit )continue; |
|
318 | + if( $count != $limit ) { |
|
319 | + continue; |
|
320 | + } |
|
295 | 321 | return $offset; |
296 | 322 | } |
297 | 323 | return strlen( $text ); |
@@ -18,7 +18,7 @@ |
||
18 | 18 | 'avatar' => '', |
19 | 19 | 'content' => '', |
20 | 20 | 'custom' => '', |
21 | - 'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' )), |
|
21 | + 'date' => get_date_from_gmt( gmdate( 'Y-m-d H:i:s' ) ), |
|
22 | 22 | 'email' => '', |
23 | 23 | 'ip_address' => glsr( Helper::class )->getIpAddress(), |
24 | 24 | 'pinned' => false, |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function callbackRegisterSettings( $input ) |
19 | 19 | { |
20 | - if( !is_array( $input )) { |
|
20 | + if( !is_array( $input ) ) { |
|
21 | 21 | $input = ['settings' => []]; |
22 | 22 | } |
23 | 23 | if( key( $input ) == 'settings' ) { |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | $options = $this->sanitizeGeneral( $input, $options ); |
26 | 26 | $options = $this->sanitizeSubmissions( $input, $options ); |
27 | 27 | $options = $this->sanitizeTranslations( $input, $options ); |
28 | - glsr( Notice::class )->addSuccess( __( 'Settings updated.', 'site-reviews' )); |
|
28 | + glsr( Notice::class )->addSuccess( __( 'Settings updated.', 'site-reviews' ) ); |
|
29 | 29 | return $options; |
30 | 30 | } |
31 | 31 | return $input; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | { |
40 | 40 | register_setting( Application::ID.'-settings', OptionManager::databaseKey(), [ |
41 | 41 | 'sanitize_callback' => [$this, 'callbackRegisterSettings'], |
42 | - ]); |
|
42 | + ] ); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -51,14 +51,14 @@ discard block |
||
51 | 51 | if( $inputForm['support']['polylang'] == 'yes' ) { |
52 | 52 | if( !glsr( Polylang::class )->isActive() ) { |
53 | 53 | $options['settings']['general']['support']['polylang'] = 'no'; |
54 | - glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' )); |
|
54 | + glsr( Notice::class )->addError( __( 'Please install/activate the Polylang plugin to enable integration.', 'site-reviews' ) ); |
|
55 | 55 | } |
56 | 56 | else if( !glsr( Polylang::class )->isSupported() ) { |
57 | 57 | $options['settings']['general']['support']['polylang'] = 'no'; |
58 | - glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' )); |
|
58 | + glsr( Notice::class )->addError( __( 'Please update the Polylang plugin to v2.3.0 or greater to enable integration.', 'site-reviews' ) ); |
|
59 | 59 | } |
60 | 60 | } |
61 | - if( !isset( $inputForm['notifications'] )) { |
|
61 | + if( !isset($inputForm['notifications']) ) { |
|
62 | 62 | $options['settings']['general']['notifications'] = []; |
63 | 63 | } |
64 | 64 | if( trim( $inputForm['notification_message'] ) == '' ) { |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | protected function sanitizeSubmissions( array $input, array $options ) |
74 | 74 | { |
75 | 75 | $inputForm = $input['settings']['submissions']; |
76 | - if( !isset( $inputForm['required'] )) { |
|
76 | + if( !isset($inputForm['required']) ) { |
|
77 | 77 | $options['settings']['submissions']['required'] = []; |
78 | 78 | } |
79 | 79 | return $options; |
@@ -84,14 +84,14 @@ discard block |
||
84 | 84 | */ |
85 | 85 | protected function sanitizeTranslations( array $input, array $options ) |
86 | 86 | { |
87 | - if( isset( $input['settings']['strings'] )) { |
|
88 | - $options['settings']['strings'] = array_values( array_filter( $input['settings']['strings'] )); |
|
87 | + if( isset($input['settings']['strings']) ) { |
|
88 | + $options['settings']['strings'] = array_values( array_filter( $input['settings']['strings'] ) ); |
|
89 | 89 | $allowedTags = ['a' => ['class' => [], 'href' => [], 'target' => []]]; |
90 | - array_walk( $options['settings']['strings'], function( &$string ) use( $allowedTags ) { |
|
91 | - if( isset( $string['s2'] )) { |
|
90 | + array_walk( $options['settings']['strings'], function( &$string ) use($allowedTags) { |
|
91 | + if( isset($string['s2']) ) { |
|
92 | 92 | $string['s2'] = wp_kses( $string['s2'], $allowedTags ); |
93 | 93 | } |
94 | - if( isset( $string['p2'] )) { |
|
94 | + if( isset($string['p2']) ) { |
|
95 | 95 | $string['p2'] = wp_kses( $string['p2'], $allowedTags ); |
96 | 96 | } |
97 | 97 | }); |
@@ -17,14 +17,14 @@ discard block |
||
17 | 17 | $review = glsr( ReviewManager::class )->create( $command ); |
18 | 18 | if( !$review ) { |
19 | 19 | glsr( Session::class )->set( $command->form_id.'errors', [] ); |
20 | - glsr( Session::class )->set( $command->form_id.'message', __( 'Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews' )); |
|
20 | + glsr( Session::class )->set( $command->form_id.'message', __( 'Your review could not be submitted and the error has been logged. Please notify the site admin.', 'site-reviews' ) ); |
|
21 | 21 | return; |
22 | 22 | } |
23 | - glsr( Session::class )->set( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' )); |
|
23 | + glsr( Session::class )->set( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' ) ); |
|
24 | 24 | glsr( Notification::class )->send( $review ); |
25 | 25 | do_action( 'site-reviews/review/submitted', $review ); |
26 | 26 | if( $command->ajax_request )return; |
27 | - wp_safe_redirect( $this->getReferer( $command )); |
|
27 | + wp_safe_redirect( $this->getReferer( $command ) ); |
|
28 | 28 | exit; |
29 | 29 | } |
30 | 30 | |
@@ -33,11 +33,11 @@ discard block |
||
33 | 33 | */ |
34 | 34 | protected function getReferer( Command $command ) |
35 | 35 | { |
36 | - $referer = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ))); |
|
37 | - if( empty( $referer )) { |
|
36 | + $referer = trim( strval( get_post_meta( $command->post_id, 'redirect_to', true ) ) ); |
|
37 | + if( empty($referer) ) { |
|
38 | 38 | $referer = $command->referer; |
39 | 39 | } |
40 | - if( empty( $referer )) { |
|
40 | + if( empty($referer) ) { |
|
41 | 41 | glsr_log()->warning( 'The form referer ($_SERVER[REQUEST_URI]) was empty.' )->info( $command ); |
42 | 42 | $referer = home_url(); |
43 | 43 | } |
@@ -23,7 +23,9 @@ |
||
23 | 23 | glsr( Session::class )->set( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' )); |
24 | 24 | glsr( Notification::class )->send( $review ); |
25 | 25 | do_action( 'site-reviews/review/submitted', $review ); |
26 | - if( $command->ajax_request )return; |
|
26 | + if( $command->ajax_request ) { |
|
27 | + return; |
|
28 | + } |
|
27 | 29 | wp_safe_redirect( $this->getReferer( $command )); |
28 | 30 | exit; |
29 | 31 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | $className = $this->camelCase( $name ); |
18 | 18 | $path = ltrim( str_replace( __NAMESPACE__, '', $path ), '\\' ); |
19 | - return !empty( $path ) |
|
19 | + return !empty($path) |
|
20 | 20 | ? __NAMESPACE__.'\\'.$path.'\\'.$className |
21 | 21 | : $className; |
22 | 22 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function buildMethodName( $name, $prefix = '' ) |
30 | 30 | { |
31 | - return lcfirst( $prefix.$this->buildClassName( $name )); |
|
31 | + return lcfirst( $prefix.$this->buildClassName( $name ) ); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function buildPropertyName( $name ) |
39 | 39 | { |
40 | - return lcfirst( $this->buildClassName( $name )); |
|
40 | + return lcfirst( $this->buildClassName( $name ) ); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function camelCase( $string ) |
48 | 48 | { |
49 | - $string = ucwords( str_replace( ['-', '_'], ' ', trim( $string ))); |
|
49 | + $string = ucwords( str_replace( ['-', '_'], ' ', trim( $string ) ) ); |
|
50 | 50 | return str_replace( ' ', '', $string ); |
51 | 51 | } |
52 | 52 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function convertPathToId( $path, $prefix = '' ) |
80 | 80 | { |
81 | - return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix )); |
|
81 | + return str_replace( ['[', ']'], ['-', ''], $this->convertPathToName( $path, $prefix ) ); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | { |
90 | 90 | $levels = explode( '.', $path ); |
91 | 91 | return array_reduce( $levels, function( $result, $value ) { |
92 | - return $result.= '['.$value.']'; |
|
92 | + return $result .= '['.$value.']'; |
|
93 | 93 | }, $prefix ); |
94 | 94 | } |
95 | 95 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function convertStringToArray( $string, $callback = null ) |
102 | 102 | { |
103 | - $array = array_map( 'trim', explode( ',', $string )); |
|
103 | + $array = array_map( 'trim', explode( ',', $string ) ); |
|
104 | 104 | return $callback |
105 | 105 | ? array_filter( $array, $callback ) |
106 | 106 | : array_filter( $array ); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | */ |
113 | 113 | public function dashCase( $string ) |
114 | 114 | { |
115 | - return str_replace( '_', '-', $this->snakeCase( $string )); |
|
115 | + return str_replace( '_', '-', $this->snakeCase( $string ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function filterInput( $key, array $request = [] ) |
136 | 136 | { |
137 | - if( isset( $request[$key] )) { |
|
137 | + if( isset($request[$key]) ) { |
|
138 | 138 | return $request[$key]; |
139 | 139 | } |
140 | 140 | $variable = filter_input( INPUT_POST, $key ); |
141 | - if( is_null( $variable ) && isset( $_POST[$key] )) { |
|
141 | + if( is_null( $variable ) && isset($_POST[$key]) ) { |
|
142 | 142 | $variable = $_POST[$key]; |
143 | 143 | } |
144 | 144 | return $variable; |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | public function filterInputArray( $key ) |
152 | 152 | { |
153 | 153 | $variable = filter_input( INPUT_POST, $key, FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
154 | - if( empty( $variable ) && !empty( $_POST[$key] ) && is_array( $_POST[$key] )) { |
|
154 | + if( empty($variable) && !empty($_POST[$key]) && is_array( $_POST[$key] ) ) { |
|
155 | 155 | $variable = $_POST[$key]; |
156 | 156 | } |
157 | 157 | return (array)$variable; |
@@ -167,13 +167,13 @@ discard block |
||
167 | 167 | $result = []; |
168 | 168 | foreach( $array as $key => $value ) { |
169 | 169 | $newKey = ltrim( $prefix.'.'.$key, '.' ); |
170 | - if( $this->isIndexedFlatArray( $value )) { |
|
170 | + if( $this->isIndexedFlatArray( $value ) ) { |
|
171 | 171 | if( $flattenValue ) { |
172 | 172 | $value = '['.implode( ', ', $value ).']'; |
173 | 173 | } |
174 | 174 | } |
175 | - else if( is_array( $value )) { |
|
176 | - $result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey )); |
|
175 | + else if( is_array( $value ) ) { |
|
176 | + $result = array_merge( $result, $this->flattenArray( $value, $flattenValue, $newKey ) ); |
|
177 | 177 | continue; |
178 | 178 | } |
179 | 179 | $result[$newKey] = $value; |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | Whip::IPV4 => $cloudflareIps['v4'], |
193 | 193 | Whip::IPV6 => $cloudflareIps['v6'], |
194 | 194 | ], |
195 | - ]))->getValidIpAddress(); |
|
195 | + ] ))->getValidIpAddress(); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | { |
206 | 206 | $keys = explode( '.', $path ); |
207 | 207 | foreach( $keys as $key ) { |
208 | - if( !isset( $values[$key] )) { |
|
208 | + if( !isset($values[$key]) ) { |
|
209 | 209 | return $fallback; |
210 | 210 | } |
211 | 211 | $values = $values[$key]; |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | */ |
220 | 220 | public function isIndexedArray( $array ) |
221 | 221 | { |
222 | - if( !is_array( $array )) { |
|
222 | + if( !is_array( $array ) ) { |
|
223 | 223 | return false; |
224 | 224 | } |
225 | 225 | $current = 0; |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | */ |
239 | 239 | public function isIndexedFlatArray( $array ) |
240 | 240 | { |
241 | - if( !is_array( $array ) || array_filter( $array, 'is_array' )) { |
|
241 | + if( !is_array( $array ) || array_filter( $array, 'is_array' ) ) { |
|
242 | 242 | return false; |
243 | 243 | } |
244 | 244 | return $this->isIndexedArray( $array ); |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | */ |
252 | 252 | public function prefixString( $string, $prefix = '' ) |
253 | 253 | { |
254 | - return $prefix.str_replace( $prefix, '', trim( $string )); |
|
254 | + return $prefix.str_replace( $prefix, '', trim( $string ) ); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | /** |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | */ |
297 | 297 | public function snakeCase( $string ) |
298 | 298 | { |
299 | - if( !ctype_lower( $string )) { |
|
299 | + if( !ctype_lower( $string ) ) { |
|
300 | 300 | $string = preg_replace( '/\s+/u', '', $string ); |
301 | 301 | $string = preg_replace( '/(.)(?=[A-Z])/u', '$1_', $string ); |
302 | 302 | $string = mb_strtolower( $string, 'UTF-8' ); |
@@ -311,6 +311,6 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public function startsWith( $needle, $haystack ) |
313 | 313 | { |
314 | - return substr( $haystack, 0, strlen( $needle )) === $needle; |
|
314 | + return substr( $haystack, 0, strlen( $needle ) ) === $needle; |
|
315 | 315 | } |
316 | 316 | } |