@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | 'after_widget' => '</div>', |
24 | 24 | 'before_title' => '<h3 class="glsr-'.$type.'-title">', |
25 | 25 | 'after_title' => '</h3>', |
26 | - ]); |
|
26 | + ] ); |
|
27 | 27 | $args = apply_filters( 'site-reviews/shortcode/args', $args, $type, $shortcodePartial ); |
28 | 28 | $instance = $this->normalize( $instance ); |
29 | 29 | $partial = glsr( Partial::class )->build( $shortcodePartial, $instance ); |
30 | - if( !empty( $instance['title'] )) { |
|
30 | + if( !empty($instance['title']) ) { |
|
31 | 31 | $instance['title'] = $args['before_title'].$instance['title'].$args['after_title']; |
32 | 32 | } |
33 | 33 | return $args['before_widget'].$instance['title'].$partial.$args['after_widget']; |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function normalize( $args ) |
84 | 84 | { |
85 | - $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args )); |
|
85 | + $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args ) ); |
|
86 | 86 | array_walk( $args, function( &$value, $key ) { |
87 | 87 | $methodName = glsr( Helper::class )->buildMethodName( $key, 'normalize' ); |
88 | - if( !method_exists( $this, $methodName ))return; |
|
88 | + if( !method_exists( $this, $methodName ) )return; |
|
89 | 89 | $value = $this->$methodName( $value ); |
90 | 90 | }); |
91 | 91 | return $this->sanitize( $args ); |
@@ -117,11 +117,11 @@ discard block |
||
117 | 117 | */ |
118 | 118 | protected function normalizeHide( $hide ) |
119 | 119 | { |
120 | - if( is_string( $hide )) { |
|
120 | + if( is_string( $hide ) ) { |
|
121 | 121 | $hide = explode( ',', $hide ); |
122 | 122 | } |
123 | 123 | $hiddenKeys = $this->getHiddenKeys(); |
124 | - return array_filter( array_map( 'trim', $hide ), function( $value ) use( $hiddenKeys ) { |
|
124 | + return array_filter( array_map( 'trim', $hide ), function( $value ) use($hiddenKeys) { |
|
125 | 125 | return in_array( $value, $hiddenKeys ); |
126 | 126 | }); |
127 | 127 | } |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | __( 'Terrible', 'site-reviews' ), |
150 | 150 | ]; |
151 | 151 | $defaults = array_pad( $defaults, Rating::MAX_RATING, '' ); |
152 | - $labels = array_map( 'trim', explode( ',', $labels )); |
|
152 | + $labels = array_map( 'trim', explode( ',', $labels ) ); |
|
153 | 153 | foreach( $defaults as $i => $label ) { |
154 | - if( empty( $labels[$i] ))continue; |
|
154 | + if( empty($labels[$i]) )continue; |
|
155 | 155 | $defaults[$i] = $labels[$i]; |
156 | 156 | } |
157 | 157 | return array_combine( range( Rating::MAX_RATING, 1 ), $defaults ); |
@@ -54,57 +54,57 @@ |
||
54 | 54 | */ |
55 | 55 | public function run() |
56 | 56 | { |
57 | - add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] ); |
|
58 | - add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] ); |
|
59 | - add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 ); |
|
60 | - add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 ); |
|
61 | - add_action( 'plugins_loaded', [$this->app, 'registerAddons'] ); |
|
62 | - add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] ); |
|
63 | - add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] ); |
|
64 | - add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 ); |
|
65 | - add_action( 'init', [$this->blocks, 'registerAssets'], 9 ); |
|
66 | - add_action( 'init', [$this->blocks, 'registerBlocks'] ); |
|
67 | - add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] ); |
|
68 | - add_action( 'add_meta_boxes', [$this->editor, 'registerMetaBoxes'], 10, 2 ); |
|
69 | - add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 ); |
|
70 | - add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] ); |
|
71 | - add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] ); |
|
72 | - add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] ); |
|
73 | - add_action( 'admin_head', [$this->editor, 'renderReviewFields'] ); |
|
74 | - add_action( 'admin_action_revert', [$this->editor, 'revertReview'] ); |
|
75 | - add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] ); |
|
76 | - add_action( 'admin_action_approve', [$this->listtable, 'approve'] ); |
|
77 | - add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 ); |
|
78 | - add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] ); |
|
79 | - add_action( 'manage_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 ); |
|
80 | - add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] ); |
|
81 | - add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] ); |
|
82 | - add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] ); |
|
83 | - add_action( 'init', [$this->main, 'registerPostType'], 8 ); |
|
84 | - add_action( 'init', [$this->main, 'registerShortcodes'] ); |
|
85 | - add_action( 'init', [$this->main, 'registerTaxonomy'] ); |
|
86 | - add_action( 'widgets_init', [$this->main, 'registerWidgets'] ); |
|
87 | - add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] ); |
|
88 | - add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] ); |
|
89 | - add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 ); |
|
90 | - add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 ); |
|
91 | - add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] ); |
|
92 | - add_action( 'wp_footer', [$this->public, 'renderSchema'] ); |
|
93 | - add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 ); |
|
94 | - add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] ); |
|
95 | - add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] ); |
|
96 | - add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 ); |
|
97 | - add_action( 'transition_post_status', [$this->review, 'onChangeStatus'], 10, 3 ); |
|
98 | - add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] ); |
|
99 | - add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
|
57 | + add_action( 'admin_enqueue_scripts', [$this->admin, 'enqueueAssets'] ); |
|
58 | + add_action( 'admin_init', [$this->admin, 'registerTinymcePopups'] ); |
|
59 | + add_action( 'media_buttons', [$this->admin, 'renderTinymceButton'], 11 ); |
|
60 | + add_action( 'plugins_loaded', [$this->app, 'getDefaults'], 11 ); |
|
61 | + add_action( 'plugins_loaded', [$this->app, 'registerAddons'] ); |
|
62 | + add_action( 'plugins_loaded', [$this->app, 'registerLanguages'] ); |
|
63 | + add_action( 'plugins_loaded', [$this->app, 'registerReviewTypes'] ); |
|
64 | + add_action( 'upgrader_process_complete', [$this->app, 'upgraded'], 10, 2 ); |
|
65 | + add_action( 'init', [$this->blocks, 'registerAssets'], 9 ); |
|
66 | + add_action( 'init', [$this->blocks, 'registerBlocks'] ); |
|
67 | + add_action( 'admin_enqueue_scripts', [$this->editor, 'customizePostStatusLabels'] ); |
|
68 | + add_action( 'add_meta_boxes', [$this->editor, 'registerMetaBoxes'], 10, 2 ); |
|
69 | + add_action( 'admin_print_scripts', [$this->editor, 'removeAutosave'], 999 ); |
|
70 | + add_action( 'admin_menu', [$this->editor, 'removeMetaBoxes'] ); |
|
71 | + add_action( 'current_screen', [$this->editor, 'removePostTypeSupport'] ); |
|
72 | + add_action( 'post_submitbox_misc_actions', [$this->editor, 'renderPinnedInPublishMetaBox'] ); |
|
73 | + add_action( 'admin_head', [$this->editor, 'renderReviewFields'] ); |
|
74 | + add_action( 'admin_action_revert', [$this->editor, 'revertReview'] ); |
|
75 | + add_action( 'save_post_'.Application::POST_TYPE, [$this->editor, 'saveMetaboxes'] ); |
|
76 | + add_action( 'admin_action_approve', [$this->listtable, 'approve'] ); |
|
77 | + add_action( 'bulk_edit_custom_box', [$this->listtable, 'renderBulkEditFields'], 10, 2 ); |
|
78 | + add_action( 'restrict_manage_posts', [$this->listtable, 'renderColumnFilters'] ); |
|
79 | + add_action( 'manage_posts_custom_column', [$this->listtable, 'renderColumnValues'], 10, 2 ); |
|
80 | + add_action( 'save_post_'.Application::POST_TYPE, [$this->listtable, 'saveBulkEditFields'] ); |
|
81 | + add_action( 'pre_get_posts', [$this->listtable, 'setQueryForColumn'] ); |
|
82 | + add_action( 'admin_action_unapprove', [$this->listtable, 'unapprove'] ); |
|
83 | + add_action( 'init', [$this->main, 'registerPostType'], 8 ); |
|
84 | + add_action( 'init', [$this->main, 'registerShortcodes'] ); |
|
85 | + add_action( 'init', [$this->main, 'registerTaxonomy'] ); |
|
86 | + add_action( 'widgets_init', [$this->main, 'registerWidgets'] ); |
|
87 | + add_action( 'admin_menu', [$this->menu, 'registerMenuCount'] ); |
|
88 | + add_action( 'admin_menu', [$this->menu, 'registerSubMenus'] ); |
|
89 | + add_action( 'admin_init', [$this->menu, 'setCustomPermissions'], 999 ); |
|
90 | + add_action( 'wp_enqueue_scripts', [$this->public, 'enqueueAssets'], 999 ); |
|
91 | + add_filter( 'site-reviews/builder', [$this->public, 'modifyBuilder'] ); |
|
92 | + add_action( 'wp_footer', [$this->public, 'renderSchema'] ); |
|
93 | + add_action( 'set_object_terms', [$this->review, 'onAfterChangeCategory'], 10, 6 ); |
|
94 | + add_action( 'site-reviews/review/created', [$this->review, 'onAfterCreate'] ); |
|
95 | + add_action( 'before_delete_post', [$this->review, 'onBeforeDelete'] ); |
|
96 | + add_action( 'update_postmeta', [$this->review, 'onBeforeUpdate'], 10, 4 ); |
|
97 | + add_action( 'transition_post_status', [$this->review, 'onChangeStatus'], 10, 3 ); |
|
98 | + add_action( 'admin_init', [$this->router, 'routeAdminPostRequest'] ); |
|
99 | + add_action( 'wp_ajax_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
|
100 | 100 | add_action( 'wp_ajax_nopriv_'.Application::PREFIX.'action', [$this->router, 'routeAjaxRequest'] ); |
101 | - add_action( 'init', [$this->router, 'routePublicPostRequest'] ); |
|
102 | - add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] ); |
|
103 | - add_action( 'admin_init', [$this->settings, 'registerSettings'] ); |
|
104 | - add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] ); |
|
105 | - add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] ); |
|
106 | - add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] ); |
|
107 | - add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] ); |
|
108 | - add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 ); |
|
101 | + add_action( 'init', [$this->router, 'routePublicPostRequest'] ); |
|
102 | + add_action( 'site-reviews/schedule/session/purge', [$this->session, 'deleteExpiredSessions'] ); |
|
103 | + add_action( 'admin_init', [$this->settings, 'registerSettings'] ); |
|
104 | + add_action( Application::TAXONOMY.'_term_edit_form_top', [$this->taxonomy, 'disableParents'] ); |
|
105 | + add_action( Application::TAXONOMY.'_term_new_form_tag', [$this->taxonomy, 'disableParents'] ); |
|
106 | + add_action( Application::TAXONOMY.'_add_form_fields', [$this->taxonomy, 'enableParents'] ); |
|
107 | + add_action( Application::TAXONOMY.'_edit_form', [$this->taxonomy, 'enableParents'] ); |
|
108 | + add_action( 'restrict_manage_posts', [$this->taxonomy, 'renderTaxonomyFilter'], 9 ); |
|
109 | 109 | } |
110 | 110 | } |
@@ -41,32 +41,32 @@ |
||
41 | 41 | */ |
42 | 42 | public function run() |
43 | 43 | { |
44 | - add_filter( 'mce_external_plugins', [$this->admin, 'filterTinymcePlugins'], 15 ); |
|
45 | - add_filter( 'plugin_action_links_'.$this->basename, [$this->admin, 'filterActionLinks'] ); |
|
46 | - add_filter( 'dashboard_glance_items', [$this->admin, 'filterDashboardGlanceItems'] ); |
|
47 | - add_filter( 'block_categories', [$this->blocks, 'filterBlockCategories'] ); |
|
48 | - add_filter( 'classic_editor_enabled_editors_for_post_type', [$this->blocks, 'filterEnabledEditors'], 10, 2 ); |
|
49 | - add_filter( 'use_block_editor_for_post_type', [$this->blocks, 'filterUseBlockEditor'], 10, 2 ); |
|
50 | - add_filter( 'wp_editor_settings', [$this->editor, 'filterEditorSettings'] ); |
|
51 | - add_filter( 'the_editor', [$this->editor, 'filterEditorTextarea'] ); |
|
52 | - add_filter( 'gettext', [$this->editor, 'filterPostStatusLabels'], 10, 3 ); |
|
53 | - add_filter( 'gettext_with_context', [$this->editor, 'filterPostStatusLabelsWithContext'], 10, 4 ); |
|
54 | - add_filter( 'post_updated_messages', [$this->editor, 'filterUpdateMessages'] ); |
|
55 | - add_filter( 'bulk_post_updated_messages', [$this->listtable, 'filterBulkUpdateMessages'], 10, 2 ); |
|
56 | - add_filter( 'manage_'.Application::POST_TYPE.'_posts_columns', [$this->listtable, 'filterColumnsForPostType'] ); |
|
57 | - add_filter( 'post_date_column_status', [$this->listtable, 'filterDateColumnStatus'], 10, 2 ); |
|
58 | - add_filter( 'default_hidden_columns', [$this->listtable, 'filterDefaultHiddenColumns'], 10, 2 ); |
|
59 | - add_filter( 'display_post_states', [$this->listtable, 'filterPostStates'], 10, 2 ); |
|
60 | - add_filter( 'post_row_actions', [$this->listtable, 'filterRowActions'], 10, 2 ); |
|
44 | + add_filter( 'mce_external_plugins', [$this->admin, 'filterTinymcePlugins'], 15 ); |
|
45 | + add_filter( 'plugin_action_links_'.$this->basename, [$this->admin, 'filterActionLinks'] ); |
|
46 | + add_filter( 'dashboard_glance_items', [$this->admin, 'filterDashboardGlanceItems'] ); |
|
47 | + add_filter( 'block_categories', [$this->blocks, 'filterBlockCategories'] ); |
|
48 | + add_filter( 'classic_editor_enabled_editors_for_post_type', [$this->blocks, 'filterEnabledEditors'], 10, 2 ); |
|
49 | + add_filter( 'use_block_editor_for_post_type', [$this->blocks, 'filterUseBlockEditor'], 10, 2 ); |
|
50 | + add_filter( 'wp_editor_settings', [$this->editor, 'filterEditorSettings'] ); |
|
51 | + add_filter( 'the_editor', [$this->editor, 'filterEditorTextarea'] ); |
|
52 | + add_filter( 'gettext', [$this->editor, 'filterPostStatusLabels'], 10, 3 ); |
|
53 | + add_filter( 'gettext_with_context', [$this->editor, 'filterPostStatusLabelsWithContext'], 10, 4 ); |
|
54 | + add_filter( 'post_updated_messages', [$this->editor, 'filterUpdateMessages'] ); |
|
55 | + add_filter( 'bulk_post_updated_messages', [$this->listtable, 'filterBulkUpdateMessages'], 10, 2 ); |
|
56 | + add_filter( 'manage_'.Application::POST_TYPE.'_posts_columns', [$this->listtable, 'filterColumnsForPostType'] ); |
|
57 | + add_filter( 'post_date_column_status', [$this->listtable, 'filterDateColumnStatus'], 10, 2 ); |
|
58 | + add_filter( 'default_hidden_columns', [$this->listtable, 'filterDefaultHiddenColumns'], 10, 2 ); |
|
59 | + add_filter( 'display_post_states', [$this->listtable, 'filterPostStates'], 10, 2 ); |
|
60 | + add_filter( 'post_row_actions', [$this->listtable, 'filterRowActions'], 10, 2 ); |
|
61 | 61 | add_filter( 'manage_edit-'.Application::POST_TYPE.'_sortable_columns', [$this->listtable, 'filterSortableColumns'] ); |
62 | - add_filter( 'ngettext', [$this->listtable, 'filterStatusText'], 10, 5 ); |
|
63 | - add_filter( 'script_loader_tag', [$this->public, 'filterEnqueuedScripts'], 10, 2 ); |
|
64 | - add_filter( 'site-reviews/config/forms/submission-form', [$this->public, 'filterFieldOrder'], 11 ); |
|
65 | - add_filter( 'query_vars', [$this->public, 'filterQueryVars'] ); |
|
66 | - add_filter( 'site-reviews/render/view', [$this->public, 'filterRenderView'] ); |
|
67 | - add_filter( 'gettext', [$this->translator, 'filterGettext'], 10, 3 ); |
|
68 | - add_filter( 'gettext_with_context', [$this->translator, 'filterGettextWithContext'], 10, 4 ); |
|
69 | - add_filter( 'ngettext', [$this->translator, 'filterNgettext'], 10, 5 ); |
|
70 | - add_filter( 'ngettext_with_context', [$this->translator, 'filterNgettextWithContext'], 10, 6 ); |
|
62 | + add_filter( 'ngettext', [$this->listtable, 'filterStatusText'], 10, 5 ); |
|
63 | + add_filter( 'script_loader_tag', [$this->public, 'filterEnqueuedScripts'], 10, 2 ); |
|
64 | + add_filter( 'site-reviews/config/forms/submission-form', [$this->public, 'filterFieldOrder'], 11 ); |
|
65 | + add_filter( 'query_vars', [$this->public, 'filterQueryVars'] ); |
|
66 | + add_filter( 'site-reviews/render/view', [$this->public, 'filterRenderView'] ); |
|
67 | + add_filter( 'gettext', [$this->translator, 'filterGettext'], 10, 3 ); |
|
68 | + add_filter( 'gettext_with_context', [$this->translator, 'filterGettextWithContext'], 10, 4 ); |
|
69 | + add_filter( 'ngettext', [$this->translator, 'filterNgettext'], 10, 5 ); |
|
70 | + add_filter( 'ngettext_with_context', [$this->translator, 'filterNgettextWithContext'], 10, 6 ); |
|
71 | 71 | } |
72 | 72 | } |
@@ -73,8 +73,8 @@ |
||
73 | 73 | add_filter( 'site-reviews/rendered/field', function( $html, $type, $args ) { |
74 | 74 | if( $args['path'] == 'rating' ) { |
75 | 75 | $stars = '<span class="glsr-stars">'; |
76 | - $stars.= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
77 | - $stars.= '</span>'; |
|
76 | + $stars .= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
77 | + $stars .= '</span>'; |
|
78 | 78 | $html = preg_replace( '/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html ); |
79 | 79 | } |
80 | 80 | return $html; |
@@ -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 | /** |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function enqueueAssets() |
25 | 25 | { |
26 | - $command = new EnqueueAdminAssets([ |
|
26 | + $command = new EnqueueAdminAssets( [ |
|
27 | 27 | 'pointers' => [[ |
28 | 28 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
29 | 29 | 'id' => 'glsr-pointer-pinned', |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | 'target' => '#misc-pub-pinned', |
36 | 36 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
37 | 37 | ]], |
38 | - ]); |
|
38 | + ] ); |
|
39 | 39 | $this->execute( $command ); |
40 | 40 | } |
41 | 41 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | { |
48 | 48 | $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
49 | 49 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
50 | - ]); |
|
50 | + ] ); |
|
51 | 51 | return $links; |
52 | 52 | } |
53 | 53 | |
@@ -58,19 +58,19 @@ discard block |
||
58 | 58 | public function filterDashboardGlanceItems( array $items ) |
59 | 59 | { |
60 | 60 | $postCount = wp_count_posts( Application::POST_TYPE ); |
61 | - if( empty( $postCount->publish )) { |
|
61 | + if( empty($postCount->publish) ) { |
|
62 | 62 | return $items; |
63 | 63 | } |
64 | 64 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
65 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
65 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
66 | 66 | $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts ) |
67 | 67 | ? glsr( Builder::class )->a( $text, [ |
68 | 68 | 'class' => 'glsr-review-count', |
69 | 69 | 'href' => 'edit.php?post_type='.Application::POST_TYPE, |
70 | - ]) |
|
70 | + ] ) |
|
71 | 71 | : glsr( Builder::class )->span( $text, [ |
72 | 72 | 'class' => 'glsr-review-count', |
73 | - ]); |
|
73 | + ] ); |
|
74 | 74 | return $items; |
75 | 75 | } |
76 | 76 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function filterTinymcePlugins( array $plugins ) |
82 | 82 | { |
83 | - if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) { |
|
83 | + if( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) { |
|
84 | 84 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
85 | 85 | } |
86 | 86 | return $plugins; |
@@ -92,11 +92,11 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function registerTinymcePopups() |
94 | 94 | { |
95 | - $command = new RegisterTinymcePopups([ |
|
95 | + $command = new RegisterTinymcePopups( [ |
|
96 | 96 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
97 | 97 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
98 | 98 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
99 | - ]); |
|
99 | + ] ); |
|
100 | 100 | $this->execute( $command ); |
101 | 101 | } |
102 | 102 | |
@@ -111,10 +111,10 @@ discard block |
||
111 | 111 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
112 | 112 | $shortcodes[$shortcode] = $values; |
113 | 113 | } |
114 | - if( empty( $shortcodes ))return; |
|
114 | + if( empty($shortcodes) )return; |
|
115 | 115 | glsr()->render( 'partials/editor/tinymce', [ |
116 | 116 | 'shortcodes' => $shortcodes, |
117 | - ]); |
|
117 | + ] ); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | public function routerClearConsole() |
124 | 124 | { |
125 | 125 | glsr( Console::class )->clear(); |
126 | - glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' )); |
|
126 | + glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) ); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function routerFetchConsole() |
133 | 133 | { |
134 | - glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' )); |
|
134 | + glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) ); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -141,22 +141,22 @@ discard block |
||
141 | 141 | public function routerCountReviews( $showNotice = true ) |
142 | 142 | { |
143 | 143 | $countManager = glsr( CountsManager::class ); |
144 | - $terms = get_terms([ |
|
144 | + $terms = get_terms( [ |
|
145 | 145 | 'hide_empty' => true, |
146 | 146 | 'taxonomy' => Application::TAXONOMY, |
147 | - ]); |
|
147 | + ] ); |
|
148 | 148 | foreach( $terms as $term ) { |
149 | - $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id )); |
|
149 | + $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id ) ); |
|
150 | 150 | } |
151 | 151 | $postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' ); |
152 | 152 | foreach( $postIds as $postId ) { |
153 | - $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId )); |
|
153 | + $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) ); |
|
154 | 154 | } |
155 | 155 | $countManager->setCounts( $countManager->buildCounts() ); |
156 | 156 | if( $showNotice ) { |
157 | - glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
157 | + glsr( Notice::class )->clear()->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
158 | 158 | } |
159 | - glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' )); |
|
159 | + glsr( OptionManager::class )->set( 'last_review_count', current_time( 'timestamp' ) ); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -190,17 +190,17 @@ discard block |
||
190 | 190 | { |
191 | 191 | $file = $_FILES['import-file']; |
192 | 192 | if( $file['error'] !== UPLOAD_ERR_OK ) { |
193 | - return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] )); |
|
193 | + return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) ); |
|
194 | 194 | } |
195 | - if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) { |
|
196 | - return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' )); |
|
195 | + if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) { |
|
196 | + return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) ); |
|
197 | 197 | } |
198 | 198 | $settings = json_decode( file_get_contents( $file['tmp_name'] ), true ); |
199 | - if( empty( $settings )) { |
|
200 | - return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' )); |
|
199 | + if( empty($settings) ) { |
|
200 | + return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) ); |
|
201 | 201 | } |
202 | - glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings )); |
|
203 | - glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' )); |
|
202 | + glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) ); |
|
203 | + glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) ); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ), |
219 | 219 | UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ), |
220 | 220 | ]; |
221 | - return !isset( $errors[$errorCode] ) |
|
221 | + return !isset($errors[$errorCode]) |
|
222 | 222 | ? __( 'Unknown upload error.', 'site-reviews' ) |
223 | 223 | : $errors[$errorCode]; |
224 | 224 | } |
@@ -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 | } |