@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function deleteAllSessions( $sessionCookiePrefix ) |
25 | 25 | { |
26 | - return $this->db->query(" |
|
26 | + return $this->db->query( " |
|
27 | 27 | DELETE |
28 | 28 | FROM {$this->db->options} |
29 | 29 | WHERE option_name LIKE '{$sessionCookiePrefix}_%' |
30 | - "); |
|
30 | + " ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public function deleteExpiredSessions( $expiredSessions ) |
38 | 38 | { |
39 | - return $this->db->query(" |
|
39 | + return $this->db->query( " |
|
40 | 40 | DELETE |
41 | 41 | FROM {$this->db->options} |
42 | 42 | WHERE option_name IN ('{$expiredSessions}') |
43 | - "); |
|
43 | + " ); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function getReviewCountsFor( $metaKey ) |
51 | 51 | { |
52 | - return (array) $this->db->get_results(" |
|
52 | + return (array)$this->db->get_results( " |
|
53 | 53 | SELECT m.meta_value AS name, COUNT(*) num_posts |
54 | 54 | FROM {$this->db->posts} AS p |
55 | 55 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
56 | 56 | WHERE p.post_type = '{$this->postType}' |
57 | 57 | AND m.meta_key = '{$metaKey}' |
58 | 58 | GROUP BY name |
59 | - "); |
|
59 | + " ); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -66,13 +66,13 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function getExpiredSessions( $sessionCookiePrefix, $limit ) |
68 | 68 | { |
69 | - return $this->db->get_results(" |
|
69 | + return $this->db->get_results( " |
|
70 | 70 | SELECT option_name AS name, option_value AS expiration |
71 | 71 | FROM {$this->db->options} |
72 | 72 | WHERE option_name LIKE '{$sessionCookiePrefix}_expires_%' |
73 | 73 | ORDER BY option_value ASC |
74 | 74 | LIMIT 0, {$limit} |
75 | - "); |
|
75 | + " ); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function getReviewCounts( $lastPostId = 0, $limit = 500 ) |
84 | 84 | { |
85 | - return $this->db->get_results(" |
|
85 | + return $this->db->get_results( " |
|
86 | 86 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
87 | 87 | FROM {$this->db->posts} AS p |
88 | 88 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function getReviewPostId( $metaReviewId ) |
105 | 105 | { |
106 | - $postId = $this->db->get_var(" |
|
106 | + $postId = $this->db->get_var( " |
|
107 | 107 | SELECT p.ID |
108 | 108 | FROM {$this->db->posts} AS p |
109 | 109 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
110 | 110 | WHERE p.post_type = '{$this->postType}' |
111 | 111 | AND m.meta_key = 'review_id' |
112 | 112 | AND m.meta_value = '{$metaReviewId}' |
113 | - "); |
|
113 | + " ); |
|
114 | 114 | return intval( $postId ); |
115 | 115 | } |
116 | 116 | |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function getReviewIdsByType( $reviewType ) |
122 | 122 | { |
123 | - $query = $this->db->get_col(" |
|
123 | + $query = $this->db->get_col( " |
|
124 | 124 | SELECT m1.meta_value AS review_id |
125 | 125 | FROM {$this->db->posts} AS p |
126 | 126 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -129,8 +129,8 @@ discard block |
||
129 | 129 | AND m1.meta_key = 'review_id' |
130 | 130 | AND m2.meta_key = 'review_type' |
131 | 131 | AND m2.meta_value = '{$reviewType}' |
132 | - "); |
|
133 | - return array_keys( array_flip( $query )); |
|
132 | + " ); |
|
133 | + return array_keys( array_flip( $query ) ); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | */ |
142 | 142 | public function getReviewPostCounts( $postId, $lastPostId = 0, $limit = 500 ) |
143 | 143 | { |
144 | - return $this->db->get_results(" |
|
144 | + return $this->db->get_results( " |
|
145 | 145 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
146 | 146 | FROM {$this->db->posts} AS p |
147 | 147 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -167,9 +167,9 @@ discard block |
||
167 | 167 | public function getReviewRatingsFromIds( array $postIds, $greaterThanId = 0, $limit = 100 ) |
168 | 168 | { |
169 | 169 | sort( $postIds ); |
170 | - $postIds = array_slice( $postIds, intval( array_search( $greaterThanId, $postIds )), $limit ); |
|
170 | + $postIds = array_slice( $postIds, intval( array_search( $greaterThanId, $postIds ) ), $limit ); |
|
171 | 171 | $postIds = implode( ',', $postIds ); |
172 | - return $this->db->get_results(" |
|
172 | + return $this->db->get_results( " |
|
173 | 173 | SELECT p.ID, m.meta_value AS rating |
174 | 174 | FROM {$this->db->posts} AS p |
175 | 175 | INNER JOIN {$this->db->postmeta} AS m ON p.ID = m.post_id |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | $queryBuilder = glsr( QueryBuilder::class ); |
194 | 194 | $key = $queryBuilder->buildSqlOr( $key, "m.meta_key = '%s'" ); |
195 | 195 | $status = $queryBuilder->buildSqlOr( $status, "p.post_status = '%s'" ); |
196 | - return $this->db->get_col(" |
|
196 | + return $this->db->get_col( " |
|
197 | 197 | SELECT DISTINCT m.meta_value |
198 | 198 | FROM {$this->db->postmeta} m |
199 | 199 | LEFT JOIN {$this->db->posts} p ON p.ID = m.post_id |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | AND ({$key}) |
202 | 202 | AND ({$status}) |
203 | 203 | ORDER BY m.meta_value |
204 | - "); |
|
204 | + " ); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function getReviewTermCounts( $termTaxonomyId, $lastPostId = 0, $limit = 500 ) |
214 | 214 | { |
215 | - return $this->db->get_results(" |
|
215 | + return $this->db->get_results( " |
|
216 | 216 | SELECT p.ID, m1.meta_value AS rating, m2.meta_value AS type |
217 | 217 | FROM {$this->db->posts} AS p |
218 | 218 | INNER JOIN {$this->db->postmeta} AS m1 ON p.ID = m1.post_id |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | 'post_type' => Application::POST_TYPE, |
36 | 36 | ]; |
37 | 37 | $postId = wp_insert_post( $postValues, true ); |
38 | - if( is_wp_error( $postId )) { |
|
38 | + if( is_wp_error( $postId ) ) { |
|
39 | 39 | glsr_log()->error( $postId->get_error_message() )->debug( $postValues ); |
40 | 40 | return false; |
41 | 41 | } |
42 | 42 | $this->setTerms( $postId, $command->category ); |
43 | - $review = $this->single( get_post( $postId )); |
|
43 | + $review = $this->single( get_post( $postId ) ); |
|
44 | 44 | do_action( 'site-reviews/review/created', $review, $command ); |
45 | 45 | return $review; |
46 | 46 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function delete( $metaReviewId ) |
53 | 53 | { |
54 | - if( $postId = $this->getPostId( $metaReviewId )) { |
|
54 | + if( $postId = $this->getPostId( $metaReviewId ) ) { |
|
55 | 55 | wp_delete_post( $postId, true ); |
56 | 56 | } |
57 | 57 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $paged = glsr( QueryBuilder::class )->getPaged( |
74 | 74 | wp_validate_boolean( $args['pagination'] ) |
75 | 75 | ); |
76 | - $reviews = new WP_Query([ |
|
76 | + $reviews = new WP_Query( [ |
|
77 | 77 | 'meta_key' => 'pinned', |
78 | 78 | 'meta_query' => $metaQuery, |
79 | 79 | 'offset' => $args['offset'], |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | 'post_type' => Application::POST_TYPE, |
87 | 87 | 'posts_per_page' => $args['count'], |
88 | 88 | 'tax_query' => $taxQuery, |
89 | - ]); |
|
89 | + ] ); |
|
90 | 90 | return (object)[ |
91 | 91 | 'results' => array_map( [$this, 'single'], $reviews->posts ), |
92 | 92 | 'max_num_pages' => $reviews->max_num_pages, |
@@ -120,11 +120,11 @@ discard block |
||
120 | 120 | $terms = []; |
121 | 121 | $termIds = glsr( Helper::class )->convertStringToArray( $commaSeparatedTermIds ); |
122 | 122 | foreach( $termIds as $termId ) { |
123 | - if( is_numeric( $termId )) { |
|
123 | + if( is_numeric( $termId ) ) { |
|
124 | 124 | $termId = intval( $termId ); |
125 | 125 | } |
126 | 126 | $term = term_exists( $termId, Application::TAXONOMY ); |
127 | - if( !isset( $term['term_id'] ))continue; |
|
127 | + if( !isset($term['term_id']) )continue; |
|
128 | 128 | $terms[] = $term; |
129 | 129 | } |
130 | 130 | return $terms; |
@@ -138,13 +138,13 @@ discard block |
||
138 | 138 | { |
139 | 139 | if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
140 | 140 | delete_post_meta( $postId, '_edit_last' ); |
141 | - $result = wp_update_post([ |
|
141 | + $result = wp_update_post( [ |
|
142 | 142 | 'ID' => $postId, |
143 | 143 | 'post_content' => get_post_meta( $postId, 'content', true ), |
144 | 144 | 'post_date' => get_post_meta( $postId, 'date', true ), |
145 | 145 | 'post_title' => get_post_meta( $postId, 'title', true ), |
146 | - ]); |
|
147 | - if( is_wp_error( $result )) { |
|
146 | + ] ); |
|
147 | + if( is_wp_error( $result ) ) { |
|
148 | 148 | glsr_log()->error( $result->get_error_message() ); |
149 | 149 | } |
150 | 150 | } |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | protected function getNewPostStatus( array $review, $isBlacklisted ) |
167 | 167 | { |
168 | 168 | $requireApprovalOption = glsr( OptionManager::class )->get( 'settings.general.require.approval' ); |
169 | - return $review['review_type'] == 'local' && ( $requireApprovalOption == 'yes' || $isBlacklisted ) |
|
169 | + return $review['review_type'] == 'local' && ($requireApprovalOption == 'yes' || $isBlacklisted) |
|
170 | 170 | ? 'pending' |
171 | 171 | : 'publish'; |
172 | 172 | } |
@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | protected function setTerms( $postId, $termIds ) |
180 | 180 | { |
181 | 181 | $terms = $this->normalizeTermIds( $termIds ); |
182 | - if( empty( $terms ))return; |
|
182 | + if( empty($terms) )return; |
|
183 | 183 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
184 | - if( is_wp_error( $result )) { |
|
184 | + if( is_wp_error( $result ) ) { |
|
185 | 185 | glsr_log()->error( $result->get_error_message() ); |
186 | 186 | } |
187 | 187 | } |
@@ -124,7 +124,9 @@ discard block |
||
124 | 124 | $termId = intval( $termId ); |
125 | 125 | } |
126 | 126 | $term = term_exists( $termId, Application::TAXONOMY ); |
127 | - if( !isset( $term['term_id'] ))continue; |
|
127 | + if( !isset( $term['term_id'] )) { |
|
128 | + continue; |
|
129 | + } |
|
128 | 130 | $terms[] = $term; |
129 | 131 | } |
130 | 132 | return $terms; |
@@ -136,7 +138,9 @@ discard block |
||
136 | 138 | */ |
137 | 139 | public function revert( $postId ) |
138 | 140 | { |
139 | - if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
|
141 | + if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE ) { |
|
142 | + return; |
|
143 | + } |
|
140 | 144 | delete_post_meta( $postId, '_edit_last' ); |
141 | 145 | $result = wp_update_post([ |
142 | 146 | 'ID' => $postId, |
@@ -154,7 +158,9 @@ discard block |
||
154 | 158 | */ |
155 | 159 | public function single( WP_Post $post ) |
156 | 160 | { |
157 | - if( $post->post_type != Application::POST_TYPE )return; |
|
161 | + if( $post->post_type != Application::POST_TYPE ) { |
|
162 | + return; |
|
163 | + } |
|
158 | 164 | $review = new Review( $post ); |
159 | 165 | return apply_filters( 'site-reviews/get/review', $review, $post ); |
160 | 166 | } |
@@ -179,7 +185,9 @@ discard block |
||
179 | 185 | protected function setTerms( $postId, $termIds ) |
180 | 186 | { |
181 | 187 | $terms = $this->normalizeTermIds( $termIds ); |
182 | - if( empty( $terms ))return; |
|
188 | + if( empty( $terms )) { |
|
189 | + return; |
|
190 | + } |
|
183 | 191 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
184 | 192 | if( is_wp_error( $result )) { |
185 | 193 | glsr_log()->error( $result->get_error_message() ); |
@@ -26,15 +26,15 @@ discard block |
||
26 | 26 | { |
27 | 27 | sort( $termTaxonomyIds ); |
28 | 28 | sort( $oldTermTaxonomyIds ); |
29 | - if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ))return; |
|
30 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
29 | + if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ) )return; |
|
30 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
31 | 31 | $ignoredIds = array_intersect( $oldTermTaxonomyIds, $termTaxonomyIds ); |
32 | 32 | $decreasedIds = array_diff( $oldTermTaxonomyIds, $ignoredIds ); |
33 | 33 | $increasedIds = array_diff( $termTaxonomyIds, $ignoredIds ); |
34 | - if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' )) { |
|
34 | + if( $review->term_ids = glsr( Database::class )->getTermIds( $decreasedIds, 'term_taxonomy_id' ) ) { |
|
35 | 35 | glsr( CountsManager::class )->decreaseTermCounts( $review ); |
36 | 36 | } |
37 | - if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' )) { |
|
37 | + if( $review->term_ids = glsr( Database::class )->getTermIds( $increasedIds, 'term_taxonomy_id' ) ) { |
|
38 | 38 | glsr( CountsManager::class )->increaseTermCounts( $review ); |
39 | 39 | } |
40 | 40 | } |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function onAfterChangeStatus( $newStatus, $oldStatus, WP_Post $post ) |
49 | 49 | { |
50 | - if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ))return; |
|
51 | - $review = glsr( ReviewManager::class )->single( get_post( $post->ID )); |
|
50 | + if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ) )return; |
|
51 | + $review = glsr( ReviewManager::class )->single( get_post( $post->ID ) ); |
|
52 | 52 | if( $post->post_status == 'publish' ) { |
53 | 53 | glsr( CountsManager::class )->increase( $review ); |
54 | 54 | } |
@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function onBeforeDelete( $postId ) |
76 | 76 | { |
77 | - if( !$this->isReviewPostId( $postId ))return; |
|
78 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
77 | + if( !$this->isReviewPostId( $postId ) )return; |
|
78 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
79 | 79 | glsr( CountsManager::class )->decrease( $review ); |
80 | 80 | } |
81 | 81 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | if( !$this->isReviewPostId( $postId ) |
93 | 93 | || !in_array( $metaKey, ['assigned_to', 'rating', 'review_type'] ) |
94 | 94 | )return; |
95 | - $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
|
95 | + $review = glsr( ReviewManager::class )->single( get_post( $postId ) ); |
|
96 | 96 | if( $review->$metaKey == $metaValue )return; |
97 | 97 | $method = glsr( Helper::class )->buildMethodName( $metaKey, 'onBeforeChange' ); |
98 | 98 | call_user_func( [$this, $method], $review, $metaValue ); |
@@ -26,7 +26,9 @@ discard block |
||
26 | 26 | { |
27 | 27 | sort( $termTaxonomyIds ); |
28 | 28 | sort( $oldTermTaxonomyIds ); |
29 | - if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ))return; |
|
29 | + if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId )) { |
|
30 | + return; |
|
31 | + } |
|
30 | 32 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
31 | 33 | $ignoredIds = array_intersect( $oldTermTaxonomyIds, $termTaxonomyIds ); |
32 | 34 | $decreasedIds = array_diff( $oldTermTaxonomyIds, $ignoredIds ); |
@@ -47,7 +49,9 @@ discard block |
||
47 | 49 | */ |
48 | 50 | public function onAfterChangeStatus( $newStatus, $oldStatus, WP_Post $post ) |
49 | 51 | { |
50 | - if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ))return; |
|
52 | + if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] )) { |
|
53 | + return; |
|
54 | + } |
|
51 | 55 | $review = glsr( ReviewManager::class )->single( get_post( $post->ID )); |
52 | 56 | if( $post->post_status == 'publish' ) { |
53 | 57 | glsr( CountsManager::class )->increase( $review ); |
@@ -63,7 +67,9 @@ discard block |
||
63 | 67 | */ |
64 | 68 | public function onAfterCreate( Review $review ) |
65 | 69 | { |
66 | - if( $review->status !== 'publish' )return; |
|
70 | + if( $review->status !== 'publish' ) { |
|
71 | + return; |
|
72 | + } |
|
67 | 73 | glsr( CountsManager::class )->increase( $review ); |
68 | 74 | } |
69 | 75 | |
@@ -74,7 +80,9 @@ discard block |
||
74 | 80 | */ |
75 | 81 | public function onBeforeDelete( $postId ) |
76 | 82 | { |
77 | - if( !$this->isReviewPostId( $postId ))return; |
|
83 | + if( !$this->isReviewPostId( $postId )) { |
|
84 | + return; |
|
85 | + } |
|
78 | 86 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
79 | 87 | glsr( CountsManager::class )->decrease( $review ); |
80 | 88 | } |
@@ -91,9 +99,13 @@ discard block |
||
91 | 99 | { |
92 | 100 | if( !$this->isReviewPostId( $postId ) |
93 | 101 | || !in_array( $metaKey, ['assigned_to', 'rating', 'review_type'] ) |
94 | - )return; |
|
102 | + ) { |
|
103 | + return; |
|
104 | + } |
|
95 | 105 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
96 | - if( $review->$metaKey == $metaValue )return; |
|
106 | + if( $review->$metaKey == $metaValue ) { |
|
107 | + return; |
|
108 | + } |
|
97 | 109 | $method = glsr( Helper::class )->buildMethodName( $metaKey, 'onBeforeChange' ); |
98 | 110 | call_user_func( [$this, $method], $review, $metaValue ); |
99 | 111 | } |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | $this->getCounts(), |
67 | 67 | $review->review_type, |
68 | 68 | $review->rating |
69 | - )); |
|
69 | + ) ); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function decreasePostCounts( Review $review ) |
76 | 76 | { |
77 | - if( empty( $counts = $this->getPostCounts( $review->assigned_to )))return; |
|
77 | + if( empty($counts = $this->getPostCounts( $review->assigned_to )) )return; |
|
78 | 78 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
79 | 79 | $this->setPostCounts( $review->assigned_to, $counts ); |
80 | 80 | } |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | public function decreaseTermCounts( Review $review ) |
86 | 86 | { |
87 | 87 | foreach( $review->term_ids as $termId ) { |
88 | - if( empty( $counts = $this->getTermCounts( $termId )))continue; |
|
88 | + if( empty($counts = $this->getTermCounts( $termId )) )continue; |
|
89 | 89 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
90 | 90 | $this->setTermCounts( $termId, $counts ); |
91 | 91 | } |
@@ -97,17 +97,17 @@ discard block |
||
97 | 97 | public function flatten( array $reviewCounts, array $args = [] ) |
98 | 98 | { |
99 | 99 | $counts = []; |
100 | - array_walk_recursive( $reviewCounts, function( $num, $index ) use( &$counts ) { |
|
101 | - $counts[$index] = isset( $counts[$index] ) |
|
100 | + array_walk_recursive( $reviewCounts, function( $num, $index ) use(&$counts) { |
|
101 | + $counts[$index] = isset($counts[$index]) |
|
102 | 102 | ? $num + $counts[$index] |
103 | 103 | : $num; |
104 | 104 | }); |
105 | 105 | $args = wp_parse_args( $args, [ |
106 | 106 | 'max' => Rating::MAX_RATING, |
107 | 107 | 'min' => Rating::MIN_RATING, |
108 | - ]); |
|
108 | + ] ); |
|
109 | 109 | foreach( $counts as $index => &$num ) { |
110 | - if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ))continue; |
|
110 | + if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ) )continue; |
|
111 | 111 | $num = 0; |
112 | 112 | } |
113 | 113 | return $counts; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | 'post_ids' => [], |
123 | 123 | 'term_ids' => [], |
124 | 124 | 'type' => 'local', |
125 | - ]); |
|
125 | + ] ); |
|
126 | 126 | $counts = []; |
127 | 127 | foreach( glsr( Polylang::class )->getPostIds( $args['post_ids'] ) as $postId ) { |
128 | 128 | $counts[] = $this->getPostCounts( $postId ); |
@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | foreach( $args['term_ids'] as $termId ) { |
131 | 131 | $counts[] = $this->getTermCounts( $termId ); |
132 | 132 | } |
133 | - if( empty( $counts )) { |
|
133 | + if( empty($counts) ) { |
|
134 | 134 | $counts[] = $this->getCounts(); |
135 | 135 | } |
136 | 136 | return in_array( $args['type'], ['', 'all'] ) |
137 | 137 | ? $this->normalize( [$this->flatten( $counts )] ) |
138 | - : $this->normalize( glsr_array_column( $counts, $args['type'] )); |
|
138 | + : $this->normalize( glsr_array_column( $counts, $args['type'] ) ); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | public function getCounts() |
145 | 145 | { |
146 | 146 | $counts = glsr( OptionManager::class )->get( 'counts', [] ); |
147 | - if( !is_array( $counts )) { |
|
147 | + if( !is_array( $counts ) ) { |
|
148 | 148 | glsr_log()->error( 'CountsManager: counts is not an array' )->debug( $counts ); |
149 | 149 | return []; |
150 | 150 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | */ |
158 | 158 | public function getPostCounts( $postId ) |
159 | 159 | { |
160 | - return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true )); |
|
160 | + return array_filter( (array)get_post_meta( $postId, static::META_COUNT, true ) ); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | */ |
167 | 167 | public function getTermCounts( $termId ) |
168 | 168 | { |
169 | - return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true )); |
|
169 | + return array_filter( (array)get_term_meta( $termId, static::META_COUNT, true ) ); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |
@@ -184,14 +184,14 @@ discard block |
||
184 | 184 | */ |
185 | 185 | public function increaseCounts( Review $review ) |
186 | 186 | { |
187 | - if( empty( $counts = $this->getCounts() )) { |
|
187 | + if( empty($counts = $this->getCounts()) ) { |
|
188 | 188 | $counts = $this->buildCounts(); |
189 | 189 | } |
190 | 190 | $this->setCounts( $this->increaseRating( |
191 | 191 | $counts, |
192 | 192 | $review->review_type, |
193 | 193 | $review->rating |
194 | - )); |
|
194 | + ) ); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | */ |
200 | 200 | public function increasePostCounts( Review $review ) |
201 | 201 | { |
202 | - if( !( get_post( $review->assigned_to ) instanceof WP_Post ))return; |
|
202 | + if( !(get_post( $review->assigned_to ) instanceof WP_Post) )return; |
|
203 | 203 | $counts = $this->getPostCounts( $review->assigned_to ); |
204 | - $counts = empty( $counts ) |
|
204 | + $counts = empty($counts) |
|
205 | 205 | ? $this->buildPostCounts( $review->assigned_to ) |
206 | 206 | : $this->increaseRating( $counts, $review->review_type, $review->rating ); |
207 | 207 | $this->setPostCounts( $review->assigned_to, $counts ); |
@@ -212,10 +212,10 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function increaseTermCounts( Review $review ) |
214 | 214 | { |
215 | - $terms = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids )); |
|
215 | + $terms = glsr( ReviewManager::class )->normalizeTerms( implode( ',', $review->term_ids ) ); |
|
216 | 216 | foreach( $terms as $term ) { |
217 | 217 | $counts = $this->getTermCounts( $term['term_id'] ); |
218 | - $counts = empty( $counts ) |
|
218 | + $counts = empty($counts) |
|
219 | 219 | ? $this->buildTermCounts( $term['term_taxonomy_id'] ) |
220 | 220 | : $this->increaseRating( $counts, $review->review_type, $review->rating ); |
221 | 221 | $this->setTermCounts( $term['term_id'], $counts ); |
@@ -238,8 +238,8 @@ discard block |
||
238 | 238 | { |
239 | 239 | $ratingCounts = $this->flatten( $reviewCounts ); |
240 | 240 | update_post_meta( $postId, static::META_COUNT, $reviewCounts ); |
241 | - update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
|
242 | - update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts )); |
|
241 | + update_post_meta( $postId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) ); |
|
242 | + update_post_meta( $postId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) ); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
@@ -249,11 +249,11 @@ discard block |
||
249 | 249 | public function setTermCounts( $termId, array $reviewCounts ) |
250 | 250 | { |
251 | 251 | $term = get_term( $termId, Application::TAXONOMY ); |
252 | - if( !isset( $term->term_id ))return; |
|
252 | + if( !isset($term->term_id) )return; |
|
253 | 253 | $ratingCounts = $this->flatten( $reviewCounts ); |
254 | 254 | update_term_meta( $termId, static::META_COUNT, $reviewCounts ); |
255 | - update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
|
256 | - update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts )); |
|
255 | + update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts ) ); |
|
256 | + update_term_meta( $termId, static::META_RANKING, glsr( Rating::class )->getRanking( $ratingCounts ) ); |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | /** |
@@ -265,12 +265,12 @@ discard block |
||
265 | 265 | { |
266 | 266 | $counts = []; |
267 | 267 | $lastPostId = 0; |
268 | - while( $reviews = $this->queryReviews( $args, $lastPostId, $limit )) { |
|
269 | - $types = array_keys( array_flip( glsr_array_column( $reviews, 'type' ))); |
|
270 | - $types = array_unique( array_merge( ['local'], $types )); |
|
268 | + while( $reviews = $this->queryReviews( $args, $lastPostId, $limit ) ) { |
|
269 | + $types = array_keys( array_flip( glsr_array_column( $reviews, 'type' ) ) ); |
|
270 | + $types = array_unique( array_merge( ['local'], $types ) ); |
|
271 | 271 | foreach( $types as $type ) { |
272 | 272 | $type = $this->normalizeType( $type ); |
273 | - if( isset( $counts[$type] ))continue; |
|
273 | + if( isset($counts[$type]) )continue; |
|
274 | 274 | $counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 ); |
275 | 275 | } |
276 | 276 | foreach( $reviews as $review ) { |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | */ |
290 | 290 | protected function decreaseRating( array $reviewCounts, $type, $rating ) |
291 | 291 | { |
292 | - if( isset( $reviewCounts[$type][$rating] )) { |
|
292 | + if( isset($reviewCounts[$type][$rating]) ) { |
|
293 | 293 | $reviewCounts[$type][$rating] = max( 0, $reviewCounts[$type][$rating] - 1 ); |
294 | 294 | } |
295 | 295 | return $reviewCounts; |
@@ -302,10 +302,10 @@ discard block |
||
302 | 302 | */ |
303 | 303 | protected function increaseRating( array $reviewCounts, $type, $rating ) |
304 | 304 | { |
305 | - if( !array_key_exists( $type, glsr()->reviewTypes )) { |
|
305 | + if( !array_key_exists( $type, glsr()->reviewTypes ) ) { |
|
306 | 306 | return $reviewCounts; |
307 | 307 | } |
308 | - if( !array_key_exists( $type, $reviewCounts )) { |
|
308 | + if( !array_key_exists( $type, $reviewCounts ) ) { |
|
309 | 309 | $reviewCounts[$type] = []; |
310 | 310 | } |
311 | 311 | $reviewCounts = $this->normalize( $reviewCounts ); |
@@ -318,12 +318,12 @@ discard block |
||
318 | 318 | */ |
319 | 319 | protected function normalize( array $reviewCounts ) |
320 | 320 | { |
321 | - if( empty( $reviewCounts )) { |
|
321 | + if( empty($reviewCounts) ) { |
|
322 | 322 | $reviewCounts = [[]]; |
323 | 323 | } |
324 | 324 | foreach( $reviewCounts as &$counts ) { |
325 | 325 | foreach( range( 0, Rating::MAX_RATING ) as $index ) { |
326 | - if( isset( $counts[$index] ))continue; |
|
326 | + if( isset($counts[$index]) )continue; |
|
327 | 327 | $counts[$index] = 0; |
328 | 328 | } |
329 | 329 | ksort( $counts ); |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | */ |
338 | 338 | protected function normalizeType( $type ) |
339 | 339 | { |
340 | - return empty( $type ) || !is_string( $type ) |
|
340 | + return empty($type) || !is_string( $type ) |
|
341 | 341 | ? 'local' |
342 | 342 | : $type; |
343 | 343 | } |
@@ -349,14 +349,14 @@ discard block |
||
349 | 349 | */ |
350 | 350 | protected function queryReviews( array $args = [], $lastPostId, $limit ) |
351 | 351 | { |
352 | - $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_taxonomy_id'], '' )); |
|
353 | - if( empty( array_filter( $args ))) { |
|
352 | + $args = wp_parse_args( $args, array_fill_keys( ['post_id', 'term_taxonomy_id'], '' ) ); |
|
353 | + if( empty(array_filter( $args )) ) { |
|
354 | 354 | return glsr( SqlQueries::class )->getReviewCounts( $lastPostId, $limit ); |
355 | 355 | } |
356 | - if( !empty( $args['post_id'] )) { |
|
356 | + if( !empty($args['post_id']) ) { |
|
357 | 357 | return glsr( SqlQueries::class )->getReviewPostCounts( $args['post_id'], $lastPostId, $limit ); |
358 | 358 | } |
359 | - if( !empty( $args['term_taxonomy_id'] )) { |
|
359 | + if( !empty($args['term_taxonomy_id']) ) { |
|
360 | 360 | return glsr( SqlQueries::class )->getReviewTermCounts( $args['term_taxonomy_id'], $lastPostId, $limit ); |
361 | 361 | } |
362 | 362 | } |
@@ -74,7 +74,9 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function decreasePostCounts( Review $review ) |
76 | 76 | { |
77 | - if( empty( $counts = $this->getPostCounts( $review->assigned_to )))return; |
|
77 | + if( empty( $counts = $this->getPostCounts( $review->assigned_to ))) { |
|
78 | + return; |
|
79 | + } |
|
78 | 80 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
79 | 81 | $this->setPostCounts( $review->assigned_to, $counts ); |
80 | 82 | } |
@@ -85,7 +87,9 @@ discard block |
||
85 | 87 | public function decreaseTermCounts( Review $review ) |
86 | 88 | { |
87 | 89 | foreach( $review->term_ids as $termId ) { |
88 | - if( empty( $counts = $this->getTermCounts( $termId )))continue; |
|
90 | + if( empty( $counts = $this->getTermCounts( $termId ))) { |
|
91 | + continue; |
|
92 | + } |
|
89 | 93 | $counts = $this->decreaseRating( $counts, $review->review_type, $review->rating ); |
90 | 94 | $this->setTermCounts( $termId, $counts ); |
91 | 95 | } |
@@ -107,7 +111,9 @@ discard block |
||
107 | 111 | 'min' => Rating::MIN_RATING, |
108 | 112 | ]); |
109 | 113 | foreach( $counts as $index => &$num ) { |
110 | - if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] ))continue; |
|
114 | + if( $index >= intval( $args['min'] ) && $index <= intval( $args['max'] )) { |
|
115 | + continue; |
|
116 | + } |
|
111 | 117 | $num = 0; |
112 | 118 | } |
113 | 119 | return $counts; |
@@ -199,7 +205,9 @@ discard block |
||
199 | 205 | */ |
200 | 206 | public function increasePostCounts( Review $review ) |
201 | 207 | { |
202 | - if( !( get_post( $review->assigned_to ) instanceof WP_Post ))return; |
|
208 | + if( !( get_post( $review->assigned_to ) instanceof WP_Post )) { |
|
209 | + return; |
|
210 | + } |
|
203 | 211 | $counts = $this->getPostCounts( $review->assigned_to ); |
204 | 212 | $counts = empty( $counts ) |
205 | 213 | ? $this->buildPostCounts( $review->assigned_to ) |
@@ -249,7 +257,9 @@ discard block |
||
249 | 257 | public function setTermCounts( $termId, array $reviewCounts ) |
250 | 258 | { |
251 | 259 | $term = get_term( $termId, Application::TAXONOMY ); |
252 | - if( !isset( $term->term_id ))return; |
|
260 | + if( !isset( $term->term_id )) { |
|
261 | + return; |
|
262 | + } |
|
253 | 263 | $ratingCounts = $this->flatten( $reviewCounts ); |
254 | 264 | update_term_meta( $termId, static::META_COUNT, $reviewCounts ); |
255 | 265 | update_term_meta( $termId, static::META_AVERAGE, glsr( Rating::class )->getAverage( $ratingCounts )); |
@@ -270,7 +280,9 @@ discard block |
||
270 | 280 | $types = array_unique( array_merge( ['local'], $types )); |
271 | 281 | foreach( $types as $type ) { |
272 | 282 | $type = $this->normalizeType( $type ); |
273 | - if( isset( $counts[$type] ))continue; |
|
283 | + if( isset( $counts[$type] )) { |
|
284 | + continue; |
|
285 | + } |
|
274 | 286 | $counts[$type] = array_fill_keys( range( 0, Rating::MAX_RATING ), 0 ); |
275 | 287 | } |
276 | 288 | foreach( $reviews as $review ) { |
@@ -323,7 +335,9 @@ discard block |
||
323 | 335 | } |
324 | 336 | foreach( $reviewCounts as &$counts ) { |
325 | 337 | foreach( range( 0, Rating::MAX_RATING ) as $index ) { |
326 | - if( isset( $counts[$index] ))continue; |
|
338 | + if( isset( $counts[$index] )) { |
|
339 | + continue; |
|
340 | + } |
|
327 | 341 | $counts[$index] = 0; |
328 | 342 | } |
329 | 343 | ksort( $counts ); |
@@ -20,10 +20,10 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function getAssignedToPost( $postId, $assignedTo = '' ) |
22 | 22 | { |
23 | - if( empty( $assignedTo )) { |
|
23 | + if( empty($assignedTo) ) { |
|
24 | 24 | $assignedTo = get_post_meta( $postId, 'assigned_to', true ); |
25 | 25 | } |
26 | - if( empty( $assignedTo ))return; |
|
26 | + if( empty($assignedTo) )return; |
|
27 | 27 | $assignedPost = get_post( $assignedTo ); |
28 | 28 | if( $assignedPost instanceof WP_Post && $assignedPost->ID != $postId ) { |
29 | 29 | return $assignedPost; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | if( !$metaValue ) { |
45 | 45 | return $counts; |
46 | 46 | } |
47 | - return isset( $counts[$metaValue] ) |
|
47 | + return isset($counts[$metaValue]) |
|
48 | 48 | ? $counts[$metaValue] |
49 | 49 | : 0; |
50 | 50 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function getReviewsMeta( $key, $status = 'publish' ) |
67 | 67 | { |
68 | - if( $status == 'all' || empty( $status )) { |
|
68 | + if( $status == 'all' || empty($status) ) { |
|
69 | 69 | $status = get_post_stati( ['exclude_from_search' => false] ); |
70 | 70 | } |
71 | 71 | return glsr( SqlQueries::class )->getReviewsMeta( $key, $status ); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $termIds = []; |
81 | 81 | foreach( $values as $value ) { |
82 | 82 | $term = get_term_by( $field, $value, Application::TAXONOMY ); |
83 | - if( !isset( $term->term_id ))continue; |
|
83 | + if( !isset($term->term_id) )continue; |
|
84 | 84 | $termIds[] = $term->term_id; |
85 | 85 | } |
86 | 86 | return $termIds; |
@@ -96,9 +96,9 @@ discard block |
||
96 | 96 | 'fields' => 'id=>name', |
97 | 97 | 'hide_empty' => false, |
98 | 98 | 'taxonomy' => Application::TAXONOMY, |
99 | - ]); |
|
99 | + ] ); |
|
100 | 100 | $terms = get_terms( $args ); |
101 | - if( is_wp_error( $terms )) { |
|
101 | + if( is_wp_error( $terms ) ) { |
|
102 | 102 | glsr_log()->error( $terms->get_error_message() ); |
103 | 103 | return []; |
104 | 104 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | 'post_status' => 'publish', |
116 | 116 | 'post_type' => 'any', |
117 | 117 | ]; |
118 | - if( is_numeric( $searchTerm )) { |
|
118 | + if( is_numeric( $searchTerm ) ) { |
|
119 | 119 | $args['post__in'] = [$searchTerm]; |
120 | 120 | } |
121 | 121 | else { |
@@ -134,9 +134,9 @@ discard block |
||
134 | 134 | ob_start(); |
135 | 135 | glsr()->render( 'partials/editor/search-result', [ |
136 | 136 | 'ID' => get_the_ID(), |
137 | - 'permalink' => esc_url( (string) get_permalink() ), |
|
137 | + 'permalink' => esc_url( (string)get_permalink() ), |
|
138 | 138 | 'title' => esc_attr( get_the_title() ), |
139 | - ]); |
|
139 | + ] ); |
|
140 | 140 | $results .= ob_get_clean(); |
141 | 141 | } |
142 | 142 | wp_reset_postdata(); |
@@ -23,7 +23,9 @@ discard block |
||
23 | 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 )) { |
|
27 | + return; |
|
28 | + } |
|
27 | 29 | $assignedPost = get_post( $assignedTo ); |
28 | 30 | if( $assignedPost instanceof WP_Post && $assignedPost->ID != $postId ) { |
29 | 31 | return $assignedPost; |
@@ -80,7 +82,9 @@ discard block |
||
80 | 82 | $termIds = []; |
81 | 83 | foreach( $values as $value ) { |
82 | 84 | $term = get_term_by( $field, $value, Application::TAXONOMY ); |
83 | - if( !isset( $term->term_id ))continue; |
|
85 | + if( !isset( $term->term_id )) { |
|
86 | + continue; |
|
87 | + } |
|
84 | 88 | $termIds[] = $term->term_id; |
85 | 89 | } |
86 | 90 | return $termIds; |
@@ -127,7 +131,9 @@ discard block |
||
127 | 131 | add_filter( 'posts_search', [$queryBuilder, 'filterSearchByTitle'], 500, 2 ); |
128 | 132 | $search = new WP_Query( $args ); |
129 | 133 | remove_filter( 'posts_search', [$queryBuilder, 'filterSearchByTitle'], 500 ); |
130 | - if( !$search->have_posts() )return; |
|
134 | + if( !$search->have_posts() ) { |
|
135 | + return; |
|
136 | + } |
|
131 | 137 | $results = ''; |
132 | 138 | while( $search->have_posts() ) { |
133 | 139 | $search->the_post(); |
@@ -6,7 +6,8 @@ |
||
6 | 6 | |
7 | 7 | class SiteReviewsSummaryShortcode extends Shortcode |
8 | 8 | { |
9 | - protected function hideOptions() { |
|
9 | + protected function hideOptions() |
|
10 | + { |
|
10 | 11 | return [ |
11 | 12 | 'rating' => __( 'Hide the rating', 'site-reviews' ), |
12 | 13 | 'stars' => __( 'Hide the stars', 'site-reviews' ), |
@@ -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.', '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', |
@@ -6,7 +6,8 @@ |
||
6 | 6 | |
7 | 7 | class SiteReviewsShortcode extends Shortcode |
8 | 8 | { |
9 | - protected function hideOptions() { |
|
9 | + protected function hideOptions() |
|
10 | + { |
|
10 | 11 | return [ |
11 | 12 | 'title' => __( 'Hide the title', 'site-reviews' ), |
12 | 13 | 'rating' => __( 'Hide the rating', 'site-reviews' ), |
@@ -15,12 +15,12 @@ discard block |
||
15 | 15 | return [[ |
16 | 16 | 'type' => 'container', |
17 | 17 | 'html' => '<p class="strong">'.esc_html__( 'All settings are optional.', 'site-reviews' ).'</p>', |
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 | 24 | 'label' => esc_html__( 'Description', 'site-reviews' ), |
25 | 25 | 'minHeight' => 60, |
26 | 26 | 'minWidth' => 240, |
@@ -29,25 +29,25 @@ discard block |
||
29 | 29 | 'tooltip' => __( 'Enter a custom shortcode description.', 'site-reviews' ), |
30 | 30 | 'type' => 'textbox', |
31 | 31 | ], |
32 | - $this->getCategories( __( 'Automatically assign a category to reviews submitted with this shortcode.', 'site-reviews' )), |
|
32 | + $this->getCategories( __( 'Automatically assign a category to reviews submitted with this shortcode.', 'site-reviews' ) ), |
|
33 | 33 | [ |
34 | 34 | 'label' => esc_html__( 'Assign To', 'site-reviews' ), |
35 | 35 | 'name' => 'assign_to', |
36 | 36 | 'tooltip' => __( 'Assign submitted reviews to a custom page/post ID. You can also enter "post_id" to assign reviews to the ID of the current page.', 'site-reviews' ), |
37 | 37 | 'type' => 'textbox', |
38 | - ],[ |
|
38 | + ], [ |
|
39 | 39 | 'label' => esc_html__( 'Classes', 'site-reviews' ), |
40 | 40 | 'name' => 'class', |
41 | 41 | 'tooltip' => __( 'Add custom CSS classes to the shortcode.', 'site-reviews' ), |
42 | 42 | 'type' => 'textbox', |
43 | - ],[ |
|
43 | + ], [ |
|
44 | 44 | 'columns' => 2, |
45 | 45 | 'items' => $this->getHideOptions(), |
46 | 46 | 'label' => esc_html__( 'Hide', 'site-reviews' ), |
47 | 47 | 'layout' => 'grid', |
48 | 48 | 'spacing' => 5, |
49 | 49 | 'type' => 'container', |
50 | - ],[ |
|
50 | + ], [ |
|
51 | 51 | 'hidden' => true, |
52 | 52 | 'name' => 'id', |
53 | 53 | 'type' => 'textbox', |