@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | return $this->translate( $translation, $domain, [ |
20 | 20 | 'single' => $text, |
21 | - ]); |
|
21 | + ] ); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | return $this->translate( $translation, $domain, [ |
34 | 34 | 'context' => $context, |
35 | 35 | 'single' => $text, |
36 | - ]); |
|
36 | + ] ); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | 'number' => $number, |
51 | 51 | 'plural' => $plural, |
52 | 52 | 'single' => $single, |
53 | - ]); |
|
53 | + ] ); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | 'number' => $number, |
70 | 70 | 'plural' => $plural, |
71 | 71 | 'single' => $single, |
72 | - ]); |
|
72 | + ] ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | public function translate( $original, $domain, array $args ) |
81 | 81 | { |
82 | 82 | $domains = apply_filters( 'site-reviews/translator/domains', [Application::ID] ); |
83 | - if( !in_array( $domain, $domains )) { |
|
83 | + if( !in_array( $domain, $domains ) ) { |
|
84 | 84 | return $original; |
85 | 85 | } |
86 | 86 | $args = $this->normalizeTranslationArgs( $args ); |
87 | 87 | $strings = $this->getTranslationStrings( $args['single'], $args['plural'] ); |
88 | - if( empty( $strings )) { |
|
88 | + if( empty($strings) ) { |
|
89 | 89 | return $original; |
90 | 90 | } |
91 | 91 | $string = current( $strings ); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | protected function getTranslationStrings( $single, $plural ) |
103 | 103 | { |
104 | - return array_filter( glsr( Translation::class )->translations(), function( $string ) use( $single, $plural ) { |
|
104 | + return array_filter( glsr( Translation::class )->translations(), function( $string ) use($single, $plural) { |
|
105 | 105 | return $string['s1'] == html_entity_decode( $single, ENT_COMPAT, 'UTF-8' ) |
106 | 106 | && $string['p1'] == html_entity_decode( $plural, ENT_COMPAT, 'UTF-8' ); |
107 | 107 | }); |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function translatePlural( $domain, array $string, array $args ) |
129 | 129 | { |
130 | - if( !empty( $string['s2'] )) { |
|
130 | + if( !empty($string['s2']) ) { |
|
131 | 131 | $args['single'] = $string['s2']; |
132 | 132 | } |
133 | - if( !empty( $string['p2'] )) { |
|
133 | + if( !empty($string['p2']) ) { |
|
134 | 134 | $args['plural'] = $string['p2']; |
135 | 135 | } |
136 | 136 | return get_translations_for_domain( $domain )->translate_plural( |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | */ |
148 | 148 | protected function translateSingle( $domain, array $string, array $args ) |
149 | 149 | { |
150 | - if( !empty( $string['s2'] )) { |
|
150 | + if( !empty($string['s2']) ) { |
|
151 | 151 | $args['single'] = $string['s2']; |
152 | 152 | } |
153 | 153 | return get_translations_for_domain( $domain )->translate( |
@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function build() |
23 | 23 | { |
24 | - glsr_log()->error( 'Build method is not implemented for '.get_class( $this )); |
|
24 | + glsr_log()->error( 'Build method is not implemented for '.get_class( $this ) ); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -33,7 +33,8 @@ |
||
33 | 33 | protected $settings; |
34 | 34 | protected $taxonomy; |
35 | 35 | |
36 | - public function __construct( Application $app ) { |
|
36 | + public function __construct( Application $app ) |
|
37 | + { |
|
37 | 38 | $this->app = $app; |
38 | 39 | $this->admin = $app->make( AdminController::class ); |
39 | 40 | $this->blocks = $app->make( BlocksController::class ); |
@@ -57,59 +57,59 @@ |
||
57 | 57 | */ |
58 | 58 | public function run() |
59 | 59 | { |
60 | - add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] ); |
|
61 | - add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] ); |
|
62 | - add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 ); |
|
63 | - add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 ); |
|
64 | - add_action( 'plugins_loaded', [$this->app, 'registerAddons'] ); |
|
65 | - add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] ); |
|
66 | - add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] ); |
|
67 | - add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 ); |
|
68 | - add_action( 'init', [$this->blocks, 'registerAssets'], 9 ); |
|
69 | - add_action( 'init', [$this->blocks, 'registerBlocks'] ); |
|
70 | - add_action( 'admin_footer', [$this->console, 'logOnce'] ); |
|
71 | - add_action( 'wp_footer', [$this->console, 'logOnce'] ); |
|
72 | - add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] ); |
|
73 | - add_action( 'add_meta_boxes_'.Application::POST_TYPE, [$this->editor, 'registerMetaBoxes'] ); |
|
74 | - add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 ); |
|
75 | - add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] ); |
|
76 | - add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] ); |
|
77 | - add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] ); |
|
78 | - add_action( 'admin_head', [$this->editor, 'renderReviewFields'] ); |
|
79 | - add_action( 'admin_action_revert', [$this->editor, 'revertReview'] ); |
|
80 | - add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] ); |
|
81 | - add_action( 'admin_action_approve', [$this->listtable, 'approve'] ); |
|
82 | - add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 ); |
|
83 | - add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] ); |
|
60 | + add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] ); |
|
61 | + add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] ); |
|
62 | + add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 ); |
|
63 | + add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 ); |
|
64 | + add_action( 'plugins_loaded', [$this->app, 'registerAddons'] ); |
|
65 | + add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] ); |
|
66 | + add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] ); |
|
67 | + add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 ); |
|
68 | + add_action( 'init', [$this->blocks, 'registerAssets'], 9 ); |
|
69 | + add_action( 'init', [$this->blocks, 'registerBlocks'] ); |
|
70 | + add_action( 'admin_footer', [$this->console, 'logOnce'] ); |
|
71 | + add_action( 'wp_footer', [$this->console, 'logOnce'] ); |
|
72 | + add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] ); |
|
73 | + add_action( 'add_meta_boxes_'.Application::POST_TYPE, [$this->editor, 'registerMetaBoxes'] ); |
|
74 | + add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 ); |
|
75 | + add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] ); |
|
76 | + add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] ); |
|
77 | + add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] ); |
|
78 | + add_action( 'admin_head', [$this->editor, 'renderReviewFields'] ); |
|
79 | + add_action( 'admin_action_revert', [$this->editor, 'revertReview'] ); |
|
80 | + add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] ); |
|
81 | + add_action( 'admin_action_approve', [$this->listtable, 'approve'] ); |
|
82 | + add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 ); |
|
83 | + add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] ); |
|
84 | 84 | add_action( 'manage_'.Application::POST_TYPE.'_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 ); |
85 | - add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] ); |
|
86 | - add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] ); |
|
87 | - add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] ); |
|
88 | - add_action( 'init', [$this->main, 'registerPostType'], 8 ); |
|
89 | - add_action( 'init', [$this->main, 'registerShortcodes'] ); |
|
90 | - add_action( 'init', [$this->main, 'registerTaxonomy'] ); |
|
91 | - add_action( 'widgets_init', [$this->main, 'registerWidgets'] ); |
|
92 | - add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] ); |
|
93 | - add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] ); |
|
94 | - add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 ); |
|
95 | - add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 ); |
|
96 | - add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] ); |
|
97 | - add_action( 'wp_footer', [$this->public, 'renderSchema'] ); |
|
98 | - add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 ); |
|
99 | - add_action( 'transition_post_status', [$this->review, 'onAfterChangeStatus'], 10, 3 ); |
|
100 | - add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] ); |
|
101 | - add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] ); |
|
102 | - add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 ); |
|
103 | - add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] ); |
|
104 | - add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
|
85 | + add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] ); |
|
86 | + add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] ); |
|
87 | + add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] ); |
|
88 | + add_action( 'init', [$this->main, 'registerPostType'], 8 ); |
|
89 | + add_action( 'init', [$this->main, 'registerShortcodes'] ); |
|
90 | + add_action( 'init', [$this->main, 'registerTaxonomy'] ); |
|
91 | + add_action( 'widgets_init', [$this->main, 'registerWidgets'] ); |
|
92 | + add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] ); |
|
93 | + add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] ); |
|
94 | + add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 ); |
|
95 | + add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 ); |
|
96 | + add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] ); |
|
97 | + add_action( 'wp_footer', [$this->public, 'renderSchema'] ); |
|
98 | + add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 ); |
|
99 | + add_action( 'transition_post_status', [$this->review, 'onAfterChangeStatus'], 10, 3 ); |
|
100 | + add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] ); |
|
101 | + add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] ); |
|
102 | + add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 ); |
|
103 | + add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] ); |
|
104 | + add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
|
105 | 105 | add_action( 'wp_ajax_nopriv_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
106 | - add_action( 'init', [$this->router, 'routePublicPostRequest'] ); |
|
107 | - add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] ); |
|
108 | - add_action( 'admin_init', [$this->settings, 'registerSettings'] ); |
|
109 | - add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] ); |
|
110 | - add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] ); |
|
111 | - add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] ); |
|
112 | - add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] ); |
|
113 | - add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 ); |
|
106 | + add_action( 'init', [$this->router, 'routePublicPostRequest'] ); |
|
107 | + add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] ); |
|
108 | + add_action( 'admin_init', [$this->settings, 'registerSettings'] ); |
|
109 | + add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] ); |
|
110 | + add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] ); |
|
111 | + add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] ); |
|
112 | + add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] ); |
|
113 | + add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 ); |
|
114 | 114 | } |
115 | 115 | } |
@@ -19,7 +19,9 @@ |
||
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' )) { |
|
23 | + return; |
|
24 | + } |
|
23 | 25 | register_block_type( Application::ID.'/'.$block, [ |
24 | 26 | 'attributes' => $this->attributes(), |
25 | 27 | 'editor_script' => Application::ID.'/blocks', |
@@ -19,10 +19,10 @@ discard block |
||
19 | 19 | */ |
20 | 20 | public function normalize( array $attributes ) |
21 | 21 | { |
22 | - $hide = array_flip( explode( ',', $attributes['hide'] )); |
|
23 | - unset( $hide['if_empty'] ); |
|
24 | - $attributes['hide'] = implode( ',', array_keys( $hide )); |
|
25 | - if( !isset( $attributes['assigned_to'] )) { |
|
22 | + $hide = array_flip( explode( ',', $attributes['hide'] ) ); |
|
23 | + unset($hide['if_empty']); |
|
24 | + $attributes['hide'] = implode( ',', array_keys( $hide ) ); |
|
25 | + if( !isset($attributes['assigned_to']) ) { |
|
26 | 26 | return $attributes; |
27 | 27 | } |
28 | 28 | if( $attributes['assigned_to'] == 'post_id' ) { |
@@ -39,14 +39,14 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function register( $block ) |
41 | 41 | { |
42 | - if( !function_exists( 'register_block_type' ))return; |
|
42 | + if( !function_exists( 'register_block_type' ) )return; |
|
43 | 43 | register_block_type( Application::ID.'/'.$block, [ |
44 | 44 | 'attributes' => $this->attributes(), |
45 | 45 | 'editor_script' => Application::ID.'/blocks', |
46 | 46 | 'editor_style' => Application::ID.'/blocks', |
47 | 47 | 'render_callback' => [$this, 'render'], |
48 | 48 | 'style' => Application::ID, |
49 | - ]); |
|
49 | + ] ); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $args = $shortcode->normalize( $attributes ); |
64 | 64 | $defaults = $shortcode->getHideOptions(); |
65 | 65 | $hide = array_flip( $args['hide'] ); |
66 | - unset( $defaults['if_empty'], $hide['if_empty'] ); |
|
67 | - return !empty( array_diff_key( $defaults, $hide )); |
|
66 | + unset($defaults['if_empty'], $hide['if_empty']); |
|
67 | + return !empty(array_diff_key( $defaults, $hide )); |
|
68 | 68 | } |
69 | 69 | } |
@@ -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 ); |
@@ -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,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, |
@@ -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 | /** |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | $taxonomy = get_taxonomy( Application::TAXONOMY ); |
73 | 73 | return $taxonomy |
74 | - ? ucfirst( strtolower( $taxonomy->labels->all_items )) |
|
74 | + ? ucfirst( strtolower( $taxonomy->labels->all_items ) ) |
|
75 | 75 | : ''; |
76 | 76 | } |
77 | 77 | } |