@@ -19,14 +19,14 @@ |
||
19 | 19 | */ |
20 | 20 | public function register( $block ) |
21 | 21 | { |
22 | - if( !function_exists( 'register_block_type' ))return; |
|
22 | + if( !function_exists( 'register_block_type' ) )return; |
|
23 | 23 | register_block_type( Application::ID.'/'.$block, [ |
24 | 24 | 'attributes' => $this->attributes(), |
25 | 25 | 'editor_script' => Application::ID.'/blocks', |
26 | 26 | 'editor_style' => Application::ID.'/blocks', |
27 | 27 | 'render_callback' => [$this, 'render'], |
28 | 28 | 'style' => Application::ID, |
29 | - ]); |
|
29 | + ] ); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -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 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | public function registerPostType() |
22 | 22 | { |
23 | 23 | if( !glsr()->hasPermission() )return; |
24 | - $command = new RegisterPostType([ |
|
24 | + $command = new RegisterPostType( [ |
|
25 | 25 | 'capabilities'=> ['create_posts' => 'create_'.Application::POST_TYPE], |
26 | 26 | 'columns' => [ |
27 | 27 | 'title' => '', |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | 'rest_controller_class' => RestReviewController::class, |
42 | 42 | 'show_in_rest' => true, |
43 | 43 | 'single' => __( 'Review', 'site-reviews' ), |
44 | - ]); |
|
44 | + ] ); |
|
45 | 45 | $this->execute( $command ); |
46 | 46 | } |
47 | 47 | |
@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function registerShortcodes() |
53 | 53 | { |
54 | - $command = new RegisterShortcodes([ |
|
54 | + $command = new RegisterShortcodes( [ |
|
55 | 55 | 'site_reviews', |
56 | 56 | 'site_reviews_form', |
57 | 57 | 'site_reviews_summary', |
58 | - ]); |
|
58 | + ] ); |
|
59 | 59 | $this->execute( $command ); |
60 | 60 | } |
61 | 61 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function registerTaxonomy() |
67 | 67 | { |
68 | - $command = new RegisterTaxonomy([ |
|
68 | + $command = new RegisterTaxonomy( [ |
|
69 | 69 | 'hierarchical' => true, |
70 | 70 | 'meta_box_cb' => [glsr( EditorController::class ), 'renderTaxonomyMetabox'], |
71 | 71 | 'public' => false, |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | 'show_admin_column' => true, |
74 | 74 | 'show_in_rest' => true, |
75 | 75 | 'show_ui' => true, |
76 | - ]); |
|
76 | + ] ); |
|
77 | 77 | $this->execute( $command ); |
78 | 78 | } |
79 | 79 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function registerWidgets() |
85 | 85 | { |
86 | - $command = new RegisterWidgets([ |
|
86 | + $command = new RegisterWidgets( [ |
|
87 | 87 | 'site-reviews' => [ |
88 | 88 | 'class' => 'glsr-widget glsr-widget-site-reviews', |
89 | 89 | 'description' => __( 'Your site’s most recent reviews.', 'site-reviews' ), |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | 'description' => __( 'A summary of your site’s reviews.', 'site-reviews' ), |
100 | 100 | 'title' => __( 'Summary of Reviews', 'site-reviews' ), |
101 | 101 | ], |
102 | - ]); |
|
102 | + ] ); |
|
103 | 103 | $this->execute( $command ); |
104 | 104 | } |
105 | 105 | } |
@@ -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 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | 'savePending' => __( 'Save as Unapproved', 'site-reviews' ), |
18 | 18 | 'published' => __( 'Approved', 'site-reviews' ), |
19 | 19 | ]; |
20 | - if( $this->canModifyTranslation() && isset( $wp_scripts->registered['post']->extra['data'] )) { |
|
20 | + if( $this->canModifyTranslation() && isset($wp_scripts->registered['post']->extra['data']) ) { |
|
21 | 21 | $l10n = &$wp_scripts->registered['post']->extra['data']; |
22 | 22 | foreach( $strings as $search => $replace ) { |
23 | 23 | $l10n = preg_replace( '/("'.$search.'":")([^"]+)/', "$1".$replace, $l10n ); |
@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function filterPostStatusLabels( $translation, $text, $domain ) |
35 | 35 | { |
36 | - if( $this->canModifyTranslation( $domain )) { |
|
36 | + if( $this->canModifyTranslation( $domain ) ) { |
|
37 | 37 | $replacements = $this->getStatusLabels(); |
38 | - if( array_key_exists( $text, $replacements )) { |
|
38 | + if( array_key_exists( $text, $replacements ) ) { |
|
39 | 39 | $translation = $replacements[$text]; |
40 | 40 | } |
41 | 41 | } |
@@ -48,14 +48,14 @@ discard block |
||
48 | 48 | public function filterUpdateMessages( array $messages ) |
49 | 49 | { |
50 | 50 | $post = get_post(); |
51 | - if( !( $post instanceof WP_Post ))return; |
|
51 | + if( !($post instanceof WP_Post) )return; |
|
52 | 52 | $strings = $this->getReviewLabels(); |
53 | 53 | $restored = filter_input( INPUT_GET, 'revision' ); |
54 | - if( $revisionTitle = wp_post_revision_title( intval( $restored ), false )) { |
|
54 | + if( $revisionTitle = wp_post_revision_title( intval( $restored ), false ) ) { |
|
55 | 55 | $restored = sprintf( $strings['restored'], $revisionTitle ); |
56 | 56 | } |
57 | - $scheduled_date = date_i18n( 'M j, Y @ H:i', strtotime( $post->post_date )); |
|
58 | - $messages[ Application::POST_TYPE ] = [ |
|
57 | + $scheduled_date = date_i18n( 'M j, Y @ H:i', strtotime( $post->post_date ) ); |
|
58 | + $messages[Application::POST_TYPE] = [ |
|
59 | 59 | 1 => $strings['updated'], |
60 | 60 | 4 => $strings['updated'], |
61 | 61 | 5 => $restored, |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | protected function canModifyTranslation( $domain = 'default' ) |
79 | 79 | { |
80 | - if( $domain != 'default' || empty( glsr_current_screen()->base )) { |
|
80 | + if( $domain != 'default' || empty(glsr_current_screen()->base) ) { |
|
81 | 81 | return false; |
82 | 82 | } |
83 | 83 | return glsr_current_screen()->post_type == Application::POST_TYPE |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | protected function getStatusLabels() |
113 | 113 | { |
114 | 114 | static $labels; |
115 | - if( empty( $labels )) { |
|
115 | + if( empty($labels) ) { |
|
116 | 116 | $labels = [ |
117 | 117 | 'Pending' => __( 'Unapproved', 'site-reviews' ), |
118 | 118 | 'Pending Review' => __( 'Unapproved', 'site-reviews' ), |