@@ -125,7 +125,9 @@ discard block |
||
125 | 125 | $termId = intval( $termId ); |
126 | 126 | } |
127 | 127 | $term = term_exists( $termId, Application::TAXONOMY ); |
128 | - if( !isset( $term['term_id'] ))continue; |
|
128 | + if( !isset( $term['term_id'] )) { |
|
129 | + continue; |
|
130 | + } |
|
129 | 131 | $terms[] = $term; |
130 | 132 | } |
131 | 133 | return $terms; |
@@ -137,7 +139,9 @@ discard block |
||
137 | 139 | */ |
138 | 140 | public function revert( $postId ) |
139 | 141 | { |
140 | - if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
|
142 | + if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE ) { |
|
143 | + return; |
|
144 | + } |
|
141 | 145 | delete_post_meta( $postId, '_edit_last' ); |
142 | 146 | $result = wp_update_post([ |
143 | 147 | 'ID' => $postId, |
@@ -182,7 +186,9 @@ discard block |
||
182 | 186 | protected function setTerms( $postId, $termIds ) |
183 | 187 | { |
184 | 188 | $termIds = $this->normalizeTermIds( $termIds ); |
185 | - if( empty( $termIds ))return; |
|
189 | + if( empty( $termIds )) { |
|
190 | + return; |
|
191 | + } |
|
186 | 192 | $termTaxonomyIds = wp_set_object_terms( $postId, $termIds, Application::TAXONOMY ); |
187 | 193 | if( is_wp_error( $termTaxonomyIds )) { |
188 | 194 | glsr_log()->error( $termTaxonomyIds->get_error_message() ); |
@@ -37,12 +37,12 @@ discard block |
||
37 | 37 | 'post_type' => Application::POST_TYPE, |
38 | 38 | ]; |
39 | 39 | $postId = wp_insert_post( $postValues, true ); |
40 | - if( is_wp_error( $postId )) { |
|
40 | + if( is_wp_error( $postId ) ) { |
|
41 | 41 | glsr_log()->error( $postId->get_error_message() )->debug( $postValues ); |
42 | 42 | return false; |
43 | 43 | } |
44 | 44 | $this->setTerms( $postId, $command->category ); |
45 | - $review = $this->single( get_post( $postId )); |
|
45 | + $review = $this->single( get_post( $postId ) ); |
|
46 | 46 | do_action( 'site-reviews/review/created', $review, $command ); |
47 | 47 | return $review; |
48 | 48 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function delete( $metaReviewId ) |
55 | 55 | { |
56 | - if( $postId = $this->getPostId( $metaReviewId )) { |
|
56 | + if( $postId = $this->getPostId( $metaReviewId ) ) { |
|
57 | 57 | wp_delete_post( $postId, true ); |
58 | 58 | } |
59 | 59 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $paged = glsr( QueryBuilder::class )->getPaged( |
76 | 76 | wp_validate_boolean( $args['pagination'] ) |
77 | 77 | ); |
78 | - $query = new WP_Query([ |
|
78 | + $query = new WP_Query( [ |
|
79 | 79 | 'meta_key' => 'pinned', |
80 | 80 | 'meta_query' => $metaQuery, |
81 | 81 | 'offset' => $args['offset'], |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | 'post_type' => Application::POST_TYPE, |
89 | 89 | 'posts_per_page' => $args['count'], |
90 | 90 | 'tax_query' => $taxQuery, |
91 | - ]); |
|
91 | + ] ); |
|
92 | 92 | $results = array_map( [$this, 'single'], $query->posts ); |
93 | 93 | $reviews = new Reviews( $results, $query->max_num_pages, $args ); |
94 | 94 | return apply_filters( 'site-reviews/get/reviews', $reviews, $query ); |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | public function normalizeTermIds( $commaSeparatedTermIds ) |
111 | 111 | { |
112 | 112 | $termIds = glsr_array_column( $this->normalizeTerms( $commaSeparatedTermIds ), 'term_id' ); |
113 | - return array_unique( array_map( 'intval', $termIds )); |
|
113 | + return array_unique( array_map( 'intval', $termIds ) ); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -122,11 +122,11 @@ discard block |
||
122 | 122 | $terms = []; |
123 | 123 | $termIds = glsr( Helper::class )->convertStringToArray( $commaSeparatedTermIds ); |
124 | 124 | foreach( $termIds as $termId ) { |
125 | - if( is_numeric( $termId )) { |
|
125 | + if( is_numeric( $termId ) ) { |
|
126 | 126 | $termId = intval( $termId ); |
127 | 127 | } |
128 | 128 | $term = term_exists( $termId, Application::TAXONOMY ); |
129 | - if( !isset( $term['term_id'] ))continue; |
|
129 | + if( !isset($term['term_id']) )continue; |
|
130 | 130 | $terms[] = $term; |
131 | 131 | } |
132 | 132 | return $terms; |
@@ -140,13 +140,13 @@ discard block |
||
140 | 140 | { |
141 | 141 | if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
142 | 142 | delete_post_meta( $postId, '_edit_last' ); |
143 | - $result = wp_update_post([ |
|
143 | + $result = wp_update_post( [ |
|
144 | 144 | 'ID' => $postId, |
145 | 145 | 'post_content' => get_post_meta( $postId, 'content', true ), |
146 | 146 | 'post_date' => get_post_meta( $postId, 'date', true ), |
147 | 147 | 'post_title' => get_post_meta( $postId, 'title', true ), |
148 | - ]); |
|
149 | - if( is_wp_error( $result )) { |
|
148 | + ] ); |
|
149 | + if( is_wp_error( $result ) ) { |
|
150 | 150 | glsr_log()->error( $result->get_error_message() ); |
151 | 151 | } |
152 | 152 | } |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | protected function getNewPostStatus( array $review, $isBlacklisted ) |
171 | 171 | { |
172 | 172 | $requireApproval = glsr( OptionManager::class )->getBool( 'settings.general.require.approval' ); |
173 | - return $review['review_type'] == 'local' && ( $requireApproval || $isBlacklisted ) |
|
173 | + return $review['review_type'] == 'local' && ($requireApproval || $isBlacklisted) |
|
174 | 174 | ? 'pending' |
175 | 175 | : 'publish'; |
176 | 176 | } |
@@ -183,9 +183,9 @@ discard block |
||
183 | 183 | protected function setTerms( $postId, $termIds ) |
184 | 184 | { |
185 | 185 | $termIds = $this->normalizeTermIds( $termIds ); |
186 | - if( empty( $termIds ))return; |
|
186 | + if( empty($termIds) )return; |
|
187 | 187 | $termTaxonomyIds = wp_set_object_terms( $postId, $termIds, Application::TAXONOMY ); |
188 | - if( is_wp_error( $termTaxonomyIds )) { |
|
188 | + if( is_wp_error( $termTaxonomyIds ) ) { |
|
189 | 189 | glsr_log()->error( $termTaxonomyIds->get_error_message() ); |
190 | 190 | } |
191 | 191 | } |
@@ -34,15 +34,15 @@ discard block |
||
34 | 34 | public function build( array $args = [] ) |
35 | 35 | { |
36 | 36 | $this->args = $args; |
37 | - $counts = glsr( CountsManager::class )->get([ |
|
37 | + $counts = glsr( CountsManager::class )->get( [ |
|
38 | 38 | 'post_ids' => glsr( Helper::class )->convertStringToArray( $args['assigned_to'] ), |
39 | 39 | 'term_ids' => glsr( ReviewManager::class )->normalizeTermIds( $args['category'] ), |
40 | 40 | 'type' => $args['type'], |
41 | - ]); |
|
41 | + ] ); |
|
42 | 42 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
43 | 43 | 'min' => $args['rating'], |
44 | - ]); |
|
45 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
44 | + ] ); |
|
45 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return; |
|
46 | 46 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
47 | 47 | $this->generateSchema(); |
48 | 48 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | 'stars' => $this->buildStars(), |
56 | 56 | 'text' => $this->buildText(), |
57 | 57 | ], |
58 | - ]); |
|
58 | + ] ); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -63,9 +63,9 @@ discard block |
||
63 | 63 | */ |
64 | 64 | protected function buildPercentage() |
65 | 65 | { |
66 | - if( $this->isHidden( 'bars' ))return; |
|
67 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
|
68 | - $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
|
66 | + if( $this->isHidden( 'bars' ) )return; |
|
67 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) ); |
|
68 | + $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use($percentages) { |
|
69 | 69 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
70 | 70 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
71 | 71 | $count = apply_filters( 'site-reviews/summary/counts', |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $percent = $this->buildPercentageCount( $count ); |
76 | 76 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
77 | 77 | 'class' => 'glsr-bar', |
78 | - ]); |
|
78 | + ] ); |
|
79 | 79 | }); |
80 | 80 | return $this->wrap( 'percentage', $bars ); |
81 | 81 | } |
@@ -86,10 +86,10 @@ discard block |
||
86 | 86 | */ |
87 | 87 | protected function buildPercentageBackground( $percent ) |
88 | 88 | { |
89 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
89 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
90 | 90 | 'class' => 'glsr-bar-background-percent', |
91 | 91 | 'style' => 'width:'.$percent, |
92 | - ]); |
|
92 | + ] ); |
|
93 | 93 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
94 | 94 | } |
95 | 95 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | protected function buildRating() |
118 | 118 | { |
119 | - if( $this->isHidden( 'rating' ))return; |
|
119 | + if( $this->isHidden( 'rating' ) )return; |
|
120 | 120 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
121 | 121 | } |
122 | 122 | |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | protected function buildStars() |
127 | 127 | { |
128 | - if( $this->isHidden( 'stars' ))return; |
|
128 | + if( $this->isHidden( 'stars' ) )return; |
|
129 | 129 | $stars = glsr_star_rating( $this->averageRating ); |
130 | 130 | return $this->wrap( 'stars', $stars ); |
131 | 131 | } |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | */ |
136 | 136 | protected function buildText() |
137 | 137 | { |
138 | - if( $this->isHidden( 'summary' ))return; |
|
139 | - $count = intval( array_sum( $this->ratingCounts )); |
|
140 | - if( empty( $this->args['text'] )) { |
|
138 | + if( $this->isHidden( 'summary' ) )return; |
|
139 | + $count = intval( array_sum( $this->ratingCounts ) ); |
|
140 | + if( empty($this->args['text']) ) { |
|
141 | 141 | // @todo document this change |
142 | 142 | $this->args['text'] = _nx( |
143 | 143 | '{rating} out of {max} stars (based on {num} review)', |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | ); |
149 | 149 | } |
150 | 150 | $summary = str_replace( |
151 | - ['{rating}','{max}', '{num}'], |
|
151 | + ['{rating}', '{max}', '{num}'], |
|
152 | 152 | [$this->averageRating, Rating::MAX_RATING, $count], |
153 | 153 | $this->args['text'] |
154 | 154 | ); |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | protected function generateSchema() |
162 | 162 | { |
163 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
163 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
164 | 164 | glsr( Schema::class )->store( |
165 | 165 | glsr( Schema::class )->buildSummary( $this->args ) |
166 | 166 | ); |
@@ -192,6 +192,6 @@ discard block |
||
192 | 192 | { |
193 | 193 | return glsr( Builder::class )->div( $value, [ |
194 | 194 | 'class' => 'glsr-summary-'.$key, |
195 | - ]); |
|
195 | + ] ); |
|
196 | 196 | } |
197 | 197 | } |
@@ -42,7 +42,9 @@ discard block |
||
42 | 42 | $this->ratingCounts = glsr( CountsManager::class )->flatten( $counts, [ |
43 | 43 | 'min' => $args['rating'], |
44 | 44 | ]); |
45 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
45 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' )) { |
|
46 | + return; |
|
47 | + } |
|
46 | 48 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
47 | 49 | $this->generateSchema(); |
48 | 50 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -63,7 +65,9 @@ discard block |
||
63 | 65 | */ |
64 | 66 | protected function buildPercentage() |
65 | 67 | { |
66 | - if( $this->isHidden( 'bars' ))return; |
|
68 | + if( $this->isHidden( 'bars' )) { |
|
69 | + return; |
|
70 | + } |
|
67 | 71 | $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
68 | 72 | $bars = array_reduce( range( Rating::MAX_RATING, 1 ), function( $carry, $level ) use( $percentages ) { |
69 | 73 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
@@ -116,7 +120,9 @@ discard block |
||
116 | 120 | */ |
117 | 121 | protected function buildRating() |
118 | 122 | { |
119 | - if( $this->isHidden( 'rating' ))return; |
|
123 | + if( $this->isHidden( 'rating' )) { |
|
124 | + return; |
|
125 | + } |
|
120 | 126 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
121 | 127 | } |
122 | 128 | |
@@ -125,7 +131,9 @@ discard block |
||
125 | 131 | */ |
126 | 132 | protected function buildStars() |
127 | 133 | { |
128 | - if( $this->isHidden( 'stars' ))return; |
|
134 | + if( $this->isHidden( 'stars' )) { |
|
135 | + return; |
|
136 | + } |
|
129 | 137 | $stars = glsr_star_rating( $this->averageRating ); |
130 | 138 | return $this->wrap( 'stars', $stars ); |
131 | 139 | } |
@@ -135,7 +143,9 @@ discard block |
||
135 | 143 | */ |
136 | 144 | protected function buildText() |
137 | 145 | { |
138 | - if( $this->isHidden( 'summary' ))return; |
|
146 | + if( $this->isHidden( 'summary' )) { |
|
147 | + return; |
|
148 | + } |
|
139 | 149 | $count = intval( array_sum( $this->ratingCounts )); |
140 | 150 | if( empty( $this->args['text'] )) { |
141 | 151 | // @todo document this change |
@@ -160,7 +170,9 @@ discard block |
||
160 | 170 | */ |
161 | 171 | protected function generateSchema() |
162 | 172 | { |
163 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
173 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
174 | + return; |
|
175 | + } |
|
164 | 176 | glsr( Schema::class )->store( |
165 | 177 | glsr( Schema::class )->buildSummary( $this->args ) |
166 | 178 | ); |
@@ -67,7 +67,9 @@ discard block |
||
67 | 67 | $field = method_exists( $this, $method ) |
68 | 68 | ? $this->$method( $key, $value ) |
69 | 69 | : apply_filters( 'site-reviews/review/build/'.$key, false, $value, $this, $review ); |
70 | - if( $field === false )continue; |
|
70 | + if( $field === false ) { |
|
71 | + continue; |
|
72 | + } |
|
71 | 73 | $renderedFields[$key] = $field; |
72 | 74 | } |
73 | 75 | $this->wrap( $renderedFields, $review ); |
@@ -95,7 +97,9 @@ discard block |
||
95 | 97 | */ |
96 | 98 | public function generateSchema() |
97 | 99 | { |
98 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
100 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
101 | + return; |
|
102 | + } |
|
99 | 103 | glsr( Schema::class )->store( |
100 | 104 | glsr( Schema::class )->build( $this->args ) |
101 | 105 | ); |
@@ -121,9 +125,13 @@ discard block |
||
121 | 125 | */ |
122 | 126 | protected function buildOptionAssignedTo( $key, $value ) |
123 | 127 | { |
124 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
128 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' )) { |
|
129 | + return; |
|
130 | + } |
|
125 | 131 | $post = glsr( Polylang::class )->getPost( $value ); |
126 | - if( !( $post instanceof WP_Post ))return; |
|
132 | + if( !( $post instanceof WP_Post )) { |
|
133 | + return; |
|
134 | + } |
|
127 | 135 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
128 | 136 | 'href' => get_the_permalink( $post->ID ), |
129 | 137 | ]); |
@@ -138,7 +146,9 @@ discard block |
||
138 | 146 | */ |
139 | 147 | protected function buildOptionAuthor( $key, $value ) |
140 | 148 | { |
141 | - if( $this->isHidden( $key ))return; |
|
149 | + if( $this->isHidden( $key )) { |
|
150 | + return; |
|
151 | + } |
|
142 | 152 | return '<span>'.$value.'</span>'; |
143 | 153 | } |
144 | 154 | |
@@ -149,7 +159,9 @@ discard block |
||
149 | 159 | */ |
150 | 160 | protected function buildOptionAvatar( $key, $value ) |
151 | 161 | { |
152 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
162 | + if( $this->isHidden( $key, 'settings.reviews.avatars' )) { |
|
163 | + return; |
|
164 | + } |
|
153 | 165 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
154 | 166 | return glsr( Builder::class )->img([ |
155 | 167 | 'height' => $size, |
@@ -167,7 +179,9 @@ discard block |
||
167 | 179 | protected function buildOptionContent( $key, $value ) |
168 | 180 | { |
169 | 181 | $text = $this->normalizeText( $value ); |
170 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
182 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
183 | + return; |
|
184 | + } |
|
171 | 185 | return '<p>'.$text.'</p>'; |
172 | 186 | } |
173 | 187 | |
@@ -178,7 +192,9 @@ discard block |
||
178 | 192 | */ |
179 | 193 | protected function buildOptionDate( $key, $value ) |
180 | 194 | { |
181 | - if( $this->isHidden( $key ))return; |
|
195 | + if( $this->isHidden( $key )) { |
|
196 | + return; |
|
197 | + } |
|
182 | 198 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
183 | 199 | if( $dateFormat == 'relative' ) { |
184 | 200 | $date = glsr( Date::class )->relative( $value ); |
@@ -199,7 +215,9 @@ discard block |
||
199 | 215 | */ |
200 | 216 | protected function buildOptionRating( $key, $value ) |
201 | 217 | { |
202 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
218 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
219 | + return; |
|
220 | + } |
|
203 | 221 | return glsr_star_rating( $value ); |
204 | 222 | } |
205 | 223 | |
@@ -210,7 +228,9 @@ discard block |
||
210 | 228 | */ |
211 | 229 | protected function buildOptionResponse( $key, $value ) |
212 | 230 | { |
213 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
231 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
232 | + return; |
|
233 | + } |
|
214 | 234 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
215 | 235 | $text = $this->normalizeText( $value ); |
216 | 236 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -226,7 +246,9 @@ discard block |
||
226 | 246 | */ |
227 | 247 | protected function buildOptionTitle( $key, $value ) |
228 | 248 | { |
229 | - if( $this->isHidden( $key ))return; |
|
249 | + if( $this->isHidden( $key )) { |
|
250 | + return; |
|
251 | + } |
|
230 | 252 | if( empty( $value )) { |
231 | 253 | $value = __( 'No Title', 'site-reviews' ); |
232 | 254 | } |
@@ -285,9 +307,13 @@ discard block |
||
285 | 307 | $words->setText( $text ); |
286 | 308 | $count = 0; |
287 | 309 | foreach( $words as $offset ){ |
288 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
310 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
311 | + continue; |
|
312 | + } |
|
289 | 313 | $count++; |
290 | - if( $count != $limit )continue; |
|
314 | + if( $count != $limit ) { |
|
315 | + continue; |
|
316 | + } |
|
291 | 317 | return $offset; |
292 | 318 | } |
293 | 319 | return strlen( $text ); |
@@ -363,7 +389,9 @@ discard block |
||
363 | 389 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
364 | 390 | array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
365 | 391 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
366 | - if( empty( $value ))return; |
|
392 | + if( empty( $value )) { |
|
393 | + return; |
|
394 | + } |
|
367 | 395 | $value = glsr( Builder::class )->div( $value, [ |
368 | 396 | 'class' => 'glsr-review-'.$key, |
369 | 397 | ]); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | foreach( $this->reviews as $index => $review ) { |
86 | 86 | $renderedReviews[] = glsr( Template::class )->build( 'templates/review', [ |
87 | 87 | 'context' => $this->buildReview( $review )->values, |
88 | - ]); |
|
88 | + ] ); |
|
89 | 89 | } |
90 | 90 | return new ReviewsHtml( $renderedReviews, $this->reviews->max_num_pages, $this->args ); |
91 | 91 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | public function generateSchema() |
97 | 97 | { |
98 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
98 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
99 | 99 | glsr( Schema::class )->store( |
100 | 100 | glsr( Schema::class )->build( $this->args ) |
101 | 101 | ); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | */ |
109 | 109 | public function isHidden( $key, $path = '' ) |
110 | 110 | { |
111 | - $isOptionEnabled = !empty( $path ) |
|
111 | + $isOptionEnabled = !empty($path) |
|
112 | 112 | ? $this->isOptionEnabled( $path ) |
113 | 113 | : true; |
114 | 114 | return in_array( $key, $this->args['hide'] ) || !$isOptionEnabled; |
@@ -121,12 +121,12 @@ discard block |
||
121 | 121 | */ |
122 | 122 | protected function buildOptionAssignedTo( $key, $value ) |
123 | 123 | { |
124 | - if( $this->isHidden( $key, 'settings.reviews.assigned_links' ))return; |
|
124 | + if( $this->isHidden( $key, 'settings.reviews.assigned_links' ) )return; |
|
125 | 125 | $post = glsr( Polylang::class )->getPost( $value ); |
126 | - if( !( $post instanceof WP_Post ))return; |
|
126 | + if( !($post instanceof WP_Post) )return; |
|
127 | 127 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
128 | 128 | 'href' => get_the_permalink( $post->ID ), |
129 | - ]); |
|
129 | + ] ); |
|
130 | 130 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
131 | 131 | return '<span>'.$assignedTo.'</span>'; |
132 | 132 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | protected function buildOptionAuthor( $key, $value ) |
140 | 140 | { |
141 | - if( $this->isHidden( $key ))return; |
|
141 | + if( $this->isHidden( $key ) )return; |
|
142 | 142 | return '<span>'.$value.'</span>'; |
143 | 143 | } |
144 | 144 | |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | */ |
150 | 150 | protected function buildOptionAvatar( $key, $value ) |
151 | 151 | { |
152 | - if( $this->isHidden( $key, 'settings.reviews.avatars' ))return; |
|
152 | + if( $this->isHidden( $key, 'settings.reviews.avatars' ) )return; |
|
153 | 153 | $size = $this->getOption( 'settings.reviews.avatars_size', 40 ); |
154 | - return glsr( Builder::class )->img([ |
|
154 | + return glsr( Builder::class )->img( [ |
|
155 | 155 | 'height' => $size, |
156 | 156 | 'src' => $this->generateAvatar( $value ), |
157 | 157 | 'style' => sprintf( 'width:%1$spx; height:%1$spx;', $size ), |
158 | 158 | 'width' => $size, |
159 | - ]); |
|
159 | + ] ); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | protected function buildOptionContent( $key, $value ) |
168 | 168 | { |
169 | 169 | $text = $this->normalizeText( $value ); |
170 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
170 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
171 | 171 | return '<p>'.$text.'</p>'; |
172 | 172 | } |
173 | 173 | |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | */ |
179 | 179 | protected function buildOptionDate( $key, $value ) |
180 | 180 | { |
181 | - if( $this->isHidden( $key ))return; |
|
181 | + if( $this->isHidden( $key ) )return; |
|
182 | 182 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
183 | 183 | if( $dateFormat == 'relative' ) { |
184 | 184 | $date = glsr( Date::class )->relative( $value ); |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | $format = $dateFormat == 'custom' |
188 | 188 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
189 | 189 | : (string)get_option( 'date_format' ); |
190 | - $date = date_i18n( $format, strtotime( $value )); |
|
190 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
191 | 191 | } |
192 | 192 | return '<span>'.$date.'</span>'; |
193 | 193 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | */ |
200 | 200 | protected function buildOptionRating( $key, $value ) |
201 | 201 | { |
202 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
202 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
203 | 203 | return glsr_star_rating( $value ); |
204 | 204 | } |
205 | 205 | |
@@ -210,8 +210,8 @@ discard block |
||
210 | 210 | */ |
211 | 211 | protected function buildOptionResponse( $key, $value ) |
212 | 212 | { |
213 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
214 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
213 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
214 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
215 | 215 | $text = $this->normalizeText( $value ); |
216 | 216 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
217 | 217 | $response = glsr( Builder::class )->div( $text, ['class' => 'glsr-review-response-inner'] ); |
@@ -226,8 +226,8 @@ discard block |
||
226 | 226 | */ |
227 | 227 | protected function buildOptionTitle( $key, $value ) |
228 | 228 | { |
229 | - if( $this->isHidden( $key ))return; |
|
230 | - if( empty( $value )) { |
|
229 | + if( $this->isHidden( $key ) )return; |
|
230 | + if( empty($value) ) { |
|
231 | 231 | $value = __( 'No Title', 'site-reviews' ); |
232 | 232 | } |
233 | 233 | return '<h3>'.$value.'</h3>'; |
@@ -243,10 +243,10 @@ discard block |
||
243 | 243 | return $avatarUrl; |
244 | 244 | } |
245 | 245 | $authorIdOrEmail = get_the_author_meta( 'ID', $this->current->user_id ); |
246 | - if( empty( $authorIdOrEmail )) { |
|
246 | + if( empty($authorIdOrEmail) ) { |
|
247 | 247 | $authorIdOrEmail = $this->current->email; |
248 | 248 | } |
249 | - if( $newAvatar = get_avatar_url( $authorIdOrEmail )) { |
|
249 | + if( $newAvatar = get_avatar_url( $authorIdOrEmail ) ) { |
|
250 | 250 | return $newAvatar; |
251 | 251 | } |
252 | 252 | return $avatarUrl; |
@@ -258,18 +258,18 @@ discard block |
||
258 | 258 | */ |
259 | 259 | protected function getExcerpt( $text ) |
260 | 260 | { |
261 | - $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 )); |
|
261 | + $limit = intval( $this->getOption( 'settings.reviews.excerpts_length', 55 ) ); |
|
262 | 262 | $split = extension_loaded( 'intl' ) |
263 | 263 | ? $this->getExcerptIntlSplit( $text, $limit ) |
264 | 264 | : $this->getExcerptSplit( $text, $limit ); |
265 | 265 | $hiddenText = substr( $text, $split ); |
266 | - if( !empty( $hiddenText )) { |
|
266 | + if( !empty($hiddenText) ) { |
|
267 | 267 | $showMore = glsr( Builder::class )->span( $hiddenText, [ |
268 | 268 | 'class' => 'glsr-hidden glsr-hidden-text', |
269 | 269 | 'data-show-less' => __( 'Show less', 'site-reviews' ), |
270 | 270 | 'data-show-more' => __( 'Show more', 'site-reviews' ), |
271 | - ]); |
|
272 | - $text = ltrim( substr( $text, 0, $split )).$showMore; |
|
271 | + ] ); |
|
272 | + $text = ltrim( substr( $text, 0, $split ) ).$showMore; |
|
273 | 273 | } |
274 | 274 | return $text; |
275 | 275 | } |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | $words = IntlRuleBasedBreakIterator::createWordInstance( '' ); |
285 | 285 | $words->setText( $text ); |
286 | 286 | $count = 0; |
287 | - foreach( $words as $offset ){ |
|
287 | + foreach( $words as $offset ) { |
|
288 | 288 | if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
289 | 289 | $count++; |
290 | 290 | if( $count != $limit )continue; |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | protected function getExcerptSplit( $text, $limit ) |
302 | 302 | { |
303 | 303 | if( str_word_count( $text, 0 ) > $limit ) { |
304 | - $words = array_keys( str_word_count( $text, 2 )); |
|
304 | + $words = array_keys( str_word_count( $text, 2 ) ); |
|
305 | 305 | return $words[$limit]; |
306 | 306 | } |
307 | 307 | return strlen( $text ); |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | */ |
315 | 315 | protected function getOption( $path, $fallback = '' ) |
316 | 316 | { |
317 | - if( array_key_exists( $path, $this->options )) { |
|
317 | + if( array_key_exists( $path, $this->options ) ) { |
|
318 | 318 | return $this->options[$path]; |
319 | 319 | } |
320 | 320 | return $fallback; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | */ |
328 | 328 | protected function isHiddenOrEmpty( $key, $value ) |
329 | 329 | { |
330 | - return $this->isHidden( $key ) || empty( $value ); |
|
330 | + return $this->isHidden( $key ) || empty($value); |
|
331 | 331 | } |
332 | 332 | |
333 | 333 | /** |
@@ -346,13 +346,13 @@ discard block |
||
346 | 346 | protected function normalizeText( $text ) |
347 | 347 | { |
348 | 348 | $text = wp_kses( $text, wp_kses_allowed_html() ); |
349 | - $text = convert_smilies( strip_shortcodes( $text )); |
|
349 | + $text = convert_smilies( strip_shortcodes( $text ) ); |
|
350 | 350 | $text = str_replace( ']]>', ']]>', $text ); |
351 | 351 | $text = preg_replace( '/(\R){2,}/', '$1', $text ); |
352 | - if( $this->isOptionEnabled( 'settings.reviews.excerpts' )) { |
|
352 | + if( $this->isOptionEnabled( 'settings.reviews.excerpts' ) ) { |
|
353 | 353 | $text = $this->getExcerpt( $text ); |
354 | 354 | } |
355 | - return wptexturize( nl2br( $text )); |
|
355 | + return wptexturize( nl2br( $text ) ); |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | /** |
@@ -361,12 +361,12 @@ discard block |
||
361 | 361 | protected function wrap( array &$renderedFields, Review $review ) |
362 | 362 | { |
363 | 363 | $renderedFields = apply_filters( 'site-reviews/review/wrap', $renderedFields, $review ); |
364 | - array_walk( $renderedFields, function( &$value, $key ) use( $review ) { |
|
364 | + array_walk( $renderedFields, function( &$value, $key ) use($review) { |
|
365 | 365 | $value = apply_filters( 'site-reviews/review/wrap/'.$key, $value, $review ); |
366 | - if( empty( $value ))return; |
|
366 | + if( empty($value) )return; |
|
367 | 367 | $value = glsr( Builder::class )->div( $value, [ |
368 | 368 | 'class' => 'glsr-review-'.$key, |
369 | - ]); |
|
369 | + ] ); |
|
370 | 370 | }); |
371 | 371 | } |
372 | 372 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | if( $assignedPost instanceof WP_Post && $assignedPost->post_status == 'publish' ) { |
22 | 22 | $column = glsr( Builder::class )->a( get_the_title( $assignedPost->ID ), [ |
23 | 23 | 'href' => (string)get_the_permalink( $assignedPost->ID ), |
24 | - ]); |
|
24 | + ] ); |
|
25 | 25 | } |
26 | 26 | return $column; |
27 | 27 | } |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | $pinned = get_post_meta( $postId, 'pinned', true ) |
36 | 36 | ? 'pinned ' |
37 | 37 | : ''; |
38 | - return glsr( Builder::class )->i([ |
|
38 | + return glsr( Builder::class )->i( [ |
|
39 | 39 | 'class' => $pinned.'dashicons dashicons-sticky', |
40 | 40 | 'data-id' => $postId, |
41 | - ]); |
|
41 | + ] ); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function buildColumnReviewer( $postId ) |
49 | 49 | { |
50 | - return strval( get_post_meta( $postId, 'author', true )); |
|
50 | + return strval( get_post_meta( $postId, 'author', true ) ); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | public function buildColumnRating( $postId ) |
59 | 59 | { |
60 | - return glsr_star_rating( intval( get_post_meta( $postId, 'rating', true ))); |
|
60 | + return glsr_star_rating( intval( get_post_meta( $postId, 'rating', true ) ) ); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function renderFilters( $postType ) |
80 | 80 | { |
81 | 81 | if( $postType !== Application::POST_TYPE )return; |
82 | - if( !( $status = filter_input( INPUT_GET, 'post_status' ))) { |
|
82 | + if( !($status = filter_input( INPUT_GET, 'post_status' )) ) { |
|
83 | 83 | $status = 'publish'; |
84 | 84 | } |
85 | 85 | $ratings = glsr( Database::class )->getReviewsMeta( 'rating', $status ); |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | */ |
109 | 109 | protected function renderFilterRatings( $ratings ) |
110 | 110 | { |
111 | - if( empty( $ratings ))return; |
|
112 | - $ratings = array_flip( array_reverse( $ratings )); |
|
111 | + if( empty($ratings) )return; |
|
112 | + $ratings = array_flip( array_reverse( $ratings ) ); |
|
113 | 113 | array_walk( $ratings, function( &$value, $key ) { |
114 | 114 | $label = _n( '%s star', '%s stars', $key, 'site-reviews' ); |
115 | 115 | $value = sprintf( $label, $key ); |
@@ -117,12 +117,12 @@ discard block |
||
117 | 117 | echo glsr( Builder::class )->label( __( 'Filter by rating', 'site-reviews' ), [ |
118 | 118 | 'class' => 'screen-reader-text', |
119 | 119 | 'for' => 'rating', |
120 | - ]); |
|
121 | - echo glsr( Builder::class )->select([ |
|
120 | + ] ); |
|
121 | + echo glsr( Builder::class )->select( [ |
|
122 | 122 | 'name' => 'rating', |
123 | 123 | 'options' => ['' => __( 'All ratings', 'site-reviews' )] + $ratings, |
124 | 124 | 'value' => filter_input( INPUT_GET, 'rating' ), |
125 | - ]); |
|
125 | + ] ); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | echo glsr( Builder::class )->label( __( 'Filter by type', 'site-reviews' ), [ |
136 | 136 | 'class' => 'screen-reader-text', |
137 | 137 | 'for' => 'review_type', |
138 | - ]); |
|
139 | - echo glsr( Builder::class )->select([ |
|
138 | + ] ); |
|
139 | + echo glsr( Builder::class )->select( [ |
|
140 | 140 | 'name' => 'review_type', |
141 | 141 | 'options' => ['' => __( 'All types', 'site-reviews' )] + glsr()->reviewTypes, |
142 | 142 | 'value' => filter_input( INPUT_GET, 'review_type' ), |
143 | - ]); |
|
143 | + ] ); |
|
144 | 144 | } |
145 | 145 | } |
@@ -78,7 +78,9 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function renderFilters( $postType ) |
80 | 80 | { |
81 | - if( $postType !== Application::POST_TYPE )return; |
|
81 | + if( $postType !== Application::POST_TYPE ) { |
|
82 | + return; |
|
83 | + } |
|
82 | 84 | if( !( $status = filter_input( INPUT_GET, 'post_status' ))) { |
83 | 85 | $status = 'publish'; |
84 | 86 | } |
@@ -107,7 +109,9 @@ discard block |
||
107 | 109 | */ |
108 | 110 | protected function renderFilterRatings( $ratings ) |
109 | 111 | { |
110 | - if( empty( $ratings ))return; |
|
112 | + if( empty( $ratings )) { |
|
113 | + return; |
|
114 | + } |
|
111 | 115 | $ratings = array_flip( array_reverse( $ratings )); |
112 | 116 | array_walk( $ratings, function( &$value, $key ) { |
113 | 117 | $label = _n( '%s star', '%s stars', $key, 'site-reviews' ); |
@@ -130,7 +134,9 @@ discard block |
||
130 | 134 | */ |
131 | 135 | protected function renderFilterTypes( $types ) |
132 | 136 | { |
133 | - if( count( glsr()->reviewTypes ) < 2 )return; |
|
137 | + if( count( glsr()->reviewTypes ) < 2 ) { |
|
138 | + return; |
|
139 | + } |
|
134 | 140 | echo glsr( Builder::class )->label( __( 'Filter by type', 'site-reviews' ), [ |
135 | 141 | 'class' => 'screen-reader-text', |
136 | 142 | 'for' => 'review_type', |
@@ -20,8 +20,8 @@ discard block |
||
20 | 20 | 'glsr_log', |
21 | 21 | 'glsr_star_rating', |
22 | 22 | ); |
23 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
24 | - add_filter( $hook, function() use( $hook, $args ) { |
|
23 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook ) )return; |
|
24 | + add_filter( $hook, function() use($hook, $args) { |
|
25 | 25 | array_shift( $args ); // remove the fallback value |
26 | 26 | return call_user_func_array( $hook, $args ); |
27 | 27 | }); |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | function glsr( $alias = null ) { |
34 | 34 | $app = \GeminiLabs\SiteReviews\Application::load(); |
35 | - return !empty( $alias ) |
|
35 | + return !empty($alias) |
|
36 | 36 | ? $app->make( $alias ) |
37 | 37 | : $app; |
38 | 38 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $result = array(); |
47 | 47 | foreach( $array as $subarray ) { |
48 | 48 | $subarray = (array)$subarray; |
49 | - if( !isset( $subarray[$column] ))continue; |
|
49 | + if( !isset($subarray[$column]) )continue; |
|
50 | 50 | $result[] = $subarray[$column]; |
51 | 51 | } |
52 | 52 | return $result; |
@@ -57,14 +57,14 @@ discard block |
||
57 | 57 | */ |
58 | 58 | function glsr_calculate_ratings() { |
59 | 59 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
60 | - glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
60 | + glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
64 | 64 | * @return \GeminiLabs\SiteReviews\Review|false |
65 | 65 | */ |
66 | 66 | function glsr_create_review( $reviewValues = array() ) { |
67 | - if( !is_array( $reviewValues )) { |
|
67 | + if( !is_array( $reviewValues ) ) { |
|
68 | 68 | $reviewValues = array(); |
69 | 69 | } |
70 | 70 | $review = new \GeminiLabs\SiteReviews\Commands\CreateReview( $reviewValues ); |
@@ -75,10 +75,10 @@ discard block |
||
75 | 75 | * @return \WP_Screen|object |
76 | 76 | */ |
77 | 77 | function glsr_current_screen() { |
78 | - if( function_exists( 'get_current_screen' )) { |
|
78 | + if( function_exists( 'get_current_screen' ) ) { |
|
79 | 79 | $screen = get_current_screen(); |
80 | 80 | } |
81 | - return empty( $screen ) |
|
81 | + return empty($screen) |
|
82 | 82 | ? (object)array_fill_keys( ['base', 'id', 'post_type'], null ) |
83 | 83 | : $screen; |
84 | 84 | } |
@@ -125,10 +125,10 @@ discard block |
||
125 | 125 | */ |
126 | 126 | function glsr_get_review( $post_id ) { |
127 | 127 | $post = null; |
128 | - if( is_numeric( $post_id )) { |
|
128 | + if( is_numeric( $post_id ) ) { |
|
129 | 129 | $post = get_post( $post_id ); |
130 | 130 | } |
131 | - if( !( $post instanceof WP_Post )) { |
|
131 | + if( !($post instanceof WP_Post) ) { |
|
132 | 132 | $post = new WP_Post( (object)[] ); |
133 | 133 | } |
134 | 134 | return glsr( 'Database\ReviewManager' )->single( $post ); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | * @return array |
139 | 139 | */ |
140 | 140 | function glsr_get_reviews( $args = array() ) { |
141 | - if( !is_array( $args )) { |
|
141 | + if( !is_array( $args ) ) { |
|
142 | 142 | $args = []; |
143 | 143 | } |
144 | 144 | return glsr( 'Database\ReviewManager' )->get( $args ); |
@@ -149,11 +149,11 @@ discard block |
||
149 | 149 | */ |
150 | 150 | function glsr_log() { |
151 | 151 | $args = func_get_args(); |
152 | - $context = isset( $args[1] ) |
|
152 | + $context = isset($args[1]) |
|
153 | 153 | ? $args[1] |
154 | 154 | : []; |
155 | 155 | $console = glsr( 'Modules\Console' ); |
156 | - return !empty( $args ) |
|
156 | + return !empty($args) |
|
157 | 157 | ? $console->log( 'debug', $args[0], $context ) |
158 | 158 | : $console; |
159 | 159 | } |
@@ -20,7 +20,9 @@ discard block |
||
20 | 20 | 'glsr_log', |
21 | 21 | 'glsr_star_rating', |
22 | 22 | ); |
23 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
23 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook )) { |
|
24 | + return; |
|
25 | + } |
|
24 | 26 | add_filter( $hook, function() use( $hook, $args ) { |
25 | 27 | array_shift( $args ); // remove the fallback value |
26 | 28 | return call_user_func_array( $hook, $args ); |
@@ -30,7 +32,8 @@ discard block |
||
30 | 32 | /** |
31 | 33 | * @return mixed |
32 | 34 | */ |
33 | -function glsr( $alias = null ) { |
|
35 | +function glsr( $alias = null ) |
|
36 | +{ |
|
34 | 37 | $app = \GeminiLabs\SiteReviews\Application::load(); |
35 | 38 | return !empty( $alias ) |
36 | 39 | ? $app->make( $alias ) |
@@ -42,11 +45,14 @@ discard block |
||
42 | 45 | * @param $column string |
43 | 46 | * @return array |
44 | 47 | */ |
45 | -function glsr_array_column( array $array, $column ) { |
|
48 | +function glsr_array_column( array $array, $column ) |
|
49 | +{ |
|
46 | 50 | $result = array(); |
47 | 51 | foreach( $array as $subarray ) { |
48 | 52 | $subarray = (array)$subarray; |
49 | - if( !isset( $subarray[$column] ))continue; |
|
53 | + if( !isset( $subarray[$column] )) { |
|
54 | + continue; |
|
55 | + } |
|
50 | 56 | $result[] = $subarray[$column]; |
51 | 57 | } |
52 | 58 | return $result; |
@@ -55,7 +61,8 @@ discard block |
||
55 | 61 | /** |
56 | 62 | * @return void |
57 | 63 | */ |
58 | -function glsr_calculate_ratings() { |
|
64 | +function glsr_calculate_ratings() |
|
65 | +{ |
|
59 | 66 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
60 | 67 | glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
61 | 68 | } |
@@ -63,7 +70,8 @@ discard block |
||
63 | 70 | /** |
64 | 71 | * @return \GeminiLabs\SiteReviews\Review|false |
65 | 72 | */ |
66 | -function glsr_create_review( $reviewValues = array() ) { |
|
73 | +function glsr_create_review( $reviewValues = array() ) |
|
74 | +{ |
|
67 | 75 | if( !is_array( $reviewValues )) { |
68 | 76 | $reviewValues = array(); |
69 | 77 | } |
@@ -74,7 +82,8 @@ discard block |
||
74 | 82 | /** |
75 | 83 | * @return \WP_Screen|object |
76 | 84 | */ |
77 | -function glsr_current_screen() { |
|
85 | +function glsr_current_screen() |
|
86 | +{ |
|
78 | 87 | if( function_exists( 'get_current_screen' )) { |
79 | 88 | $screen = get_current_screen(); |
80 | 89 | } |
@@ -87,7 +96,8 @@ discard block |
||
87 | 96 | * @param mixed ...$vars |
88 | 97 | * @return void |
89 | 98 | */ |
90 | -function glsr_debug( ...$vars ) { |
|
99 | +function glsr_debug( ...$vars ) |
|
100 | +{ |
|
91 | 101 | if( count( $vars ) == 1 ) { |
92 | 102 | $value = htmlspecialchars( print_r( $vars[0], true ), ENT_QUOTES, 'UTF-8' ); |
93 | 103 | printf( '<div class="glsr-debug"><pre>%s</pre></div>', $value ); |
@@ -106,7 +116,8 @@ discard block |
||
106 | 116 | * @param mixed $fallback |
107 | 117 | * @return string|array |
108 | 118 | */ |
109 | -function glsr_get_option( $path = '', $fallback = '' ) { |
|
119 | +function glsr_get_option( $path = '', $fallback = '' ) |
|
120 | +{ |
|
110 | 121 | return is_string( $path ) |
111 | 122 | ? glsr( 'Database\OptionManager' )->get( 'settings.'.$path, $fallback ) |
112 | 123 | : $fallback; |
@@ -115,7 +126,8 @@ discard block |
||
115 | 126 | /** |
116 | 127 | * @return array |
117 | 128 | */ |
118 | -function glsr_get_options() { |
|
129 | +function glsr_get_options() |
|
130 | +{ |
|
119 | 131 | return glsr( 'Database\OptionManager' )->get( 'settings' ); |
120 | 132 | } |
121 | 133 | |
@@ -123,7 +135,8 @@ discard block |
||
123 | 135 | * @param int $post_id |
124 | 136 | * @return \GeminiLabs\SiteReviews\Review |
125 | 137 | */ |
126 | -function glsr_get_review( $post_id ) { |
|
138 | +function glsr_get_review( $post_id ) |
|
139 | +{ |
|
127 | 140 | $post = null; |
128 | 141 | if( is_numeric( $post_id )) { |
129 | 142 | $post = get_post( $post_id ); |
@@ -137,7 +150,8 @@ discard block |
||
137 | 150 | /** |
138 | 151 | * @return array |
139 | 152 | */ |
140 | -function glsr_get_reviews( $args = array() ) { |
|
153 | +function glsr_get_reviews( $args = array() ) |
|
154 | +{ |
|
141 | 155 | if( !is_array( $args )) { |
142 | 156 | $args = []; |
143 | 157 | } |
@@ -147,7 +161,8 @@ discard block |
||
147 | 161 | /** |
148 | 162 | * @return \GeminiLabs\SiteReviews\Modules\Console |
149 | 163 | */ |
150 | -function glsr_log() { |
|
164 | +function glsr_log() |
|
165 | +{ |
|
151 | 166 | $args = func_get_args(); |
152 | 167 | $context = isset( $args[1] ) |
153 | 168 | ? $args[1] |
@@ -161,6 +176,7 @@ discard block |
||
161 | 176 | /** |
162 | 177 | * @return string |
163 | 178 | */ |
164 | -function glsr_star_rating( $rating ) { |
|
179 | +function glsr_star_rating( $rating ) |
|
180 | +{ |
|
165 | 181 | return glsr( 'Modules\Html\Partial' )->build( 'star-rating', ['rating' => $rating] ); |
166 | 182 | } |
@@ -13,15 +13,15 @@ discard block |
||
13 | 13 | public function fields() |
14 | 14 | { |
15 | 15 | return [[ |
16 | - 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' )), |
|
16 | + 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' ) ), |
|
17 | 17 | 'minWidth' => 320, |
18 | 18 | 'type' => 'container', |
19 | - ],[ |
|
19 | + ], [ |
|
20 | 20 | 'label' => esc_html__( 'Title', 'site-reviews' ), |
21 | 21 | 'name' => 'title', |
22 | 22 | 'tooltip' => __( 'Enter a custom shortcode heading.', 'site-reviews' ), |
23 | 23 | 'type' => 'textbox', |
24 | - ],[ |
|
24 | + ], [ |
|
25 | 25 | 'label' => esc_html__( 'Count', 'site-reviews' ), |
26 | 26 | 'maxLength' => 5, |
27 | 27 | 'name' => 'count', |
@@ -29,20 +29,20 @@ discard block |
||
29 | 29 | 'text' => '10', |
30 | 30 | 'tooltip' => __( 'How many reviews would you like to display (default: 10)?', 'site-reviews' ), |
31 | 31 | 'type' => 'textbox', |
32 | - ],[ |
|
32 | + ], [ |
|
33 | 33 | 'label' => esc_html__( 'Rating', 'site-reviews' ), |
34 | 34 | 'name' => 'rating', |
35 | 35 | 'options' => [ |
36 | - '5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 )), |
|
37 | - '4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 )), |
|
38 | - '3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 )), |
|
39 | - '2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 )), |
|
40 | - '1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 )), |
|
41 | - '0' => esc_html( __( 'Unrated', 'site-reviews' )), |
|
36 | + '5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 ) ), |
|
37 | + '4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 ) ), |
|
38 | + '3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 ) ), |
|
39 | + '2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ) ), |
|
40 | + '1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ) ), |
|
41 | + '0' => esc_html( __( 'Unrated', 'site-reviews' ) ), |
|
42 | 42 | ], |
43 | 43 | 'tooltip' => __( 'What is the minimum rating to display (default: 1 star)?', 'site-reviews' ), |
44 | 44 | 'type' => 'listbox', |
45 | - ],[ |
|
45 | + ], [ |
|
46 | 46 | 'label' => esc_html__( 'Pagination', 'site-reviews' ), |
47 | 47 | 'name' => 'pagination', |
48 | 48 | 'options' => [ |
@@ -53,14 +53,14 @@ discard block |
||
53 | 53 | 'tooltip' => __( 'When using pagination this shortcode can only be used once on a page. (default: disable)', 'site-reviews' ), |
54 | 54 | 'type' => 'listbox', |
55 | 55 | ], |
56 | - $this->getTypes( __( 'Which type of review would you like to display?', 'site-reviews' )), |
|
57 | - $this->getCategories( __( 'Limit reviews to this category.', 'site-reviews' )), |
|
56 | + $this->getTypes( __( 'Which type of review would you like to display?', 'site-reviews' ) ), |
|
57 | + $this->getCategories( __( 'Limit reviews to this category.', 'site-reviews' ) ), |
|
58 | 58 | [ |
59 | 59 | 'label' => esc_html__( 'Assigned To', 'site-reviews' ), |
60 | 60 | 'name' => 'assigned_to', |
61 | 61 | 'tooltip' => __( 'Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews' ), |
62 | 62 | 'type' => 'textbox', |
63 | - ],[ |
|
63 | + ], [ |
|
64 | 64 | 'label' => esc_html__( 'Schema', 'site-reviews' ), |
65 | 65 | 'name' => 'schema', |
66 | 66 | 'options' => [ |
@@ -69,19 +69,19 @@ discard block |
||
69 | 69 | ], |
70 | 70 | 'tooltip' => __( 'Rich snippets are disabled by default.', 'site-reviews' ), |
71 | 71 | 'type' => 'listbox', |
72 | - ],[ |
|
72 | + ], [ |
|
73 | 73 | 'label' => esc_html__( 'Classes', 'site-reviews' ), |
74 | 74 | 'name' => 'class', |
75 | 75 | 'tooltip' => __( 'Add custom CSS classes to the shortcode.', 'site-reviews' ), |
76 | 76 | 'type' => 'textbox', |
77 | - ],[ |
|
77 | + ], [ |
|
78 | 78 | 'columns' => 2, |
79 | 79 | 'items' => $this->getHideOptions(), |
80 | 80 | 'label' => esc_html__( 'Hide', 'site-reviews' ), |
81 | 81 | 'layout' => 'grid', |
82 | 82 | 'spacing' => 5, |
83 | 83 | 'type' => 'container', |
84 | - ],[ |
|
84 | + ], [ |
|
85 | 85 | 'hidden' => true, |
86 | 86 | 'name' => 'id', |
87 | 87 | 'type' => 'textbox', |
@@ -12,23 +12,23 @@ discard block |
||
12 | 12 | public function fields() |
13 | 13 | { |
14 | 14 | return [[ |
15 | - 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' )), |
|
15 | + 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' ) ), |
|
16 | 16 | 'minWidth' => 320, |
17 | 17 | 'type' => 'container', |
18 | - ],[ |
|
18 | + ], [ |
|
19 | 19 | 'label' => esc_html__( 'Title', 'site-reviews' ), |
20 | 20 | 'name' => 'title', |
21 | 21 | 'tooltip' => __( 'Enter a custom shortcode heading.', 'site-reviews' ), |
22 | 22 | 'type' => 'textbox', |
23 | 23 | ], |
24 | - $this->getTypes( __( 'Which type of review would you like to use?', 'site-reviews' )), |
|
25 | - $this->getCategories( __( 'Limit reviews to this category.', 'site-reviews' )), |
|
24 | + $this->getTypes( __( 'Which type of review would you like to use?', 'site-reviews' ) ), |
|
25 | + $this->getCategories( __( 'Limit reviews to this category.', 'site-reviews' ) ), |
|
26 | 26 | [ |
27 | 27 | 'label' => esc_html__( 'Assigned To', 'site-reviews' ), |
28 | 28 | 'name' => 'assigned_to', |
29 | 29 | 'tooltip' => __( 'Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews' ), |
30 | 30 | 'type' => 'textbox', |
31 | - ],[ |
|
31 | + ], [ |
|
32 | 32 | 'label' => esc_html__( 'Schema', 'site-reviews' ), |
33 | 33 | 'name' => 'schema', |
34 | 34 | 'options' => [ |
@@ -37,12 +37,12 @@ discard block |
||
37 | 37 | ], |
38 | 38 | 'tooltip' => __( 'Rich snippets are disabled by default.', 'site-reviews' ), |
39 | 39 | 'type' => 'listbox', |
40 | - ],[ |
|
40 | + ], [ |
|
41 | 41 | 'label' => esc_html__( 'Classes', 'site-reviews' ), |
42 | 42 | 'name' => 'class', |
43 | 43 | 'tooltip' => __( 'Add custom CSS classes to the shortcode.', 'site-reviews' ), |
44 | 44 | 'type' => 'textbox', |
45 | - ],[ |
|
45 | + ], [ |
|
46 | 46 | 'columns' => 2, |
47 | 47 | 'items' => $this->getHideOptions(), |
48 | 48 | 'label' => esc_html__( 'Hide', 'site-reviews' ), |
@@ -73,7 +73,7 @@ |
||
73 | 73 | $this->filterShortcodeClass(); |
74 | 74 | $this->filterShowMoreLinks( 'content' ); |
75 | 75 | $this->filterShowMoreLinks( 'response' ); |
76 | - if( !$this->hasVisibleFields( $shortcode, $attributes )) { |
|
76 | + if( !$this->hasVisibleFields( $shortcode, $attributes ) ) { |
|
77 | 77 | $this->filterInterpolation(); |
78 | 78 | } |
79 | 79 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $this->filterRatingField(); |
49 | 49 | $this->filterShortcodeClass(); |
50 | 50 | $this->filterSubmitButton(); |
51 | - if( !$this->hasVisibleFields( $shortcode, $attributes )) { |
|
51 | + if( !$this->hasVisibleFields( $shortcode, $attributes ) ) { |
|
52 | 52 | $this->filterInterpolation(); |
53 | 53 | } |
54 | 54 | } |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | add_filter( 'site-reviews/rendered/field', function( $html, $type, $args ) { |
92 | 92 | if( $args['path'] == 'rating' ) { |
93 | 93 | $stars = '<span class="glsr-stars">'; |
94 | - $stars.= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
95 | - $stars.= '</span>'; |
|
94 | + $stars .= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
95 | + $stars .= '</span>'; |
|
96 | 96 | $html = preg_replace( '/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html ); |
97 | 97 | } |
98 | 98 | return $html; |