@@ -79,8 +79,8 @@ |
||
79 | 79 | foreach( $blocks as $block ) { |
80 | 80 | $id = str_replace( '_reviews', '', Application::ID.'_'.$block ); |
81 | 81 | $blockClass = glsr( Helper::class )->buildClassName( $id.'-block', 'Blocks' ); |
82 | - if( !class_exists( $blockClass )) { |
|
83 | - glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass )); |
|
82 | + if( !class_exists( $blockClass ) ) { |
|
83 | + glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass ) ); |
|
84 | 84 | continue; |
85 | 85 | } |
86 | 86 | glsr( $blockClass )->register( $block ); |
@@ -129,13 +129,13 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function renderAssignedToMetabox( WP_Post $post ) |
131 | 131 | { |
132 | - if( !$this->isReviewPostType( $post ))return; |
|
132 | + if( !$this->isReviewPostType( $post ) )return; |
|
133 | 133 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
134 | 134 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
135 | 135 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
136 | 136 | 'id' => $assignedTo, |
137 | 137 | 'template' => $this->buildAssignedToTemplate( $assignedTo, $post ), |
138 | - ]); |
|
138 | + ] ); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -144,12 +144,12 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function renderDetailsMetaBox( WP_Post $post ) |
146 | 146 | { |
147 | - if( !$this->isReviewPostType( $post ))return; |
|
147 | + if( !$this->isReviewPostType( $post ) )return; |
|
148 | 148 | $review = glsr( ReviewManager::class )->single( $post ); |
149 | 149 | glsr()->render( 'partials/editor/metabox-details', [ |
150 | 150 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
151 | 151 | 'metabox' => $this->normalizeDetailsMetaBox( $review ), |
152 | - ]); |
|
152 | + ] ); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -158,14 +158,14 @@ discard block |
||
158 | 158 | */ |
159 | 159 | public function renderPinnedInPublishMetaBox() |
160 | 160 | { |
161 | - if( !$this->isReviewPostType( get_post() ))return; |
|
161 | + if( !$this->isReviewPostType( get_post() ) )return; |
|
162 | 162 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
163 | 163 | 'context' => [ |
164 | 164 | 'no' => __( 'No', 'site-reviews' ), |
165 | 165 | 'yes' => __( 'Yes', 'site-reviews' ), |
166 | 166 | ], |
167 | - 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )), |
|
168 | - ]); |
|
167 | + 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ), |
|
168 | + ] ); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -174,11 +174,11 @@ discard block |
||
174 | 174 | */ |
175 | 175 | public function renderResponseMetaBox( WP_Post $post ) |
176 | 176 | { |
177 | - if( !$this->isReviewPostType( $post ))return; |
|
177 | + if( !$this->isReviewPostType( $post ) )return; |
|
178 | 178 | wp_nonce_field( 'response', '_nonce-response', false ); |
179 | 179 | glsr()->render( 'partials/editor/metabox-response', [ |
180 | 180 | 'response' => get_post_meta( $post->ID, 'response', true ), |
181 | - ]); |
|
181 | + ] ); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function renderReviewEditor( WP_Post $post ) |
189 | 189 | { |
190 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
190 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
191 | 191 | glsr()->render( 'partials/editor/review', [ |
192 | 192 | 'post' => $post, |
193 | 193 | 'response' => get_post_meta( $post->ID, 'response', true ), |
194 | - ]); |
|
194 | + ] ); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $screen = glsr_current_screen(); |
204 | 204 | if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return; |
205 | 205 | add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] ); |
206 | - add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
206 | + add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -212,16 +212,16 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function renderReviewNotice( WP_Post $post ) |
214 | 214 | { |
215 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
215 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
216 | 216 | glsr( Notice::class )->addWarning( sprintf( |
217 | 217 | __( '%s reviews are read-only.', 'site-reviews' ), |
218 | 218 | glsr( Columns::class )->buildColumnReviewType( $post->ID ) |
219 | - )); |
|
219 | + ) ); |
|
220 | 220 | glsr( Template::class )->render( 'partials/editor/notice', [ |
221 | 221 | 'context' => [ |
222 | 222 | 'notices' => glsr( Notice::class )->get(), |
223 | 223 | ], |
224 | - ]); |
|
224 | + ] ); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -231,12 +231,12 @@ discard block |
||
231 | 231 | */ |
232 | 232 | public function renderTaxonomyMetabox( WP_Post $post ) |
233 | 233 | { |
234 | - if( !$this->isReviewPostType( $post ))return; |
|
234 | + if( !$this->isReviewPostType( $post ) )return; |
|
235 | 235 | glsr()->render( 'partials/editor/metabox-categories', [ |
236 | 236 | 'post' => $post, |
237 | 237 | 'tax_name' => Application::TAXONOMY, |
238 | 238 | 'taxonomy' => get_taxonomy( Application::TAXONOMY ), |
239 | - ]); |
|
239 | + ] ); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public function revertReview() |
248 | 248 | { |
249 | - check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() )); |
|
249 | + check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) ); |
|
250 | 250 | glsr( ReviewManager::class )->revert( $postId ); |
251 | 251 | $this->redirect( $postId, 52 ); |
252 | 252 | } |
@@ -269,13 +269,13 @@ discard block |
||
269 | 269 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
270 | 270 | { |
271 | 271 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
272 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
272 | + if( !($assignedPost instanceof WP_Post) )return; |
|
273 | 273 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
274 | 274 | 'context' => [ |
275 | 275 | 'data.url' => (string)get_permalink( $assignedPost ), |
276 | 276 | 'data.title' => get_the_title( $assignedPost ), |
277 | 277 | ], |
278 | - ]); |
|
278 | + ] ); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -299,13 +299,13 @@ discard block |
||
299 | 299 | 'class' => 'button button-large', |
300 | 300 | 'href' => $revertUrl, |
301 | 301 | 'id' => 'revert', |
302 | - ]); |
|
302 | + ] ); |
|
303 | 303 | } |
304 | 304 | return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [ |
305 | 305 | 'class' => 'button button-large', |
306 | 306 | 'disabled' => true, |
307 | 307 | 'id' => 'revert', |
308 | - ]); |
|
308 | + ] ); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -318,11 +318,11 @@ discard block |
||
318 | 318 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
319 | 319 | ? glsr()->reviewTypes[$review->review_type] |
320 | 320 | : __( 'Unknown', 'site-reviews' ); |
321 | - if( !empty( $review->url )) { |
|
321 | + if( !empty($review->url) ) { |
|
322 | 322 | $reviewType = glsr( Builder::class )->a( $reviewType, [ |
323 | 323 | 'href' => $review->url, |
324 | 324 | 'target' => '_blank', |
325 | - ]); |
|
325 | + ] ); |
|
326 | 326 | } |
327 | 327 | return $reviewType; |
328 | 328 | } |
@@ -351,16 +351,16 @@ discard block |
||
351 | 351 | */ |
352 | 352 | protected function normalizeDetailsMetaBox( Review $review ) |
353 | 353 | { |
354 | - $user = empty( $review->user_id ) |
|
354 | + $user = empty($review->user_id) |
|
355 | 355 | ? __( 'Unregistered user', 'site-reviews' ) |
356 | 356 | : glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [ |
357 | 357 | 'href' => get_author_posts_url( $review->user_id ), |
358 | - ]); |
|
359 | - $email = empty( $review->email ) |
|
358 | + ] ); |
|
359 | + $email = empty($review->email) |
|
360 | 360 | ? '—' |
361 | 361 | : glsr( Builder::class )->a( $review->email, [ |
362 | 362 | 'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ), |
363 | - ]); |
|
363 | + ] ); |
|
364 | 364 | $metabox = [ |
365 | 365 | __( 'Rating', 'site-reviews' ) => glsr( Partial::class )->build( 'star-rating', ['rating' => $review->rating] ), |
366 | 366 | __( 'Type', 'site-reviews' ) => $this->getReviewType( $review ), |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | __( 'IP Address', 'site-reviews' ) => $review->ip_address, |
372 | 372 | __( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ), |
373 | 373 | ]; |
374 | - return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review )); |
|
374 | + return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) ); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | $redirectUri = $hasReferer |
389 | 389 | ? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer ) |
390 | 390 | : get_edit_post_link( $postId ); |
391 | - wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri )); |
|
391 | + wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) ); |
|
392 | 392 | exit; |
393 | 393 | } |
394 | 394 | } |
@@ -90,10 +90,14 @@ discard block |
||
90 | 90 | */ |
91 | 91 | public function registerMetaBoxes( $postType, $post ) |
92 | 92 | { |
93 | - if( $postType != Application::POST_TYPE )return; |
|
93 | + if( $postType != Application::POST_TYPE ) { |
|
94 | + return; |
|
95 | + } |
|
94 | 96 | add_meta_box( Application::ID.'_assigned_to', __( 'Assigned To', 'site-reviews' ), [$this, 'renderAssignedToMetabox'], null, 'side' ); |
95 | 97 | add_meta_box( Application::ID.'_review', __( 'Details', 'site-reviews' ), [$this, 'renderDetailsMetaBox'], null, 'side' ); |
96 | - if( get_post_meta( $post->ID, 'review_type', true ) != 'local' )return; |
|
98 | + if( get_post_meta( $post->ID, 'review_type', true ) != 'local' ) { |
|
99 | + return; |
|
100 | + } |
|
97 | 101 | add_meta_box( Application::ID.'_response', __( 'Respond Publicly', 'site-reviews' ), [$this, 'renderResponseMetaBox'], null, 'normal' ); |
98 | 102 | } |
99 | 103 | |
@@ -129,7 +133,9 @@ discard block |
||
129 | 133 | */ |
130 | 134 | public function renderAssignedToMetabox( WP_Post $post ) |
131 | 135 | { |
132 | - if( !$this->isReviewPostType( $post ))return; |
|
136 | + if( !$this->isReviewPostType( $post )) { |
|
137 | + return; |
|
138 | + } |
|
133 | 139 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
134 | 140 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
135 | 141 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
@@ -144,7 +150,9 @@ discard block |
||
144 | 150 | */ |
145 | 151 | public function renderDetailsMetaBox( WP_Post $post ) |
146 | 152 | { |
147 | - if( !$this->isReviewPostType( $post ))return; |
|
153 | + if( !$this->isReviewPostType( $post )) { |
|
154 | + return; |
|
155 | + } |
|
148 | 156 | $review = glsr( ReviewManager::class )->single( $post ); |
149 | 157 | glsr()->render( 'partials/editor/metabox-details', [ |
150 | 158 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
@@ -158,7 +166,9 @@ discard block |
||
158 | 166 | */ |
159 | 167 | public function renderPinnedInPublishMetaBox() |
160 | 168 | { |
161 | - if( !$this->isReviewPostType( get_post() ))return; |
|
169 | + if( !$this->isReviewPostType( get_post() )) { |
|
170 | + return; |
|
171 | + } |
|
162 | 172 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
163 | 173 | 'context' => [ |
164 | 174 | 'no' => __( 'No', 'site-reviews' ), |
@@ -174,7 +184,9 @@ discard block |
||
174 | 184 | */ |
175 | 185 | public function renderResponseMetaBox( WP_Post $post ) |
176 | 186 | { |
177 | - if( !$this->isReviewPostType( $post ))return; |
|
187 | + if( !$this->isReviewPostType( $post )) { |
|
188 | + return; |
|
189 | + } |
|
178 | 190 | wp_nonce_field( 'response', '_nonce-response', false ); |
179 | 191 | glsr()->render( 'partials/editor/metabox-response', [ |
180 | 192 | 'response' => get_post_meta( $post->ID, 'response', true ), |
@@ -187,7 +199,9 @@ discard block |
||
187 | 199 | */ |
188 | 200 | public function renderReviewEditor( WP_Post $post ) |
189 | 201 | { |
190 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
202 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) { |
|
203 | + return; |
|
204 | + } |
|
191 | 205 | glsr()->render( 'partials/editor/review', [ |
192 | 206 | 'post' => $post, |
193 | 207 | 'response' => get_post_meta( $post->ID, 'response', true ), |
@@ -201,7 +215,9 @@ discard block |
||
201 | 215 | public function renderReviewFields() |
202 | 216 | { |
203 | 217 | $screen = glsr_current_screen(); |
204 | - if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return; |
|
218 | + if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE ) { |
|
219 | + return; |
|
220 | + } |
|
205 | 221 | add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] ); |
206 | 222 | add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
207 | 223 | } |
@@ -212,7 +228,9 @@ discard block |
||
212 | 228 | */ |
213 | 229 | public function renderReviewNotice( WP_Post $post ) |
214 | 230 | { |
215 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
231 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post )) { |
|
232 | + return; |
|
233 | + } |
|
216 | 234 | glsr( Notice::class )->addWarning( sprintf( |
217 | 235 | __( '%s reviews are read-only.', 'site-reviews' ), |
218 | 236 | glsr( Columns::class )->buildColumnReviewType( $post->ID ) |
@@ -231,7 +249,9 @@ discard block |
||
231 | 249 | */ |
232 | 250 | public function renderTaxonomyMetabox( WP_Post $post ) |
233 | 251 | { |
234 | - if( !$this->isReviewPostType( $post ))return; |
|
252 | + if( !$this->isReviewPostType( $post )) { |
|
253 | + return; |
|
254 | + } |
|
235 | 255 | glsr()->render( 'partials/editor/metabox-categories', [ |
236 | 256 | 'post' => $post, |
237 | 257 | 'tax_name' => Application::TAXONOMY, |
@@ -269,7 +289,9 @@ discard block |
||
269 | 289 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
270 | 290 | { |
271 | 291 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
272 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
292 | + if( !( $assignedPost instanceof WP_Post )) { |
|
293 | + return; |
|
294 | + } |
|
273 | 295 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
274 | 296 | 'context' => [ |
275 | 297 | 'data.url' => (string)get_permalink( $assignedPost ), |
@@ -314,7 +336,9 @@ discard block |
||
314 | 336 | */ |
315 | 337 | protected function getReviewType( $review ) |
316 | 338 | { |
317 | - if( count( glsr()->reviewTypes ) < 2 )return; |
|
339 | + if( count( glsr()->reviewTypes ) < 2 ) { |
|
340 | + return; |
|
341 | + } |
|
318 | 342 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
319 | 343 | ? glsr()->reviewTypes[$review->review_type] |
320 | 344 | : __( 'Unknown', 'site-reviews' ); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | register_rest_route( $this->namespace, '/types', [ |
29 | 29 | 'callback' => [$this, 'get_types'], |
30 | 30 | 'methods' => Server::READABLE, |
31 | - ]); |
|
31 | + ] ); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -33,6 +33,6 @@ |
||
33 | 33 | 'permission_callback' => [$this, 'get_items_permissions_check'], |
34 | 34 | ], |
35 | 35 | 'schema' => [$this, 'get_public_item_schema'], |
36 | - ]); |
|
36 | + ] ); |
|
37 | 37 | } |
38 | 38 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | 'title' => 'Images', |
18 | 18 | ], |
19 | 19 | 'plugin' => 'site-reviews-images/site-reviews-images.php', |
20 | - ]); |
|
20 | + ] ); |
|
21 | 21 | $template->render( 'partials/addons/addon', [ |
22 | 22 | 'context' => [ |
23 | 23 | 'description' => __( 'Sync your Tripadvisor reviews to your website and manage them with Site Reviews.', 'site-reviews' ), |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | 'title' => 'Tripadvisor Reviews', |
27 | 27 | ], |
28 | 28 | 'plugin' => 'site-reviews-tripadvisor/site-reviews-tripadvisor.php', |
29 | - ]); |
|
29 | + ] ); |
|
30 | 30 | ?> |
31 | 31 | </div> |
32 | 32 | </div> |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function renderTaxonomyFilter() |
37 | 37 | { |
38 | - if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ))return; |
|
38 | + if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ) )return; |
|
39 | 39 | echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [ |
40 | 40 | 'class' => 'screen-reader-text', |
41 | 41 | 'for' => Application::TAXONOMY, |
42 | - ]); |
|
43 | - wp_dropdown_categories([ |
|
42 | + ] ); |
|
43 | + wp_dropdown_categories( [ |
|
44 | 44 | 'depth' => 3, |
45 | 45 | 'hide_empty' => true, |
46 | 46 | 'hide_if_empty' => true, |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | 'show_option_all' => $this->getShowOptionAll(), |
53 | 53 | 'taxonomy' => Application::TAXONOMY, |
54 | 54 | 'value_field' => 'slug', |
55 | - ]); |
|
55 | + ] ); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | protected function getSelected() |
62 | 62 | { |
63 | 63 | global $wp_query; |
64 | - return isset( $wp_query->query[Application::TAXONOMY] ) |
|
64 | + return isset($wp_query->query[Application::TAXONOMY]) |
|
65 | 65 | ? $wp_query->query[Application::TAXONOMY] |
66 | 66 | : ''; |
67 | 67 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | { |
74 | 74 | $taxonomy = get_taxonomy( Application::TAXONOMY ); |
75 | 75 | return $taxonomy |
76 | - ? ucfirst( strtolower( $taxonomy->labels->all_items )) |
|
76 | + ? ucfirst( strtolower( $taxonomy->labels->all_items ) ) |
|
77 | 77 | : ''; |
78 | 78 | } |
79 | 79 | } |
@@ -35,7 +35,9 @@ |
||
35 | 35 | */ |
36 | 36 | public function renderTaxonomyFilter() |
37 | 37 | { |
38 | - if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY ))return; |
|
38 | + if( !is_object_in_taxonomy( glsr_current_screen()->post_type, Application::TAXONOMY )) { |
|
39 | + return; |
|
40 | + } |
|
39 | 41 | echo glsr( Builder::class )->label( __( 'Filter by category', 'site-reviews' ), [ |
40 | 42 | 'class' => 'screen-reader-text', |
41 | 43 | 'for' => Application::TAXONOMY, |
@@ -31,25 +31,25 @@ discard block |
||
31 | 31 | public function __construct( $input ) |
32 | 32 | { |
33 | 33 | $this->request = $input; |
34 | - $this->ajax_request = isset( $input['_ajax_request'] ); |
|
34 | + $this->ajax_request = isset($input['_ajax_request']); |
|
35 | 35 | $this->assigned_to = $this->getNumeric( 'assign_to' ); |
36 | - $this->author = sanitize_text_field( $this->getUser( 'name' )); |
|
36 | + $this->author = sanitize_text_field( $this->getUser( 'name' ) ); |
|
37 | 37 | $this->avatar = $this->getAvatar(); |
38 | - $this->blacklisted = isset( $input['blacklisted'] ); |
|
39 | - $this->category = sanitize_key( $this->get( 'category' )); |
|
40 | - $this->content = sanitize_textarea_field( $this->get( 'content' )); |
|
38 | + $this->blacklisted = isset($input['blacklisted']); |
|
39 | + $this->category = sanitize_key( $this->get( 'category' ) ); |
|
40 | + $this->content = sanitize_textarea_field( $this->get( 'content' ) ); |
|
41 | 41 | $this->custom = $this->getCustom(); |
42 | 42 | $this->date = $this->getDate( 'date' ); |
43 | - $this->email = sanitize_email( $this->getUser( 'email' )); |
|
44 | - $this->form_id = sanitize_key( $this->get( 'form_id' )); |
|
43 | + $this->email = sanitize_email( $this->getUser( 'email' ) ); |
|
44 | + $this->form_id = sanitize_key( $this->get( 'form_id' ) ); |
|
45 | 45 | $this->ip_address = $this->get( 'ip_address' ); |
46 | - $this->post_id = intval( $this->get( '_post_id' )); |
|
47 | - $this->rating = intval( $this->get( 'rating' )); |
|
46 | + $this->post_id = intval( $this->get( '_post_id' ) ); |
|
47 | + $this->rating = intval( $this->get( 'rating' ) ); |
|
48 | 48 | $this->referer = $this->get( '_referer' ); |
49 | - $this->response = sanitize_textarea_field( $this->get( 'response' )); |
|
50 | - $this->terms = !empty( $input['terms'] ); |
|
51 | - $this->title = sanitize_text_field( $this->get( 'title' )); |
|
52 | - $this->url = esc_url_raw( $this->get( 'url' )); |
|
49 | + $this->response = sanitize_textarea_field( $this->get( 'response' ) ); |
|
50 | + $this->terms = !empty($input['terms']); |
|
51 | + $this->title = sanitize_text_field( $this->get( 'title' ) ); |
|
52 | + $this->url = esc_url_raw( $this->get( 'url' ) ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | protected function get( $key ) |
60 | 60 | { |
61 | - return isset( $this->request[$key] ) |
|
61 | + return isset($this->request[$key]) |
|
62 | 62 | ? (string)$this->request[$key] |
63 | 63 | : ''; |
64 | 64 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | { |
71 | 71 | $avatar = $this->get( 'avatar' ); |
72 | 72 | return !filter_var( $avatar, FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED | FILTER_FLAG_HOST_REQUIRED | FILTER_FLAG_PATH_REQUIRED ) |
73 | - ? (string)get_avatar_url( $this->get( 'email' )) |
|
73 | + ? (string)get_avatar_url( $this->get( 'email' ) ) |
|
74 | 74 | : $avatar; |
75 | 75 | } |
76 | 76 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ]; |
87 | 87 | $custom = $this->request; |
88 | 88 | foreach( $unset as $value ) { |
89 | - unset( $custom[$value] ); |
|
89 | + unset($custom[$value]); |
|
90 | 90 | } |
91 | 91 | return $custom; |
92 | 92 | } |
@@ -97,11 +97,11 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected function getDate( $key ) |
99 | 99 | { |
100 | - $date = strtotime( $this->get( $key )); |
|
100 | + $date = strtotime( $this->get( $key ) ); |
|
101 | 101 | if( $date === false ) { |
102 | 102 | $date = time(); |
103 | 103 | } |
104 | - return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date )); |
|
104 | + return get_date_from_gmt( gmdate( 'Y-m-d H:i:s', $date ) ); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -111,13 +111,13 @@ discard block |
||
111 | 111 | protected function getUser( $key ) |
112 | 112 | { |
113 | 113 | $value = $this->get( $key ); |
114 | - if( empty( $value )) { |
|
114 | + if( empty($value) ) { |
|
115 | 115 | $user = wp_get_current_user(); |
116 | 116 | $userValues = [ |
117 | 117 | 'email' => 'user_email', |
118 | 118 | 'name' => 'display_name', |
119 | 119 | ]; |
120 | - if( $user->exists() && array_key_exists( $key, $userValues )) { |
|
120 | + if( $user->exists() && array_key_exists( $key, $userValues ) ) { |
|
121 | 121 | return $user->{$userValues[$key]}; |
122 | 122 | } |
123 | 123 | } |
@@ -108,12 +108,16 @@ |
||
108 | 108 | public function renderTinymceButton( $editorId ) |
109 | 109 | { |
110 | 110 | $allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId ); |
111 | - if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return; |
|
111 | + if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors )) { |
|
112 | + return; |
|
113 | + } |
|
112 | 114 | $shortcodes = []; |
113 | 115 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
114 | 116 | $shortcodes[$shortcode] = $values; |
115 | 117 | } |
116 | - if( empty( $shortcodes ))return; |
|
118 | + if( empty( $shortcodes )) { |
|
119 | + return; |
|
120 | + } |
|
117 | 121 | glsr()->render( 'partials/editor/tinymce', [ |
118 | 122 | 'shortcodes' => $shortcodes, |
119 | 123 | ]); |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | public function enqueueAssets() |
26 | 26 | { |
27 | - $command = new EnqueueAdminAssets([ |
|
27 | + $command = new EnqueueAdminAssets( [ |
|
28 | 28 | 'pointers' => [[ |
29 | 29 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
30 | 30 | 'id' => 'glsr-pointer-pinned', |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | 'target' => '#misc-pub-pinned', |
37 | 37 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
38 | 38 | ]], |
39 | - ]); |
|
39 | + ] ); |
|
40 | 40 | $this->execute( $command ); |
41 | 41 | } |
42 | 42 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
50 | 50 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
51 | - ]); |
|
51 | + ] ); |
|
52 | 52 | return $links; |
53 | 53 | } |
54 | 54 | |
@@ -59,19 +59,19 @@ discard block |
||
59 | 59 | public function filterDashboardGlanceItems( array $items ) |
60 | 60 | { |
61 | 61 | $postCount = wp_count_posts( Application::POST_TYPE ); |
62 | - if( empty( $postCount->publish )) { |
|
62 | + if( empty($postCount->publish) ) { |
|
63 | 63 | return $items; |
64 | 64 | } |
65 | 65 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
66 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
66 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
67 | 67 | $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts ) |
68 | 68 | ? glsr( Builder::class )->a( $text, [ |
69 | 69 | 'class' => 'glsr-review-count', |
70 | 70 | 'href' => 'edit.php?post_type='.Application::POST_TYPE, |
71 | - ]) |
|
71 | + ] ) |
|
72 | 72 | : glsr( Builder::class )->span( $text, [ |
73 | 73 | 'class' => 'glsr-review-count', |
74 | - ]); |
|
74 | + ] ); |
|
75 | 75 | return $items; |
76 | 76 | } |
77 | 77 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | */ |
82 | 82 | public function filterTinymcePlugins( array $plugins ) |
83 | 83 | { |
84 | - if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) { |
|
84 | + if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) { |
|
85 | 85 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
86 | 86 | } |
87 | 87 | return $plugins; |
@@ -93,11 +93,11 @@ discard block |
||
93 | 93 | */ |
94 | 94 | public function registerTinymcePopups() |
95 | 95 | { |
96 | - $command = new RegisterTinymcePopups([ |
|
96 | + $command = new RegisterTinymcePopups( [ |
|
97 | 97 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
98 | 98 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
99 | 99 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
100 | - ]); |
|
100 | + ] ); |
|
101 | 101 | $this->execute( $command ); |
102 | 102 | } |
103 | 103 | |
@@ -109,15 +109,15 @@ discard block |
||
109 | 109 | public function renderTinymceButton( $editorId ) |
110 | 110 | { |
111 | 111 | $allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId ); |
112 | - if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return; |
|
112 | + if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ) )return; |
|
113 | 113 | $shortcodes = []; |
114 | 114 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
115 | 115 | $shortcodes[$shortcode] = $values; |
116 | 116 | } |
117 | - if( empty( $shortcodes ))return; |
|
117 | + if( empty($shortcodes) )return; |
|
118 | 118 | glsr()->render( 'partials/editor/tinymce', [ |
119 | 119 | 'shortcodes' => $shortcodes, |
120 | - ]); |
|
120 | + ] ); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | public function routerClearConsole() |
127 | 127 | { |
128 | 128 | glsr( Console::class )->clear(); |
129 | - glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' )); |
|
129 | + glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) ); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | */ |
135 | 135 | public function routerFetchConsole() |
136 | 136 | { |
137 | - glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' )); |
|
137 | + glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) ); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
@@ -153,13 +153,13 @@ discard block |
||
153 | 153 | } |
154 | 154 | $postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' ); |
155 | 155 | foreach( $postIds as $postId ) { |
156 | - $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId )); |
|
156 | + $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) ); |
|
157 | 157 | } |
158 | 158 | $countManager->setCounts( $countManager->buildCounts() ); |
159 | 159 | if( $showNotice ) { |
160 | - glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
160 | + glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
161 | 161 | } |
162 | - glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' )); |
|
162 | + glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -193,17 +193,17 @@ discard block |
||
193 | 193 | { |
194 | 194 | $file = $_FILES['import-file']; |
195 | 195 | if( $file['error'] !== UPLOAD_ERR_OK ) { |
196 | - return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] )); |
|
196 | + return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) ); |
|
197 | 197 | } |
198 | - if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) { |
|
199 | - return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' )); |
|
198 | + if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) { |
|
199 | + return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) ); |
|
200 | 200 | } |
201 | 201 | $settings = json_decode( file_get_contents( $file['tmp_name'] ), true ); |
202 | - if( empty( $settings )) { |
|
203 | - return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' )); |
|
202 | + if( empty($settings) ) { |
|
203 | + return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) ); |
|
204 | 204 | } |
205 | - glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings )); |
|
206 | - glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' )); |
|
205 | + glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) ); |
|
206 | + glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) ); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ), |
222 | 222 | UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ), |
223 | 223 | ]; |
224 | - return !isset( $errors[$errorCode] ) |
|
224 | + return !isset($errors[$errorCode]) |
|
225 | 225 | ? __( 'Unknown upload error.', 'site-reviews' ) |
226 | 226 | : $errors[$errorCode]; |
227 | 227 | } |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | */ |
14 | 14 | public function handle( Command $command ) |
15 | 15 | { |
16 | - $postId = wp_update_post([ |
|
16 | + $postId = wp_update_post( [ |
|
17 | 17 | 'ID' => $command->id, |
18 | 18 | 'post_status' => $command->status, |
19 | - ]); |
|
20 | - if( is_wp_error( $postId )) { |
|
19 | + ] ); |
|
20 | + if( is_wp_error( $postId ) ) { |
|
21 | 21 | glsr_log()->error( $postId->get_error_message() ); |
22 | 22 | return []; |
23 | 23 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | 'aria-label' => '“'.esc_attr( $title ).'” ('.__( 'Edit', 'site-reviews' ).')', |
40 | 40 | 'class' => 'row-title', |
41 | 41 | 'href' => get_edit_post_link( $postId ), |
42 | - ]); |
|
42 | + ] ); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | protected function getPostState( $postId ) |
50 | 50 | { |
51 | 51 | ob_start(); |
52 | - _post_states( get_post( $postId )); |
|
52 | + _post_states( get_post( $postId ) ); |
|
53 | 53 | return ob_get_clean(); |
54 | 54 | } |
55 | 55 | |
@@ -59,13 +59,13 @@ discard block |
||
59 | 59 | protected function getStatusLinks() |
60 | 60 | { |
61 | 61 | global $avail_post_stati; |
62 | - require_once( ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php' ); |
|
62 | + require_once(ABSPATH.'wp-admin/includes/class-wp-posts-list-table.php'); |
|
63 | 63 | $hookName = 'edit-'.Application::POST_TYPE; |
64 | 64 | set_current_screen( $hookName ); |
65 | 65 | $avail_post_stati = get_available_post_statuses( Application::POST_TYPE ); |
66 | 66 | $table = new \WP_Posts_List_Table( ['screen' => $hookName] ); |
67 | 67 | $views = apply_filters( 'views_'.$hookName, $table->get_views() ); // uses compat get_views() |
68 | - if( empty( $views ))return; |
|
68 | + if( empty($views) )return; |
|
69 | 69 | foreach( $views as $class => $view ) { |
70 | 70 | $views[$class] = "\t<li class='$class'>$view"; |
71 | 71 | } |
@@ -65,7 +65,9 @@ |
||
65 | 65 | $avail_post_stati = get_available_post_statuses( Application::POST_TYPE ); |
66 | 66 | $table = new \WP_Posts_List_Table( ['screen' => $hookName] ); |
67 | 67 | $views = apply_filters( 'views_'.$hookName, $table->get_views() ); // uses compat get_views() |
68 | - if( empty( $views ))return; |
|
68 | + if( empty( $views )) { |
|
69 | + return; |
|
70 | + } |
|
69 | 71 | foreach( $views as $class => $view ) { |
70 | 72 | $views[$class] = "\t<li class='$class'>$view"; |
71 | 73 | } |