@@ -21,11 +21,11 @@ discard block |
||
21 | 21 | */ |
22 | 22 | public function approve() |
23 | 23 | { |
24 | - check_admin_referer( 'approve-review_'.( $postId = $this->getPostId() )); |
|
25 | - wp_update_post([ |
|
24 | + check_admin_referer( 'approve-review_'.($postId = $this->getPostId()) ); |
|
25 | + wp_update_post( [ |
|
26 | 26 | 'ID' => $postId, |
27 | 27 | 'post_status' => 'publish', |
28 | - ]); |
|
28 | + ] ); |
|
29 | 29 | wp_safe_redirect( wp_get_referer() ); |
30 | 30 | exit; |
31 | 31 | } |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | { |
55 | 55 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
56 | 56 | foreach( $postTypeColumns as $key => &$value ) { |
57 | - if( !array_key_exists( $key, $columns ) || !empty( $value ))continue; |
|
57 | + if( !array_key_exists( $key, $columns ) || !empty($value) )continue; |
|
58 | 58 | $value = $columns[$key]; |
59 | 59 | } |
60 | - if( count( glsr( Database::class )->getReviewsMeta( 'review_type' )) < 2 ) { |
|
61 | - unset( $postTypeColumns['review_type'] ); |
|
60 | + if( count( glsr( Database::class )->getReviewsMeta( 'review_type' ) ) < 2 ) { |
|
61 | + unset($postTypeColumns['review_type']); |
|
62 | 62 | } |
63 | 63 | return array_filter( $postTypeColumns, 'strlen' ); |
64 | 64 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | */ |
95 | 95 | public function filterPostStates( array $postStates, WP_Post $post ) { |
96 | 96 | if( $post->post_type == Application::POST_TYPE |
97 | - && array_key_exists( 'pending', $postStates )) { |
|
97 | + && array_key_exists( 'pending', $postStates ) ) { |
|
98 | 98 | $postStates['pending'] = __( 'Unapproved', 'site-reviews' ); |
99 | 99 | } |
100 | 100 | return $postStates; |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | if( $post->post_type != Application::POST_TYPE || $post->post_status == 'trash' ) { |
110 | 110 | return $actions; |
111 | 111 | } |
112 | - unset( $actions['inline hide-if-no-js'] ); //Remove Quick-edit |
|
112 | + unset($actions['inline hide-if-no-js']); //Remove Quick-edit |
|
113 | 113 | $rowActions = [ |
114 | 114 | 'approve' => esc_attr__( 'Approve', 'site-reviews' ), |
115 | 115 | 'unapprove' => esc_attr__( 'Unapprove', 'site-reviews' ), |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | admin_url( 'post.php?post='.$post->ID.'&action='.$key ), |
124 | 124 | $key.'-review_'.$post->ID |
125 | 125 | ), |
126 | - ]); |
|
126 | + ] ); |
|
127 | 127 | } |
128 | 128 | return $newActions + $actions; |
129 | 129 | } |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | public function filterSortableColumns( array $columns ) |
136 | 136 | { |
137 | 137 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
138 | - unset( $postTypeColumns['cb'] ); |
|
138 | + unset($postTypeColumns['cb']); |
|
139 | 139 | foreach( $postTypeColumns as $key => $value ) { |
140 | - if( glsr( Helper::class )->startsWith( 'taxonomy', $key ))continue; |
|
140 | + if( glsr( Helper::class )->startsWith( 'taxonomy', $key ) )continue; |
|
141 | 141 | $columns[$key] = $key; |
142 | 142 | } |
143 | 143 | return $columns; |
@@ -155,18 +155,18 @@ discard block |
||
155 | 155 | */ |
156 | 156 | public function filterStatusText( $translation, $single, $plural, $number, $domain ) |
157 | 157 | { |
158 | - if( $this->canModifyTranslation( $domain )) { |
|
158 | + if( $this->canModifyTranslation( $domain ) ) { |
|
159 | 159 | $strings = [ |
160 | 160 | 'Published' => __( 'Approved', 'site-reviews' ), |
161 | 161 | 'Pending' => __( 'Unapproved', 'site-reviews' ), |
162 | 162 | ]; |
163 | 163 | foreach( $strings as $search => $replace ) { |
164 | 164 | if( strpos( $single, $search ) === false )continue; |
165 | - $translation = $this->getTranslation([ |
|
165 | + $translation = $this->getTranslation( [ |
|
166 | 166 | 'number' => $number, |
167 | 167 | 'plural' => str_replace( $search, $replace, $plural ), |
168 | 168 | 'single' => str_replace( $search, $replace, $single ), |
169 | - ]); |
|
169 | + ] ); |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | return $translation; |
@@ -213,9 +213,9 @@ discard block |
||
213 | 213 | */ |
214 | 214 | public function saveBulkEditFields( $postId ) |
215 | 215 | { |
216 | - if( !current_user_can( 'edit_posts' ))return; |
|
216 | + if( !current_user_can( 'edit_posts' ) )return; |
|
217 | 217 | $assignedTo = filter_input( INPUT_GET, 'assigned_to' ); |
218 | - if( $assignedTo && get_post( $assignedTo )) { |
|
218 | + if( $assignedTo && get_post( $assignedTo ) ) { |
|
219 | 219 | update_post_meta( $postId, 'assigned_to', $assignedTo ); |
220 | 220 | } |
221 | 221 | } |
@@ -226,10 +226,10 @@ discard block |
||
226 | 226 | */ |
227 | 227 | public function setQueryForColumn( WP_Query $query ) |
228 | 228 | { |
229 | - if( !$this->hasPermission( $query ))return; |
|
229 | + if( !$this->hasPermission( $query ) )return; |
|
230 | 230 | $this->setMetaQuery( $query, [ |
231 | 231 | 'rating', 'review_type', |
232 | - ]); |
|
232 | + ] ); |
|
233 | 233 | $this->setOrderby( $query ); |
234 | 234 | } |
235 | 235 | |
@@ -239,11 +239,11 @@ discard block |
||
239 | 239 | */ |
240 | 240 | public function unapprove() |
241 | 241 | { |
242 | - check_admin_referer( 'unapprove-review_'.( $postId = $this->getPostId() )); |
|
243 | - wp_update_post([ |
|
242 | + check_admin_referer( 'unapprove-review_'.($postId = $this->getPostId()) ); |
|
243 | + wp_update_post( [ |
|
244 | 244 | 'ID' => $postId, |
245 | 245 | 'post_status' => 'pending', |
246 | - ]); |
|
246 | + ] ); |
|
247 | 247 | wp_safe_redirect( wp_get_referer() ); |
248 | 248 | exit; |
249 | 249 | } |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | 'single' => '', |
274 | 274 | 'text' => '', |
275 | 275 | ]; |
276 | - $args = (object) wp_parse_args( $args, $defaults ); |
|
276 | + $args = (object)wp_parse_args( $args, $defaults ); |
|
277 | 277 | $translations = get_translations_for_domain( Application::ID ); |
278 | 278 | return $args->text |
279 | 279 | ? $translations->translate( $args->text ) |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | protected function setMetaQuery( WP_Query $query, array $metaKeys ) |
299 | 299 | { |
300 | 300 | foreach( $metaKeys as $key ) { |
301 | - if( !( $value = filter_input( INPUT_GET, $key )))continue; |
|
301 | + if( !($value = filter_input( INPUT_GET, $key )) )continue; |
|
302 | 302 | $metaQuery = (array)$query->get( 'meta_query' ); |
303 | 303 | $metaQuery[] = [ |
304 | 304 | 'key' => $key, |
@@ -315,8 +315,8 @@ discard block |
||
315 | 315 | { |
316 | 316 | $orderby = $query->get( 'orderby' ); |
317 | 317 | $columns = glsr()->postTypeColumns[Application::POST_TYPE]; |
318 | - unset( $columns['cb'], $columns['title'], $columns['date'] ); |
|
319 | - if( in_array( $orderby, array_keys( $columns ))) { |
|
318 | + unset($columns['cb'], $columns['title'], $columns['date']); |
|
319 | + if( in_array( $orderby, array_keys( $columns ) ) ) { |
|
320 | 320 | $query->set( 'meta_key', $orderby ); |
321 | 321 | $query->set( 'orderby', 'meta_value' ); |
322 | 322 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | if( $assignedPost instanceof WP_Post && $assignedPost->post_status == 'publish' ) { |
23 | 23 | $column = glsr( Builder::class )->a( get_the_title( $assignedPost->ID ), [ |
24 | 24 | 'href' => (string)get_the_permalink( $assignedPost->ID ), |
25 | - ]); |
|
25 | + ] ); |
|
26 | 26 | } |
27 | 27 | return $column; |
28 | 28 | } |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | $pinned = get_post_meta( $postId, 'pinned', true ) |
37 | 37 | ? 'pinned ' |
38 | 38 | : ''; |
39 | - return glsr( Builder::class )->i([ |
|
39 | + return glsr( Builder::class )->i( [ |
|
40 | 40 | 'class' => $pinned.'dashicons dashicons-sticky', |
41 | 41 | 'data-id' => $postId, |
42 | - ]); |
|
42 | + ] ); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public function buildColumnReviewer( $postId ) |
50 | 50 | { |
51 | - return strval( get_post_meta( $postId, 'author', true )); |
|
51 | + return strval( get_post_meta( $postId, 'author', true ) ); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | public function buildColumnRating( $postId ) |
60 | 60 | { |
61 | 61 | return glsr( Html::class )->buildPartial( 'star-rating', [ |
62 | - 'rating' => intval( get_post_meta( $postId, 'rating', true )), |
|
63 | - ]); |
|
62 | + 'rating' => intval( get_post_meta( $postId, 'rating', true ) ), |
|
63 | + ] ); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | public function renderFilters( $postType ) |
83 | 83 | { |
84 | 84 | if( $postType !== Application::POST_TYPE )return; |
85 | - if( !( $status = filter_input( INPUT_GET, 'post_status' ))) { |
|
85 | + if( !($status = filter_input( INPUT_GET, 'post_status' )) ) { |
|
86 | 86 | $status = 'publish'; |
87 | 87 | } |
88 | 88 | $ratings = glsr( Database::class )->getReviewsMeta( 'rating', $status ); |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | */ |
112 | 112 | protected function renderFilterRatings( $ratings ) |
113 | 113 | { |
114 | - if( empty( $ratings ))return; |
|
115 | - $ratings = array_flip( array_reverse( $ratings )); |
|
114 | + if( empty($ratings) )return; |
|
115 | + $ratings = array_flip( array_reverse( $ratings ) ); |
|
116 | 116 | array_walk( $ratings, function( &$value, $key ) { |
117 | 117 | $label = _n( '%s star', '%s stars', $key, 'site-reviews' ); |
118 | 118 | $value = sprintf( $label, $key ); |
@@ -120,12 +120,12 @@ discard block |
||
120 | 120 | echo glsr( Builder::class )->label( __( 'Filter by rating', 'site-reviews' ), [ |
121 | 121 | 'class' => 'screen-reader-text', |
122 | 122 | 'for' => 'rating', |
123 | - ]); |
|
124 | - echo glsr( Builder::class )->select([ |
|
123 | + ] ); |
|
124 | + echo glsr( Builder::class )->select( [ |
|
125 | 125 | 'name' => 'rating', |
126 | 126 | 'options' => ['' => __( 'All ratings', 'site-reviews' )] + $ratings, |
127 | 127 | 'value' => filter_input( INPUT_GET, 'rating' ), |
128 | - ]); |
|
128 | + ] ); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -138,11 +138,11 @@ discard block |
||
138 | 138 | echo glsr( Builder::class )->label( __( 'Filter by type', 'site-reviews' ), [ |
139 | 139 | 'class' => 'screen-reader-text', |
140 | 140 | 'for' => 'review_type', |
141 | - ]); |
|
142 | - echo glsr( Builder::class )->select([ |
|
141 | + ] ); |
|
142 | + echo glsr( Builder::class )->select( [ |
|
143 | 143 | 'name' => 'review_type', |
144 | 144 | 'options' => ['' => __( 'All types', 'site-reviews' )] + glsr()->reviewTypes, |
145 | 145 | 'value' => filter_input( INPUT_GET, 'review_type' ), |
146 | - ]); |
|
146 | + ] ); |
|
147 | 147 | } |
148 | 148 | } |
@@ -49,9 +49,9 @@ discard block |
||
49 | 49 | { |
50 | 50 | $average = array_sum( $ratingCounts ); |
51 | 51 | if( $average > 0 ) { |
52 | - $average = round( $this->getTotalSum( $ratingCounts ) / $average, intval( $roundBy )); |
|
52 | + $average = round( $this->getTotalSum( $ratingCounts ) / $average, intval( $roundBy ) ); |
|
53 | 53 | } |
54 | - return floatval( apply_filters( 'site-reviews/rating/average', $average, $ratingCounts )); |
|
54 | + return floatval( apply_filters( 'site-reviews/rating/average', $average, $ratingCounts ) ); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } |
73 | 73 | $z = static::CONFIDENCE_LEVEL_Z_SCORES[$confidencePercentage]; |
74 | 74 | $phat = 1 * $upDownCounts[1] / $numRatings; |
75 | - return ( $phat + $z * $z / ( 2 * $numRatings ) - $z * sqrt(( $phat * ( 1 - $phat ) + $z * $z / ( 4 * $numRatings )) / $numRatings )) / ( 1 + $z * $z / $numRatings ); |
|
75 | + return ($phat + $z * $z / (2 * $numRatings) - $z * sqrt( ($phat * (1 - $phat) + $z * $z / (4 * $numRatings)) / $numRatings )) / (1 + $z * $z / $numRatings); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | $total = array_sum( $ratingCounts ); |
92 | 92 | foreach( $ratingCounts as $index => $count ) { |
93 | - if( empty( $count ))continue; |
|
93 | + if( empty($count) )continue; |
|
94 | 94 | $ratingCounts[$index] = $count / $total * 100; |
95 | 95 | } |
96 | 96 | return $this->getRoundedPercentages( $ratingCounts ); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $this->getRankingUsingImdb( $ratingCounts ), |
106 | 106 | $ratingCounts, |
107 | 107 | $this |
108 | - )); |
|
108 | + ) ); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -123,12 +123,12 @@ discard block |
||
123 | 123 | $avgRating = $this->getAverage( $ratingCounts ); |
124 | 124 | // Represents a prior (your prior opinion without data) for the average star rating. A higher prior also means a higher margin for error. |
125 | 125 | // This could also be the average score of all items instead of a fixed value. |
126 | - $bayesMean = ( $confidencePercentage / 100 ) * static::MAX_RATING; // prior, 70% = 3.5 |
|
126 | + $bayesMean = ($confidencePercentage / 100) * static::MAX_RATING; // prior, 70% = 3.5 |
|
127 | 127 | // Represents the number of ratings expected to begin observing a pattern that would put confidence in the prior. |
128 | 128 | $bayesMinimal = 10; // confidence |
129 | 129 | $numOfReviews = array_sum( $ratingCounts ); |
130 | 130 | return $avgRating > 0 |
131 | - ? (( $bayesMinimal * $bayesMean ) + ( $avgRating * $numOfReviews )) / ( $bayesMinimal + $numOfReviews ) |
|
131 | + ? (($bayesMinimal * $bayesMean) + ($avgRating * $numOfReviews)) / ($bayesMinimal + $numOfReviews) |
|
132 | 132 | : 0; |
133 | 133 | } |
134 | 134 | |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $weight = $this->getWeight( $ratingCounts, $ratingCountsSum ); |
149 | 149 | $weightPow2 = $this->getWeight( $ratingCounts, $ratingCountsSum, true ); |
150 | 150 | $zScore = static::CONFIDENCE_LEVEL_Z_SCORES[$confidencePercentage]; |
151 | - return $weight - $zScore * sqrt(( $weightPow2 - pow( $weight, 2 )) / ( $ratingCountsSum + 1 )); |
|
151 | + return $weight - $zScore * sqrt( ($weightPow2 - pow( $weight, 2 )) / ($ratingCountsSum + 1) ); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -168,14 +168,14 @@ discard block |
||
168 | 168 | $remainders = array_column( $percentages, 'remainder' ); |
169 | 169 | array_multisort( $remainders, SORT_DESC, SORT_STRING, $indexes, SORT_DESC, $percentages ); |
170 | 170 | $i = 0; |
171 | - if( array_sum( array_column( $percentages, 'percent' )) > 0 ) { |
|
172 | - while( array_sum( array_column( $percentages, 'percent' )) < $totalPercent ) { |
|
171 | + if( array_sum( array_column( $percentages, 'percent' ) ) > 0 ) { |
|
172 | + while( array_sum( array_column( $percentages, 'percent' ) ) < $totalPercent ) { |
|
173 | 173 | $percentages[$i]['percent']++; |
174 | 174 | $i++; |
175 | 175 | } |
176 | 176 | } |
177 | 177 | array_multisort( $indexes, SORT_DESC, $percentages ); |
178 | - return array_combine( $indexes, array_column( $percentages, 'percent' )); |
|
178 | + return array_combine( $indexes, array_column( $percentages, 'percent' ) ); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -196,11 +196,11 @@ discard block |
||
196 | 196 | protected function getWeight( array $ratingCounts, $ratingCountsSum, $powerOf2 = false ) |
197 | 197 | { |
198 | 198 | return array_reduce( array_keys( $ratingCounts ), |
199 | - function( $count, $rating ) use( $ratingCounts, $ratingCountsSum, $powerOf2 ) { |
|
199 | + function( $count, $rating ) use($ratingCounts, $ratingCountsSum, $powerOf2) { |
|
200 | 200 | $ratingLevel = $powerOf2 |
201 | 201 | ? pow( $rating, 2 ) |
202 | 202 | : $rating; |
203 | - return $count + ( $ratingLevel * ( $ratingCounts[$rating] + 1 )) / $ratingCountsSum; |
|
203 | + return $count + ($ratingLevel * ($ratingCounts[$rating] + 1)) / $ratingCountsSum; |
|
204 | 204 | } |
205 | 205 | ); |
206 | 206 | } |
@@ -16,11 +16,11 @@ discard block |
||
16 | 16 | { |
17 | 17 | $queries = []; |
18 | 18 | foreach( $keys as $key ) { |
19 | - if( !array_key_exists( $key, $values ))continue; |
|
19 | + if( !array_key_exists( $key, $values ) )continue; |
|
20 | 20 | $methodName = glsr( Helper::class )->buildMethodName( $key, __FUNCTION__ ); |
21 | - if( !method_exists( $this, $methodName ))continue; |
|
21 | + if( !method_exists( $this, $methodName ) )continue; |
|
22 | 22 | $query = call_user_func( [$this, $methodName], $values[$key] ); |
23 | - if( is_array( $query )) { |
|
23 | + if( is_array( $query ) ) { |
|
24 | 24 | $queries[] = $query; |
25 | 25 | } |
26 | 26 | } |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | $string = ''; |
36 | 36 | $values = array_filter( $values ); |
37 | 37 | foreach( $conditions as $key => $value ) { |
38 | - if( !isset( $values[$key] ))continue; |
|
38 | + if( !isset($values[$key]) )continue; |
|
39 | 39 | $values[$key] = implode( ',', (array)$values[$key] ); |
40 | 40 | $string .= strpos( $value, '%s' ) !== false |
41 | - ? sprintf( $value, strval( $values[$key] )) |
|
41 | + ? sprintf( $value, strval( $values[$key] ) ) |
|
42 | 42 | : $value; |
43 | 43 | } |
44 | 44 | return $string; |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function buildSqlOr( $values, $sprintfFormat ) |
54 | 54 | { |
55 | - if( !is_array( $values )) { |
|
55 | + if( !is_array( $values ) ) { |
|
56 | 56 | $values = explode( ',', $values ); |
57 | 57 | } |
58 | - $values = array_filter( array_map( 'trim', (array)$values )); |
|
59 | - $values = array_map( function( $value ) use( $sprintfFormat ) { |
|
58 | + $values = array_filter( array_map( 'trim', (array)$values ) ); |
|
59 | + $values = array_map( function( $value ) use($sprintfFormat) { |
|
60 | 60 | return sprintf( $sprintfFormat, $value ); |
61 | 61 | }, $values ); |
62 | 62 | return implode( ' OR ', $values ); |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function filterSearchByTitle( $search, WP_Query $query ) |
73 | 73 | { |
74 | - if( empty( $search ) || empty( $query->get( 'search_terms' ))) { |
|
74 | + if( empty($search) || empty($query->get( 'search_terms' )) ) { |
|
75 | 75 | return $search; |
76 | 76 | } |
77 | 77 | global $wpdb; |
78 | - $n = empty( $query->get( 'exact' )) |
|
78 | + $n = empty($query->get( 'exact' )) |
|
79 | 79 | ? '%' |
80 | 80 | : ''; |
81 | 81 | $search = []; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | ? Application::PAGED_QUERY_VAR |
100 | 100 | : 'page'; |
101 | 101 | return $isEnabled |
102 | - ? max( 1, intval( get_query_var( $pagedQuery ))) |
|
102 | + ? max( 1, intval( get_query_var( $pagedQuery ) ) ) |
|
103 | 103 | : 1; |
104 | 104 | } |
105 | 105 | |
@@ -109,11 +109,11 @@ discard block |
||
109 | 109 | */ |
110 | 110 | protected function buildQueryAssignedTo( $value ) |
111 | 111 | { |
112 | - if( empty( $value ))return; |
|
112 | + if( empty($value) )return; |
|
113 | 113 | return [ |
114 | 114 | 'compare' => 'IN', |
115 | 115 | 'key' => 'assigned_to', |
116 | - 'value' => array_filter( array_map( 'trim', explode( ',', $value )), 'is_numeric' ), |
|
116 | + 'value' => array_filter( array_map( 'trim', explode( ',', $value ) ), 'is_numeric' ), |
|
117 | 117 | ]; |
118 | 118 | } |
119 | 119 | |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | */ |
124 | 124 | protected function buildQueryCategory( $value ) |
125 | 125 | { |
126 | - if( empty( $value ))return; |
|
126 | + if( empty($value) )return; |
|
127 | 127 | return [ |
128 | 128 | 'field' => 'term_id', |
129 | 129 | 'taxonomy' => Application::TAXONOMY, |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | protected function buildQueryRating( $value ) |
139 | 139 | { |
140 | - if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 )))return; |
|
140 | + if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 ) ) )return; |
|
141 | 141 | return [ |
142 | 142 | 'compare' => '>=', |
143 | 143 | 'key' => 'rating', |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | */ |
152 | 152 | protected function buildQueryType( $value ) |
153 | 153 | { |
154 | - if( in_array( $value, ['','all'] ))return; |
|
154 | + if( in_array( $value, ['', 'all'] ) )return; |
|
155 | 155 | return [ |
156 | 156 | 'key' => 'review_type', |
157 | 157 | 'value' => $value, |
@@ -20,10 +20,10 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function getAssignedToPost( $postId, $assignedTo = '' ) |
22 | 22 | { |
23 | - if( empty( $assignedTo )) { |
|
23 | + if( empty($assignedTo) ) { |
|
24 | 24 | $assignedTo = get_post_meta( $postId, 'assigned_to', true ); |
25 | 25 | } |
26 | - if( empty( $assignedTo ))return; |
|
26 | + if( empty($assignedTo) )return; |
|
27 | 27 | $assignedPost = get_post( $assignedTo ); |
28 | 28 | if( $assignedPost instanceof WP_Post && $assignedPost->ID != $postId ) { |
29 | 29 | return $assignedPost; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | if( !$metaValue ) { |
45 | 45 | return $counts; |
46 | 46 | } |
47 | - return isset( $counts[$metaValue] ) |
|
47 | + return isset($counts[$metaValue]) |
|
48 | 48 | ? $counts[$metaValue] |
49 | 49 | : 0; |
50 | 50 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function getReviewsMeta( $key, $status = 'publish' ) |
67 | 67 | { |
68 | - if( $status == 'all' || empty( $status )) { |
|
68 | + if( $status == 'all' || empty($status) ) { |
|
69 | 69 | $status = get_post_stati( ['exclude_from_search' => false] ); |
70 | 70 | } |
71 | 71 | return glsr( SqlQueries::class )->getReviewsMeta( $key, $status ); |
@@ -80,10 +80,10 @@ discard block |
||
80 | 80 | 'fields' => 'id=>name', |
81 | 81 | 'hide_empty' => false, |
82 | 82 | 'taxonomy' => Application::TAXONOMY, |
83 | - ]); |
|
84 | - unset( $args['count'] ); // we don't want a term count |
|
83 | + ] ); |
|
84 | + unset($args['count']); // we don't want a term count |
|
85 | 85 | $terms = get_terms( $args ); |
86 | - if( is_wp_error( $terms )) { |
|
86 | + if( is_wp_error( $terms ) ) { |
|
87 | 87 | glsr_log()->error( $terms->get_error_message() ); |
88 | 88 | return []; |
89 | 89 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | 'post_status' => 'publish', |
101 | 101 | 'post_type' => 'any', |
102 | 102 | ]; |
103 | - if( is_numeric( $searchTerm )) { |
|
103 | + if( is_numeric( $searchTerm ) ) { |
|
104 | 104 | $args['post__in'] = [$searchTerm]; |
105 | 105 | } |
106 | 106 | else { |
@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | ob_start(); |
120 | 120 | glsr()->render( 'partials/editor/search-result', [ |
121 | 121 | 'ID' => get_the_ID(), |
122 | - 'permalink' => esc_url( (string) get_permalink() ), |
|
122 | + 'permalink' => esc_url( (string)get_permalink() ), |
|
123 | 123 | 'title' => esc_attr( get_the_title() ), |
124 | - ]); |
|
124 | + ] ); |
|
125 | 125 | $results .= ob_get_clean(); |
126 | 126 | } |
127 | 127 | wp_reset_postdata(); |
@@ -28,12 +28,12 @@ discard block |
||
28 | 28 | $postId = glsr( ReviewManager::class )->create( $command ); |
29 | 29 | if( $postId < 1 ) { |
30 | 30 | glsr( Session::class )->set( $command->form_id.'errors', [] ); |
31 | - 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' )); |
|
31 | + 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' ) ); |
|
32 | 32 | return; |
33 | 33 | } |
34 | 34 | $this->sendNotification( $postId ); |
35 | 35 | do_action( 'site-reviews/local/review/submitted', $postId, $command ); |
36 | - glsr( Session::class )->set( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' )); |
|
36 | + glsr( Session::class )->set( $command->form_id.'message', __( 'Your review has been submitted!', 'site-reviews' ) ); |
|
37 | 37 | if( $command->ajax_request )return; |
38 | 38 | wp_safe_redirect( $command->referrer ); |
39 | 39 | exit; |
@@ -80,8 +80,8 @@ discard block |
||
80 | 80 | if( $this->command->author ) { |
81 | 81 | $fields[] = ['value' => trim( $this->command->author.$this->command->email.' - '.$this->command->ip_address )]; |
82 | 82 | } |
83 | - $fields[] = ['value' => sprintf( '<%s|%s>', $args['notification_link'], __( 'View Review', 'site-reviews' ))]; |
|
84 | - return json_encode([ |
|
83 | + $fields[] = ['value' => sprintf( '<%s|%s>', $args['notification_link'], __( 'View Review', 'site-reviews' ) )]; |
|
84 | + return json_encode( [ |
|
85 | 85 | 'icon_url' => glsr()->url( 'assets/img/icon.png' ), |
86 | 86 | 'username' => glsr()->name, |
87 | 87 | 'attachments' => [[ |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | 'fallback' => $this->createEmailNotification( $args )->read( 'plaintext' ), |
91 | 91 | 'fields' => $fields, |
92 | 92 | ]], |
93 | - ]); |
|
93 | + ] ); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
@@ -100,12 +100,12 @@ discard block |
||
100 | 100 | protected function sendNotification( $postId ) |
101 | 101 | { |
102 | 102 | $notificationType = glsr( OptionManager::class )->get( 'settings.general.notification' ); |
103 | - if( !in_array( $notificationType, ['default','custom','webhook'] ))return; |
|
103 | + if( !in_array( $notificationType, ['default', 'custom', 'webhook'] ) )return; |
|
104 | 104 | $assignedToTitle = get_the_title( (int)$this->command->assigned_to ); |
105 | 105 | $notificationSubject = _nx( |
106 | 106 | 'New %s-star review', |
107 | 107 | 'New %s-star review of: %s', |
108 | - intval( empty( $assignedToTitle )), |
|
108 | + intval( empty($assignedToTitle) ), |
|
109 | 109 | 'The text is different depending on whether or not the review has been assigned to a post.', |
110 | 110 | 'site-reviews' |
111 | 111 | ); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | sprintf( $notificationSubject, $this->command->rating, $assignedToTitle ) |
115 | 115 | ); |
116 | 116 | $args = [ |
117 | - 'notification_link' => esc_url( admin_url( sprintf( 'post.php?post=%s&action=edit', $postId ))), |
|
117 | + 'notification_link' => esc_url( admin_url( sprintf( 'post.php?post=%s&action=edit', $postId ) ) ), |
|
118 | 118 | 'notification_title' => $notificationTitle, |
119 | 119 | 'notification_type' => $notificationType, |
120 | 120 | ]; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | $args['recipient'] = $args['notification_type'] !== 'default' |
133 | 133 | ? glsr( OptionManager::class )->get( 'settings.general.notification_email' ) |
134 | 134 | : get_option( 'admin_email' ); |
135 | - if( empty( $args['recipient'] )) { |
|
135 | + if( empty($args['recipient']) ) { |
|
136 | 136 | glsr_log()->error( 'Email notification was not sent: missing email, subject, or message.' ); |
137 | 137 | } |
138 | 138 | else { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | protected function sendWebhookNotification( array $args ) |
150 | 150 | { |
151 | - if( !( $endpoint = glsr( OptionManager::class )->get( 'settings.general.webhook_url' )))return; |
|
151 | + if( !($endpoint = glsr( OptionManager::class )->get( 'settings.general.webhook_url' )) )return; |
|
152 | 152 | $notification = $this->createWebhookNotification( $args ); |
153 | 153 | $result = wp_remote_post( $endpoint, [ |
154 | 154 | 'blocking' => false, |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | 'redirection' => 5, |
160 | 160 | 'sslverify' => false, |
161 | 161 | 'timeout' => 45, |
162 | - ]); |
|
163 | - if( is_wp_error( $result )) { |
|
162 | + ] ); |
|
163 | + if( is_wp_error( $result ) ) { |
|
164 | 164 | glsr_log()->error( $result->get_error_message() ); |
165 | 165 | } |
166 | 166 | } |
@@ -34,9 +34,9 @@ discard block |
||
34 | 34 | $this->args = $args; |
35 | 35 | |
36 | 36 | // get rating counts |
37 | - $this->ratingCounts = [0,0,0,0,0,0]; |
|
37 | + $this->ratingCounts = [0, 0, 0, 0, 0, 0]; |
|
38 | 38 | |
39 | - if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ))return; |
|
39 | + if( !array_sum( $this->ratingCounts ) && $this->isHidden( 'if_empty' ) )return; |
|
40 | 40 | $this->averageRating = glsr( Rating::class )->getAverage( $this->ratingCounts ); |
41 | 41 | $this->generateSchema(); |
42 | 42 | return glsr( Template::class )->build( 'templates/reviews-summary', [ |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | 'stars' => $this->buildStars(), |
49 | 49 | 'text' => $this->buildText(), |
50 | 50 | ], |
51 | - ]); |
|
51 | + ] ); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -56,16 +56,16 @@ discard block |
||
56 | 56 | */ |
57 | 57 | protected function buildPercentage() |
58 | 58 | { |
59 | - if( $this->isHidden( 'bars' ))return; |
|
59 | + if( $this->isHidden( 'bars' ) )return; |
|
60 | 60 | $range = range( Rating::MAX_RATING, 1 ); |
61 | - $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts )); |
|
62 | - $bars = array_reduce( $range, function( $carry, $level ) use( $percentages ) { |
|
61 | + $percentages = preg_filter( '/$/', '%', glsr( Rating::class )->getPercentages( $this->ratingCounts ) ); |
|
62 | + $bars = array_reduce( $range, function( $carry, $level ) use($percentages) { |
|
63 | 63 | $label = $this->buildPercentageLabel( $this->args['labels'][$level] ); |
64 | 64 | $background = $this->buildPercentageBackground( $percentages[$level] ); |
65 | 65 | $percent = $this->buildPercentagePercent( $percentages[$level] ); |
66 | 66 | return $carry.glsr( Builder::class )->div( $label.$background.$percent, [ |
67 | 67 | 'class' => 'glsr-bar', |
68 | - ]); |
|
68 | + ] ); |
|
69 | 69 | }); |
70 | 70 | return $this->wrap( 'percentage', $bars ); |
71 | 71 | } |
@@ -76,10 +76,10 @@ discard block |
||
76 | 76 | */ |
77 | 77 | protected function buildPercentageBackground( $percent ) |
78 | 78 | { |
79 | - $backgroundPercent = glsr( Builder::class )->span([ |
|
79 | + $backgroundPercent = glsr( Builder::class )->span( [ |
|
80 | 80 | 'class' => 'glsr-bar-background-percent', |
81 | 81 | 'style' => 'width:'.$percent, |
82 | - ]); |
|
82 | + ] ); |
|
83 | 83 | return '<span class="glsr-bar-background">'.$backgroundPercent.'</span>'; |
84 | 84 | } |
85 | 85 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | protected function buildRating() |
108 | 108 | { |
109 | - if( $this->isHidden( 'rating' ))return; |
|
109 | + if( $this->isHidden( 'rating' ) )return; |
|
110 | 110 | return $this->wrap( 'rating', '<span>'.$this->averageRating.'</span>' ); |
111 | 111 | } |
112 | 112 | |
@@ -115,10 +115,10 @@ discard block |
||
115 | 115 | */ |
116 | 116 | protected function buildStars() |
117 | 117 | { |
118 | - if( $this->isHidden( 'stars' ))return; |
|
118 | + if( $this->isHidden( 'stars' ) )return; |
|
119 | 119 | $stars = glsr( Partial::class )->build( 'star-rating', [ |
120 | 120 | 'rating' => $this->averageRating, |
121 | - ]); |
|
121 | + ] ); |
|
122 | 122 | return $this->wrap( 'stars', $stars ); |
123 | 123 | } |
124 | 124 | |
@@ -127,9 +127,9 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function buildText() |
129 | 129 | { |
130 | - if( $this->isHidden( 'summary' ))return; |
|
131 | - $count = intval( array_sum( $this->ratingCounts )); |
|
132 | - if( empty( $this->args['text'] )) { |
|
130 | + if( $this->isHidden( 'summary' ) )return; |
|
131 | + $count = intval( array_sum( $this->ratingCounts ) ); |
|
132 | + if( empty($this->args['text']) ) { |
|
133 | 133 | // @todo document this change |
134 | 134 | $this->args['text'] = _nx( |
135 | 135 | '{rating} out of {max} stars (based on {num} review)', |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | ); |
141 | 141 | } |
142 | 142 | $summary = str_replace( |
143 | - ['{rating}','{max}', '{num}'], |
|
143 | + ['{rating}', '{max}', '{num}'], |
|
144 | 144 | [$this->averageRating, Rating::MAX_RATING, $count], |
145 | 145 | $this->args['text'] |
146 | 146 | ); |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | protected function generateSchema() |
154 | 154 | { |
155 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
155 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
156 | 156 | glsr( Schema::class )->store( |
157 | 157 | glsr( Schema::class )->buildSummary( $this->args ) |
158 | 158 | ); |
@@ -185,6 +185,6 @@ discard block |
||
185 | 185 | { |
186 | 186 | return glsr( Builder::class )->div( $value, [ |
187 | 187 | 'class' => 'glsr-summary-'.$key, |
188 | - ]); |
|
188 | + ] ); |
|
189 | 189 | } |
190 | 190 | } |
@@ -37,10 +37,10 @@ discard block |
||
37 | 37 | if( $review->review_type != 'local' )continue; |
38 | 38 | $reviews[] = $this->buildReview( $review ); |
39 | 39 | } |
40 | - if( !empty( $reviews )) { |
|
40 | + if( !empty($reviews) ) { |
|
41 | 41 | array_walk( $reviews, function( &$review ) { |
42 | - unset( $review['@context'] ); |
|
43 | - unset( $review['itemReviewed'] ); |
|
42 | + unset($review['@context']); |
|
43 | + unset($review['itemReviewed']); |
|
44 | 44 | }); |
45 | 45 | $schema['review'] = $reviews; |
46 | 46 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function buildSummary( $args = null ) |
55 | 55 | { |
56 | - if( is_array( $args )) { |
|
56 | + if( is_array( $args ) ) { |
|
57 | 57 | $this->args = $args; |
58 | 58 | } |
59 | 59 | $buildSummary = glsr( Helper::class )->buildMethodName( $this->getSchemaOptionValue( 'type' ), 'buildSummaryFor' ); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | $schema = method_exists( $this, $buildSummary ) |
62 | 62 | ? $this->$buildSummary() |
63 | 63 | : $this->buildSummaryForCustom(); |
64 | - if( !empty( $count )) { |
|
64 | + if( !empty($count) ) { |
|
65 | 65 | $schema->aggregateRating( |
66 | 66 | $this->getSchemaType( 'AggregateRating' ) |
67 | 67 | ->ratingValue( $this->getRatingValue() ) |
@@ -79,11 +79,11 @@ discard block |
||
79 | 79 | */ |
80 | 80 | public function render() |
81 | 81 | { |
82 | - if( is_null( glsr()->schemas ))return; |
|
82 | + if( is_null( glsr()->schemas ) )return; |
|
83 | 83 | printf( '<script type="application/ld+json">%s</script>', json_encode( |
84 | 84 | apply_filters( 'site-reviews/schema/all', glsr()->schemas ), |
85 | 85 | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
86 | - )); |
|
86 | + ) ); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | { |
94 | 94 | $schemas = glsr()->schemas; |
95 | 95 | $schemas[] = $schema; |
96 | - glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ))); |
|
96 | + glsr()->schemas = array_map( 'unserialize', array_unique( array_map( 'serialize', $schemas ) ) ); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
@@ -103,16 +103,16 @@ discard block |
||
103 | 103 | protected function buildReview( $review ) |
104 | 104 | { |
105 | 105 | $schema = $this->getSchemaType( 'Review' ) |
106 | - ->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use( $review ) { |
|
106 | + ->doIf( !in_array( 'title', $this->args['hide'] ), function( $schema ) use($review) { |
|
107 | 107 | $schema->name( $review->title ); |
108 | 108 | }) |
109 | - ->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use( $review ) { |
|
109 | + ->doIf( !in_array( 'excerpt', $this->args['hide'] ), function( $schema ) use($review) { |
|
110 | 110 | $schema->reviewBody( $review->content ); |
111 | 111 | }) |
112 | - ->datePublished(( new DateTime( $review->date ))) |
|
113 | - ->author( $this->getSchemaType( 'Person' )->name( $review->author )) |
|
114 | - ->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ))); |
|
115 | - if( !empty( $review->rating )) { |
|
112 | + ->datePublished( (new DateTime( $review->date )) ) |
|
113 | + ->author( $this->getSchemaType( 'Person' )->name( $review->author ) ) |
|
114 | + ->itemReviewed( $this->getSchemaType()->name( $this->getSchemaOptionValue( 'name' ) ) ); |
|
115 | + if( !empty($review->rating) ) { |
|
116 | 116 | $schema->reviewRating( |
117 | 117 | $this->getSchemaType( 'Rating' ) |
118 | 118 | ->ratingValue( $review->rating ) |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | { |
132 | 132 | foreach( $values as $value ) { |
133 | 133 | $option = $this->getSchemaOptionValue( $value ); |
134 | - if( empty( $option ))continue; |
|
134 | + if( empty($option) )continue; |
|
135 | 135 | $schema->$value( $option ); |
136 | 136 | } |
137 | 137 | return $schema; |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | { |
145 | 145 | return $this->buildSchemaValues( $this->getSchemaType(), [ |
146 | 146 | 'description', 'image', 'name', 'url', |
147 | - ]); |
|
147 | + ] ); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | { |
155 | 155 | return $this->buildSchemaValues( $this->buildSummaryForCustom(), [ |
156 | 156 | 'address', 'priceRange', 'telephone', |
157 | - ]); |
|
157 | + ] ); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | /** |
@@ -164,10 +164,10 @@ discard block |
||
164 | 164 | { |
165 | 165 | $offers = $this->buildSchemaValues( $this->getSchemaType( 'AggregateOffer' ), [ |
166 | 166 | 'highPrice', 'lowPrice', 'priceCurrency', |
167 | - ]); |
|
167 | + ] ); |
|
168 | 168 | return $this->buildSummaryForCustom() |
169 | 169 | ->offers( $offers ) |
170 | - ->setProperty( '@id', $this->getSchemaOptionValue( 'url' )); |
|
170 | + ->setProperty( '@id', $this->getSchemaOptionValue( 'url' ) ); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -175,11 +175,11 @@ discard block |
||
175 | 175 | */ |
176 | 176 | protected function getRatingCounts() |
177 | 177 | { |
178 | - if( !isset( $this->ratingCounts )) { |
|
179 | - $this->ratingCounts = glsr( CountsManager::class )->getFlattened([ |
|
178 | + if( !isset($this->ratingCounts) ) { |
|
179 | + $this->ratingCounts = glsr( CountsManager::class )->getFlattened( [ |
|
180 | 180 | 'min' => $this->args['rating'], |
181 | 181 | 'types' => 'local', |
182 | - ]); |
|
182 | + ] ); |
|
183 | 183 | } |
184 | 184 | return $this->ratingCounts; |
185 | 185 | } |
@@ -200,14 +200,14 @@ discard block |
||
200 | 200 | protected function getSchemaOption( $option, $fallback ) |
201 | 201 | { |
202 | 202 | $option = strtolower( $option ); |
203 | - if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ))) { |
|
203 | + if( $schemaOption = trim( (string)get_post_meta( intval( get_the_ID() ), 'schema_'.$option, true ) ) ) { |
|
204 | 204 | return $schemaOption; |
205 | 205 | } |
206 | 206 | $setting = glsr( OptionManager::class )->get( 'settings.schema.'.$option ); |
207 | - if( is_array( $setting )) { |
|
207 | + if( is_array( $setting ) ) { |
|
208 | 208 | return $this->getSchemaOptionDefault( $setting, $fallback ); |
209 | 209 | } |
210 | - return !empty( $setting ) |
|
210 | + return !empty($setting) |
|
211 | 211 | ? $setting |
212 | 212 | : $fallback; |
213 | 213 | } |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | $setting = wp_parse_args( $setting, [ |
222 | 222 | 'custom' => '', |
223 | 223 | 'default' => $fallback, |
224 | - ]); |
|
224 | + ] ); |
|
225 | 225 | return $setting['default'] != 'custom' |
226 | 226 | ? $setting['default'] |
227 | 227 | : $setting['custom']; |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | } |
241 | 241 | if( !is_single() && !is_page() )return; |
242 | 242 | $method = glsr( Helper::class )->buildMethodName( $option, 'getThing' ); |
243 | - if( method_exists( $this, $method )) { |
|
243 | + if( method_exists( $this, $method ) ) { |
|
244 | 244 | return $this->$method(); |
245 | 245 | } |
246 | 246 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | */ |
252 | 252 | protected function getSchemaType( $type = null ) |
253 | 253 | { |
254 | - if( !is_string( $type )) { |
|
254 | + if( !is_string( $type ) ) { |
|
255 | 255 | $type = $this->getSchemaOption( 'type', 'LocalBusiness' ); |
256 | 256 | } |
257 | 257 | $className = glsr( Helper::class )->buildClassName( $type, 'Modules\Schema' ); |
@@ -266,11 +266,11 @@ discard block |
||
266 | 266 | protected function getThingDescription() |
267 | 267 | { |
268 | 268 | $post = get_post(); |
269 | - if( !( $post instanceof WP_Post )) { |
|
269 | + if( !($post instanceof WP_Post) ) { |
|
270 | 270 | return ''; |
271 | 271 | } |
272 | - $text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt )); |
|
273 | - return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 )); |
|
272 | + $text = strip_shortcodes( wp_strip_all_tags( $post->post_excerpt ) ); |
|
273 | + return wp_trim_words( $text, apply_filters( 'excerpt_length', 55 ) ); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | /** |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'navigation' => $navigation, |
58 | 58 | ], |
59 | 59 | 'reviews' => $this->buildReviews(), |
60 | - ]); |
|
60 | + ] ); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $reviewValues = []; |
84 | 84 | foreach( $review as $key => $value ) { |
85 | 85 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
86 | - if( !method_exists( $this, $method ))continue; |
|
86 | + if( !method_exists( $this, $method ) )continue; |
|
87 | 87 | $reviewValues[$key] = $this->$method( $key, $value ); |
88 | 88 | } |
89 | 89 | $reviewValues = apply_filters( 'site-reviews/review/build/after', $reviewValues ); |
@@ -97,12 +97,12 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected function buildOptionAssignedTo( $key, $value ) |
99 | 99 | { |
100 | - if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' ))return; |
|
101 | - $post = get_post( intval( $value )); |
|
102 | - if( !( $post instanceof WP_Post ))return; |
|
100 | + if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' ) )return; |
|
101 | + $post = get_post( intval( $value ) ); |
|
102 | + if( !($post instanceof WP_Post) )return; |
|
103 | 103 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
104 | 104 | 'href' => get_the_permalink( $post->ID ), |
105 | - ]); |
|
105 | + ] ); |
|
106 | 106 | $assignedTo = sprintf( __( 'Review of %s', 'site-reviews' ), $permalink ); |
107 | 107 | return $this->wrap( $key, '<span>'.$assignedTo.'</span>' ); |
108 | 108 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | protected function buildOptionAuthor( $key, $value ) |
116 | 116 | { |
117 | - if( $this->isHidden( $key ))return; |
|
117 | + if( $this->isHidden( $key ) )return; |
|
118 | 118 | $prefix = !$this->isOptionEnabled( 'settings.reviews.avatars.enabled' ) |
119 | 119 | ? apply_filters( 'site-reviews/review/author/prefix', '—' ) |
120 | 120 | : ''; |
@@ -128,13 +128,13 @@ discard block |
||
128 | 128 | */ |
129 | 129 | protected function buildOptionAvatar( $key, $value ) |
130 | 130 | { |
131 | - if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' ))return; |
|
131 | + if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' ) )return; |
|
132 | 132 | $size = $this->getOption( 'settings.reviews.avatars.size', 40 ); |
133 | - return $this->wrap( $key, glsr( Builder::class )->img([ |
|
133 | + return $this->wrap( $key, glsr( Builder::class )->img( [ |
|
134 | 134 | 'src' => $this->generateAvatar( $value ), |
135 | 135 | 'height' => $size, |
136 | 136 | 'width' => $size, |
137 | - ])); |
|
137 | + ] ) ); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | protected function buildOptionContent( $key, $value ) |
146 | 146 | { |
147 | 147 | $text = $this->normalizeText( $value ); |
148 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
148 | + if( $this->isHiddenOrEmpty( $key, $text ) )return; |
|
149 | 149 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
150 | 150 | } |
151 | 151 | |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | protected function buildOptionDate( $key, $value ) |
158 | 158 | { |
159 | - if( $this->isHidden( $key ))return; |
|
159 | + if( $this->isHidden( $key ) )return; |
|
160 | 160 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
161 | 161 | if( $dateFormat == 'relative' ) { |
162 | 162 | $date = glsr( Date::class )->relative( $value ); |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | $format = $dateFormat == 'custom' |
166 | 166 | ? $this->getOption( 'settings.reviews.date.custom', 'M j, Y' ) |
167 | 167 | : (string)get_option( 'date_format' ); |
168 | - $date = date_i18n( $format, strtotime( $value )); |
|
168 | + $date = date_i18n( $format, strtotime( $value ) ); |
|
169 | 169 | } |
170 | 170 | return $this->wrap( $key, '<span>'.$date.'</span>' ); |
171 | 171 | } |
@@ -177,10 +177,10 @@ discard block |
||
177 | 177 | */ |
178 | 178 | protected function buildOptionRating( $key, $value ) |
179 | 179 | { |
180 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
180 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
181 | 181 | $rating = glsr( Html::class )->buildPartial( 'star-rating', [ |
182 | 182 | 'rating' => $value, |
183 | - ]); |
|
183 | + ] ); |
|
184 | 184 | return $this->wrap( $key, $rating ); |
185 | 185 | } |
186 | 186 | |
@@ -191,8 +191,8 @@ discard block |
||
191 | 191 | */ |
192 | 192 | protected function buildOptionResponse( $key, $value ) |
193 | 193 | { |
194 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
195 | - $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
|
194 | + if( $this->isHiddenOrEmpty( $key, $value ) )return; |
|
195 | + $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' ) ); |
|
196 | 196 | $text = $this->normalizeText( $value ); |
197 | 197 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
198 | 198 | return $this->wrap( $key, |
@@ -208,8 +208,8 @@ discard block |
||
208 | 208 | */ |
209 | 209 | protected function buildOptionTitle( $key, $value ) |
210 | 210 | { |
211 | - if( $this->isHidden( $key ))return; |
|
212 | - if( empty( $value )) { |
|
211 | + if( $this->isHidden( $key ) )return; |
|
212 | + if( empty($value) ) { |
|
213 | 213 | $value = __( 'No Title', 'site-reviews' ); |
214 | 214 | } |
215 | 215 | return $this->wrap( $key, '<h3>'.$value.'</h3>' ); |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | return $avatarUrl; |
228 | 228 | } |
229 | 229 | $authorIdOrEmail = get_the_author_meta( 'ID', $review->user_id ); |
230 | - if( empty( $authorIdOrEmail )) { |
|
230 | + if( empty($authorIdOrEmail) ) { |
|
231 | 231 | $authorIdOrEmail = $review->email; |
232 | 232 | } |
233 | 233 | return (string)get_avatar_url( $authorIdOrEmail ); |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | */ |
239 | 239 | protected function generateSchema() |
240 | 240 | { |
241 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
241 | + if( !wp_validate_boolean( $this->args['schema'] ) )return; |
|
242 | 242 | glsr( Schema::class )->store( |
243 | 243 | glsr( Schema::class )->build( $this->args ) |
244 | 244 | ); |
@@ -262,18 +262,18 @@ discard block |
||
262 | 262 | */ |
263 | 263 | protected function getExcerpt( $text ) |
264 | 264 | { |
265 | - $limit = intval( $this->getOption( 'settings.reviews.excerpt.length', 55 )); |
|
265 | + $limit = intval( $this->getOption( 'settings.reviews.excerpt.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.excerpt.enabled' )) { |
|
369 | + if( $this->isOptionEnabled( 'settings.reviews.excerpt.enabled' ) ) { |
|
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 | } |