@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | public function enqueueAssets() |
| 27 | 27 | { |
| 28 | - $command = new EnqueueAdminAssets([ |
|
| 28 | + $command = new EnqueueAdminAssets( [ |
|
| 29 | 29 | 'pointers' => [[ |
| 30 | 30 | 'content' => __( 'You can pin exceptional reviews so that they are always shown first.', 'site-reviews' ), |
| 31 | 31 | 'id' => 'glsr-pointer-pinned', |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | 'target' => '#misc-pub-pinned', |
| 38 | 38 | 'title' => __( 'Pin Your Reviews', 'site-reviews' ), |
| 39 | 39 | ]], |
| 40 | - ]); |
|
| 40 | + ] ); |
|
| 41 | 41 | $this->execute( $command ); |
| 42 | 42 | } |
| 43 | 43 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | { |
| 50 | 50 | $links['settings'] = glsr( Builder::class )->a( __( 'Settings', 'site-reviews' ), [ |
| 51 | 51 | 'href' => admin_url( 'edit.php?post_type='.Application::POST_TYPE.'&page=settings' ), |
| 52 | - ]); |
|
| 52 | + ] ); |
|
| 53 | 53 | return $links; |
| 54 | 54 | } |
| 55 | 55 | |
@@ -60,19 +60,19 @@ discard block |
||
| 60 | 60 | public function filterDashboardGlanceItems( array $items ) |
| 61 | 61 | { |
| 62 | 62 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 63 | - if( empty( $postCount->publish )) { |
|
| 63 | + if( empty($postCount->publish) ) { |
|
| 64 | 64 | return $items; |
| 65 | 65 | } |
| 66 | 66 | $text = _n( '%s Review', '%s Reviews', $postCount->publish, 'site-reviews' ); |
| 67 | - $text = sprintf( $text, number_format_i18n( $postCount->publish )); |
|
| 67 | + $text = sprintf( $text, number_format_i18n( $postCount->publish ) ); |
|
| 68 | 68 | $items[] = current_user_can( get_post_type_object( Application::POST_TYPE )->cap->edit_posts ) |
| 69 | 69 | ? glsr( Builder::class )->a( $text, [ |
| 70 | 70 | 'class' => 'glsr-review-count', |
| 71 | 71 | 'href' => 'edit.php?post_type='.Application::POST_TYPE, |
| 72 | - ]) |
|
| 72 | + ] ) |
|
| 73 | 73 | : glsr( Builder::class )->span( $text, [ |
| 74 | 74 | 'class' => 'glsr-review-count', |
| 75 | - ]); |
|
| 75 | + ] ); |
|
| 76 | 76 | return $items; |
| 77 | 77 | } |
| 78 | 78 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | public function filterTinymcePlugins( array $plugins ) |
| 84 | 84 | { |
| 85 | 85 | if( user_can_richedit() |
| 86 | - && ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ))) { |
|
| 86 | + && (current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' )) ) { |
|
| 87 | 87 | $plugins['glsr_shortcode'] = glsr()->url( 'assets/scripts/mce-plugin.js' ); |
| 88 | 88 | } |
| 89 | 89 | return $plugins; |
@@ -95,11 +95,11 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | public function registerShortcodeButtons() |
| 97 | 97 | { |
| 98 | - $command = new RegisterShortcodeButtons([ |
|
| 98 | + $command = new RegisterShortcodeButtons( [ |
|
| 99 | 99 | 'site_reviews' => esc_html__( 'Recent Reviews', 'site-reviews' ), |
| 100 | 100 | 'site_reviews_form' => esc_html__( 'Submit a Review', 'site-reviews' ), |
| 101 | 101 | 'site_reviews_summary' => esc_html__( 'Summary of Reviews', 'site-reviews' ), |
| 102 | - ]); |
|
| 102 | + ] ); |
|
| 103 | 103 | $this->execute( $command ); |
| 104 | 104 | } |
| 105 | 105 | |
@@ -109,10 +109,10 @@ discard block |
||
| 109 | 109 | */ |
| 110 | 110 | public function renderReviewEditor( WP_Post $post ) |
| 111 | 111 | { |
| 112 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 112 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 113 | 113 | glsr()->render( 'partials/editor/review', [ |
| 114 | 114 | 'post' => $post, |
| 115 | - ]); |
|
| 115 | + ] ); |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -121,13 +121,13 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | public function renderReviewNotice( WP_Post $post ) |
| 123 | 123 | { |
| 124 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
| 125 | - glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' )); |
|
| 124 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
| 125 | + glsr( Notice::class )->addWarning( __( 'This review is read-only.', 'site-reviews' ) ); |
|
| 126 | 126 | glsr( Html::class )->renderTemplate( 'partials/editor/notice', [ |
| 127 | 127 | 'context' => [ |
| 128 | 128 | 'notices' => glsr( Notice::class )->get(), |
| 129 | 129 | ], |
| 130 | - ]); |
|
| 130 | + ] ); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -139,13 +139,13 @@ discard block |
||
| 139 | 139 | if( glsr_current_screen()->base != 'post' )return; |
| 140 | 140 | $shortcodes = []; |
| 141 | 141 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
| 142 | - if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ))continue; |
|
| 142 | + if( !apply_filters( sanitize_title( $shortcode ).'_condition', true ) )continue; |
|
| 143 | 143 | $shortcodes[$shortcode] = $values; |
| 144 | 144 | } |
| 145 | - if( empty( $shortcodes ))return; |
|
| 145 | + if( empty($shortcodes) )return; |
|
| 146 | 146 | glsr()->render( 'partials/editor/tinymce', [ |
| 147 | 147 | 'shortcodes' => $shortcodes, |
| 148 | - ]); |
|
| 148 | + ] ); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | public function routerClearConsole() |
| 155 | 155 | { |
| 156 | 156 | glsr( Console::class )->clear(); |
| 157 | - glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' )); |
|
| 157 | + glsr( Notice::class )->addSuccess( __( 'Console cleared.', 'site-reviews' ) ); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | public function routerFetchConsole() |
| 164 | 164 | { |
| 165 | - glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' )); |
|
| 165 | + glsr( Notice::class )->addSuccess( __( 'Console reloaded.', 'site-reviews' ) ); |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | /** |
@@ -171,19 +171,19 @@ discard block |
||
| 171 | 171 | public function routerCountReviews() |
| 172 | 172 | { |
| 173 | 173 | $countManager = glsr( CountsManager::class ); |
| 174 | - $terms = get_terms([ |
|
| 174 | + $terms = get_terms( [ |
|
| 175 | 175 | 'hide_empty' => true, |
| 176 | 176 | 'taxonomy' => Application::TAXONOMY, |
| 177 | - ]); |
|
| 177 | + ] ); |
|
| 178 | 178 | foreach( $terms as $term ) { |
| 179 | - $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id )); |
|
| 179 | + $countManager->setTermCounts( $term->term_id, $countManager->buildTermCounts( $term->term_id ) ); |
|
| 180 | 180 | } |
| 181 | 181 | $postIds = glsr( SqlQueries::class )->getReviewsMeta( 'assigned_to' ); |
| 182 | 182 | foreach( $postIds as $postId ) { |
| 183 | - $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId )); |
|
| 183 | + $countManager->setPostCounts( $postId, $countManager->buildPostCounts( $postId ) ); |
|
| 184 | 184 | } |
| 185 | 185 | $countManager->setCounts( $countManager->buildCounts() ); |
| 186 | - glsr( Notice::class )->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' )); |
|
| 186 | + glsr( Notice::class )->addSuccess( __( 'Recalculated rating counts.', 'site-reviews' ) ); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | /** |
@@ -217,17 +217,17 @@ discard block |
||
| 217 | 217 | { |
| 218 | 218 | $file = $_FILES['import-file']; |
| 219 | 219 | if( $file['error'] !== UPLOAD_ERR_OK ) { |
| 220 | - return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] )); |
|
| 220 | + return glsr( Notice::class )->addError( $this->getUploadError( $file['error'] ) ); |
|
| 221 | 221 | } |
| 222 | - if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] )) { |
|
| 223 | - return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' )); |
|
| 222 | + if( $file['type'] !== 'application/json' || !glsr( Helper::class )->endsWith( '.json', $file['name'] ) ) { |
|
| 223 | + return glsr( Notice::class )->addError( __( 'Please use a valid Site Reviews settings file.', 'site-reviews' ) ); |
|
| 224 | 224 | } |
| 225 | 225 | $settings = json_decode( file_get_contents( $file['tmp_name'] ), true ); |
| 226 | - if( empty( $settings )) { |
|
| 227 | - return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' )); |
|
| 226 | + if( empty($settings) ) { |
|
| 227 | + return glsr( Notice::class )->addWarning( __( 'There were no settings found to import.', 'site-reviews' ) ); |
|
| 228 | 228 | } |
| 229 | - glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings )); |
|
| 230 | - glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' )); |
|
| 229 | + glsr( OptionManager::class )->set( glsr( OptionManager::class )->normalize( $settings ) ); |
|
| 230 | + glsr( Notice::class )->addSuccess( __( 'Settings imported.', 'site-reviews' ) ); |
|
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | UPLOAD_ERR_CANT_WRITE => __( 'Failed to write file to disk.', 'site-reviews' ), |
| 246 | 246 | UPLOAD_ERR_EXTENSION => __( 'A PHP extension stopped the file upload.', 'site-reviews' ), |
| 247 | 247 | ]; |
| 248 | - return !isset( $errors[$errorCode] ) |
|
| 248 | + return !isset($errors[$errorCode]) |
|
| 249 | 249 | ? __( 'Unknown upload error.', 'site-reviews' ) |
| 250 | 250 | : $errors[$errorCode]; |
| 251 | 251 | } |
@@ -21,17 +21,17 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | global $menu, $typenow; |
| 23 | 23 | foreach( $menu as $key => $value ) { |
| 24 | - if( !isset( $value[2] ) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
| 24 | + if( !isset($value[2]) || $value[2] != 'edit.php?post_type='.Application::POST_TYPE )continue; |
|
| 25 | 25 | $postCount = wp_count_posts( Application::POST_TYPE ); |
| 26 | 26 | $pendingCount = glsr( Builder::class )->span( number_format_i18n( $postCount->pending ), [ |
| 27 | 27 | 'class' => 'pending-count', |
| 28 | - ]); |
|
| 28 | + ] ); |
|
| 29 | 29 | $awaitingModeration = glsr( Builder::class )->span( $pendingCount, [ |
| 30 | 30 | 'class' => 'awaiting-mod count-'.$postCount->pending, |
| 31 | - ]); |
|
| 31 | + ] ); |
|
| 32 | 32 | $menu[$key][0] .= ' '.$awaitingModeration; |
| 33 | 33 | if( $typenow === Application::POST_TYPE ) { |
| 34 | - $menu[$key][4].= ' current'; |
|
| 34 | + $menu[$key][4] .= ' current'; |
|
| 35 | 35 | } |
| 36 | 36 | break; |
| 37 | 37 | } |
@@ -48,11 +48,11 @@ discard block |
||
| 48 | 48 | 'tools' => __( 'Tools', 'site-reviews' ), |
| 49 | 49 | 'addons' => __( 'Addons', 'site-reviews' ), |
| 50 | 50 | 'documentation' => __( 'Documentation', 'site-reviews' ), |
| 51 | - ]); |
|
| 51 | + ] ); |
|
| 52 | 52 | foreach( $pages as $slug => $title ) { |
| 53 | 53 | $method = glsr( Helper::class )->buildMethodName( 'render-'.$slug.'-menu' ); |
| 54 | 54 | $callback = apply_filters( 'site-reviews/addon/submenu/callback', [$this, $method], $slug ); |
| 55 | - if( !is_callable( $callback ))continue; |
|
| 55 | + if( !is_callable( $callback ) )continue; |
|
| 56 | 56 | add_submenu_page( 'edit.php?post_type='.Application::POST_TYPE, $title, $title, Application::CAPABILITY, $slug, $callback ); |
| 57 | 57 | } |
| 58 | 58 | } |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | $this->renderPage( 'addons', [ |
| 68 | 68 | 'template' => glsr( Template::class ), |
| 69 | - ]); |
|
| 69 | + ] ); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
@@ -82,10 +82,10 @@ discard block |
||
| 82 | 82 | 'shortcodes' => __( 'Shortcodes', 'site-reviews' ), |
| 83 | 83 | 'hooks' => __( 'Hooks', 'site-reviews' ), |
| 84 | 84 | 'functions' => __( 'Functions', 'site-reviews' ), |
| 85 | - ]); |
|
| 85 | + ] ); |
|
| 86 | 86 | $this->renderPage( 'documentation', [ |
| 87 | 87 | 'tabs' => $tabs, |
| 88 | - ]); |
|
| 88 | + ] ); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
@@ -103,17 +103,17 @@ discard block |
||
| 103 | 103 | 'translations' => __( 'Translations', 'site-reviews' ), |
| 104 | 104 | 'addons' => __( 'Addons', 'site-reviews' ), |
| 105 | 105 | 'licenses' => __( 'Licenses', 'site-reviews' ), |
| 106 | - ]); |
|
| 107 | - if( empty( glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults ))) { |
|
| 108 | - unset( $tabs['addons'] ); |
|
| 106 | + ] ); |
|
| 107 | + if( empty(glsr( Helper::class )->getPathValue( 'settings.addons', glsr()->defaults )) ) { |
|
| 108 | + unset($tabs['addons']); |
|
| 109 | 109 | } |
| 110 | - if( empty( glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults ))) { |
|
| 111 | - unset( $tabs['licenses'] ); |
|
| 110 | + if( empty(glsr( Helper::class )->getPathValue( 'settings.licenses', glsr()->defaults )) ) { |
|
| 111 | + unset($tabs['licenses']); |
|
| 112 | 112 | } |
| 113 | 113 | $this->renderPage( 'settings', [ |
| 114 | 114 | 'html' => glsr( Html::class ), |
| 115 | 115 | 'tabs' => $tabs, |
| 116 | - ]); |
|
| 116 | + ] ); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -128,9 +128,9 @@ discard block |
||
| 128 | 128 | 'sync' => __( 'Sync Reviews', 'site-reviews' ), |
| 129 | 129 | 'console' => __( 'Console', 'site-reviews' ), |
| 130 | 130 | 'system-info' => __( 'System Info', 'site-reviews' ), |
| 131 | - ]); |
|
| 132 | - if( !apply_filters( 'site-reviews/addon/sync/enable', false )) { |
|
| 133 | - unset( $tabs['sync'] ); |
|
| 131 | + ] ); |
|
| 132 | + if( !apply_filters( 'site-reviews/addon/sync/enable', false ) ) { |
|
| 133 | + unset($tabs['sync']); |
|
| 134 | 134 | } |
| 135 | 135 | $this->renderPage( 'tools', [ |
| 136 | 136 | 'data' => [ |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | ], |
| 144 | 144 | 'html' => glsr( Html::class ), |
| 145 | 145 | 'tabs' => $tabs, |
| 146 | - ]); |
|
| 146 | + ] ); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -13,15 +13,15 @@ discard block |
||
| 13 | 13 | public function fields() |
| 14 | 14 | { |
| 15 | 15 | return [[ |
| 16 | - 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' )), |
|
| 16 | + 'html' => sprintf( '<p class="strong">%s</p>', esc_html__( 'All settings are optional.', 'site-reviews' ) ), |
|
| 17 | 17 | 'minWidth' => 320, |
| 18 | 18 | 'type' => 'container', |
| 19 | - ],[ |
|
| 19 | + ], [ |
|
| 20 | 20 | 'label' => esc_html__( 'Title', 'site-reviews' ), |
| 21 | 21 | 'name' => 'title', |
| 22 | 22 | 'tooltip' => esc_attr__( 'Enter a custom shortcode heading.', 'site-reviews' ), |
| 23 | 23 | 'type' => 'textbox', |
| 24 | - ],[ |
|
| 24 | + ], [ |
|
| 25 | 25 | 'label' => esc_html__( 'Count', 'site-reviews' ), |
| 26 | 26 | 'maxLength' => 5, |
| 27 | 27 | 'name' => 'count', |
@@ -29,20 +29,20 @@ discard block |
||
| 29 | 29 | 'text' => '10', |
| 30 | 30 | 'tooltip' => esc_attr__( 'How many reviews would you like to display (default: 10)?', 'site-reviews' ), |
| 31 | 31 | 'type' => 'textbox', |
| 32 | - ],[ |
|
| 32 | + ], [ |
|
| 33 | 33 | 'label' => esc_html__( 'Rating', 'site-reviews' ), |
| 34 | 34 | 'name' => 'rating', |
| 35 | 35 | 'options' => [ |
| 36 | - '5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 )), |
|
| 37 | - '4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 )), |
|
| 38 | - '3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 )), |
|
| 39 | - '2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 )), |
|
| 40 | - '1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 )), |
|
| 41 | - '0' => esc_html( __( 'Unrated', 'site-reviews' )), |
|
| 36 | + '5' => esc_html( sprintf( _n( '%s star', '%s stars', 5, 'site-reviews' ), 5 ) ), |
|
| 37 | + '4' => esc_html( sprintf( _n( '%s star', '%s stars', 4, 'site-reviews' ), 4 ) ), |
|
| 38 | + '3' => esc_html( sprintf( _n( '%s star', '%s stars', 3, 'site-reviews' ), 3 ) ), |
|
| 39 | + '2' => esc_html( sprintf( _n( '%s star', '%s stars', 2, 'site-reviews' ), 2 ) ), |
|
| 40 | + '1' => esc_html( sprintf( _n( '%s star', '%s stars', 1, 'site-reviews' ), 1 ) ), |
|
| 41 | + '0' => esc_html( __( 'Unrated', 'site-reviews' ) ), |
|
| 42 | 42 | ], |
| 43 | 43 | 'tooltip' => esc_attr__( 'What is the minimum rating to display (default: 1 star)?', 'site-reviews' ), |
| 44 | 44 | 'type' => 'listbox', |
| 45 | - ],[ |
|
| 45 | + ], [ |
|
| 46 | 46 | 'label' => esc_html__( 'Pagination', 'site-reviews' ), |
| 47 | 47 | 'name' => 'pagination', |
| 48 | 48 | 'options' => [ |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | 'name' => 'assigned_to', |
| 61 | 61 | 'tooltip' => esc_attr__( 'Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page.', 'site-reviews' ), |
| 62 | 62 | 'type' => 'textbox', |
| 63 | - ],[ |
|
| 63 | + ], [ |
|
| 64 | 64 | 'label' => esc_html__( 'Schema', 'site-reviews' ), |
| 65 | 65 | 'name' => 'schema', |
| 66 | 66 | 'options' => [ |
@@ -69,49 +69,49 @@ discard block |
||
| 69 | 69 | ], |
| 70 | 70 | 'tooltip' => esc_attr__( 'Rich snippets are disabled by default.', 'site-reviews' ), |
| 71 | 71 | 'type' => 'listbox', |
| 72 | - ],[ |
|
| 72 | + ], [ |
|
| 73 | 73 | 'label' => esc_html__( 'Classes', 'site-reviews' ), |
| 74 | 74 | 'name' => 'class', |
| 75 | 75 | 'tooltip' => esc_attr__( 'Add custom CSS classes to the shortcode.', 'site-reviews' ), |
| 76 | 76 | 'type' => 'textbox', |
| 77 | - ],[ |
|
| 77 | + ], [ |
|
| 78 | 78 | 'columns' => 2, |
| 79 | 79 | 'items' => [[ |
| 80 | 80 | 'name' => 'hide_assigned_to', |
| 81 | 81 | 'text' => esc_html__( 'Assigned To', 'site-reviews' ), |
| 82 | 82 | 'tooltip' => esc_attr__( 'Hide the assigned to link?', 'site-reviews' ), |
| 83 | 83 | 'type' => 'checkbox', |
| 84 | - ],[ |
|
| 84 | + ], [ |
|
| 85 | 85 | 'name' => 'hide_author', |
| 86 | 86 | 'text' => esc_html__( 'Author', 'site-reviews' ), |
| 87 | 87 | 'tooltip' => esc_attr__( 'Hide the review author?', 'site-reviews' ), |
| 88 | 88 | 'type' => 'checkbox', |
| 89 | - ],[ |
|
| 89 | + ], [ |
|
| 90 | 90 | 'name' => 'hide_avatar', |
| 91 | 91 | 'text' => esc_html__( 'Avatar', 'site-reviews' ), |
| 92 | 92 | 'tooltip' => esc_attr__( 'Hide the reviewer avatar if shown?', 'site-reviews' ), |
| 93 | 93 | 'type' => 'checkbox', |
| 94 | - ],[ |
|
| 94 | + ], [ |
|
| 95 | 95 | 'name' => 'hide_content', |
| 96 | 96 | 'text' => esc_html__( 'Content', 'site-reviews' ), |
| 97 | 97 | 'tooltip' => esc_attr__( 'Hide the review content?', 'site-reviews' ), |
| 98 | 98 | 'type' => 'checkbox', |
| 99 | - ],[ |
|
| 99 | + ], [ |
|
| 100 | 100 | 'name' => 'hide_date', |
| 101 | 101 | 'text' => esc_html__( 'Date', 'site-reviews' ), |
| 102 | 102 | 'tooltip' => esc_attr__( 'Hide the review date?', 'site-reviews' ), |
| 103 | 103 | 'type' => 'checkbox', |
| 104 | - ],[ |
|
| 104 | + ], [ |
|
| 105 | 105 | 'name' => 'hide_rating', |
| 106 | 106 | 'text' => esc_html__( 'Rating', 'site-reviews' ), |
| 107 | 107 | 'tooltip' => esc_attr__( 'Hide the review rating?', 'site-reviews' ), |
| 108 | 108 | 'type' => 'checkbox', |
| 109 | - ],[ |
|
| 109 | + ], [ |
|
| 110 | 110 | 'name' => 'hide_response', |
| 111 | 111 | 'text' => esc_html__( 'Response', 'site-reviews' ), |
| 112 | 112 | 'tooltip' => esc_attr__( 'Hide the review response?', 'site-reviews' ), |
| 113 | 113 | 'type' => 'checkbox', |
| 114 | - ],[ |
|
| 114 | + ], [ |
|
| 115 | 115 | 'name' => 'hide_title', |
| 116 | 116 | 'text' => esc_html__( 'Title', 'site-reviews' ), |
| 117 | 117 | 'tooltip' => esc_attr__( 'Hide the review title?', 'site-reviews' ), |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | 'label' => esc_html__( 'Hide', 'site-reviews' ), |
| 122 | 122 | 'spacing' => 5, |
| 123 | 123 | 'type' => 'container', |
| 124 | - ],[ |
|
| 124 | + ], [ |
|
| 125 | 125 | 'hidden' => true, |
| 126 | 126 | 'name' => 'id', |
| 127 | 127 | 'type' => 'textbox', |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | public function getTerms() |
| 135 | 135 | { |
| 136 | 136 | $terms = glsr( Database::class )->getTerms(); |
| 137 | - if( empty( $terms )) { |
|
| 137 | + if( empty($terms) ) { |
|
| 138 | 138 | return []; |
| 139 | 139 | } |
| 140 | 140 | return [ |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | public function __construct() |
| 34 | 34 | { |
| 35 | 35 | $types = glsr( OptionManager::class )->get( 'settings.general.notifications', [] ); |
| 36 | - $this->email = count( array_intersect( ['admin', 'custom'], $types )) > 0; |
|
| 36 | + $this->email = count( array_intersect( ['admin', 'custom'], $types ) ) > 0; |
|
| 37 | 37 | $this->slack = in_array( 'slack', $types ); |
| 38 | 38 | $this->types = $types; |
| 39 | 39 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function send( Review $review ) |
| 45 | 45 | { |
| 46 | - if( empty( $this->types ))return; |
|
| 46 | + if( empty($this->types) )return; |
|
| 47 | 47 | $this->review = $review; |
| 48 | 48 | $args = [ |
| 49 | 49 | 'link' => $this->getLink(), |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | protected function buildEmail( array $args ) |
| 60 | 60 | { |
| 61 | - return glsr( Email::class )->compose([ |
|
| 61 | + return glsr( Email::class )->compose( [ |
|
| 62 | 62 | 'to' => $this->getEmailAddresses(), |
| 63 | 63 | 'subject' => $args['title'], |
| 64 | 64 | 'template' => 'email-notification', |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | 'review_rating' => $this->review->rating, |
| 72 | 72 | 'review_title' => $this->review->title, |
| 73 | 73 | ], |
| 74 | - ]); |
|
| 74 | + ] ); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | 'button_url' => $args['link'], |
| 84 | 84 | 'fallback' => $this->buildEmail( $args )->read( 'plaintext' ), |
| 85 | 85 | 'pretext' => $args['title'], |
| 86 | - ]); |
|
| 86 | + ] ); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -92,23 +92,23 @@ discard block |
||
| 92 | 92 | protected function getEmailAddresses() |
| 93 | 93 | { |
| 94 | 94 | $emails = []; |
| 95 | - if( in_array( 'admin', $this->types )) { |
|
| 95 | + if( in_array( 'admin', $this->types ) ) { |
|
| 96 | 96 | $emails[] = get_option( 'admin_email' ); |
| 97 | 97 | } |
| 98 | - if( in_array( 'author', $this->types )) { |
|
| 99 | - $assignedPost = get_post( intval( $this->review->assigned_to )); |
|
| 98 | + if( in_array( 'author', $this->types ) ) { |
|
| 99 | + $assignedPost = get_post( intval( $this->review->assigned_to ) ); |
|
| 100 | 100 | if( $assignedPost instanceof WP_Post ) { |
| 101 | 101 | $this->email = true; |
| 102 | - $emails[] = get_the_author_meta( 'user_email', intval( $assignedPost->post_author )); |
|
| 102 | + $emails[] = get_the_author_meta( 'user_email', intval( $assignedPost->post_author ) ); |
|
| 103 | 103 | } |
| 104 | 104 | } |
| 105 | - if( in_array( 'custom', $this->types )) { |
|
| 105 | + if( in_array( 'custom', $this->types ) ) { |
|
| 106 | 106 | $customEmails = glsr( OptionManager::class )->get( 'settings.general.notification_email' ); |
| 107 | 107 | $customEmails = str_replace( [' ', ',', ';'], ',', $customEmails ); |
| 108 | 108 | $customEmails = explode( ',', $customEmails ); |
| 109 | 109 | $emails = array_merge( $emails, $customEmails ); |
| 110 | 110 | } |
| 111 | - $emails = array_filter( array_keys( array_flip( $emails ))); |
|
| 111 | + $emails = array_filter( array_keys( array_flip( $emails ) ) ); |
|
| 112 | 112 | return apply_filters( 'site-reviews/notification/emails', $emails, $this->review ); |
| 113 | 113 | } |
| 114 | 114 | |
@@ -125,16 +125,16 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | protected function getTitle() |
| 127 | 127 | { |
| 128 | - $assignedTitle = get_the_title( intval( $this->review->assigned_to )); |
|
| 128 | + $assignedTitle = get_the_title( intval( $this->review->assigned_to ) ); |
|
| 129 | 129 | $title = _nx( |
| 130 | 130 | 'New %s-star review', |
| 131 | 131 | 'New %s-star review of: %s', |
| 132 | - intval( empty( $assignedTitle )), |
|
| 132 | + intval( empty($assignedTitle) ), |
|
| 133 | 133 | 'This string differs depending on whether or not the review has been assigned to a post.', |
| 134 | 134 | 'site-reviews' |
| 135 | 135 | ); |
| 136 | 136 | $title = sprintf( '[%s] %s', |
| 137 | - wp_specialchars_decode( strval( get_option( 'blogname' )), ENT_QUOTES ), |
|
| 137 | + wp_specialchars_decode( strval( get_option( 'blogname' ) ), ENT_QUOTES ), |
|
| 138 | 138 | sprintf( $title, $this->review->rating, $assignedTitle ) |
| 139 | 139 | ); |
| 140 | 140 | return apply_filters( 'site-reviews/notification/title', $title, $this->review ); |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | { |
| 148 | 148 | $email = $this->buildEmail( $args ); |
| 149 | 149 | if( !$this->email )return; |
| 150 | - if( empty( $email->to )) { |
|
| 150 | + if( empty($email->to) ) { |
|
| 151 | 151 | glsr_log()->error( 'Email notification was not sent: missing email address' ); |
| 152 | 152 | return; |
| 153 | 153 | } |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | if( !$this->slack )return; |
| 165 | 165 | $notification = $this->buildSlackNotification( $args ); |
| 166 | 166 | $result = $notification->send(); |
| 167 | - if( is_wp_error( $result )) { |
|
| 167 | + if( is_wp_error( $result ) ) { |
|
| 168 | 168 | $notification->review = null; |
| 169 | 169 | glsr_log()->error( $result->get_error_message() )->debug( $notification ); |
| 170 | 170 | } |
@@ -43,7 +43,9 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function send( Review $review ) |
| 45 | 45 | { |
| 46 | - if( empty( $this->types ))return; |
|
| 46 | + if( empty( $this->types )) { |
|
| 47 | + return; |
|
| 48 | + } |
|
| 47 | 49 | $this->review = $review; |
| 48 | 50 | $args = [ |
| 49 | 51 | 'link' => $this->getLink(), |
@@ -146,7 +148,9 @@ discard block |
||
| 146 | 148 | protected function sendToEmail( array $args ) |
| 147 | 149 | { |
| 148 | 150 | $email = $this->buildEmail( $args ); |
| 149 | - if( !$this->email )return; |
|
| 151 | + if( !$this->email ) { |
|
| 152 | + return; |
|
| 153 | + } |
|
| 150 | 154 | if( empty( $email->to )) { |
| 151 | 155 | glsr_log()->error( 'Email notification was not sent: missing email address' ); |
| 152 | 156 | return; |
@@ -161,7 +165,9 @@ discard block |
||
| 161 | 165 | */ |
| 162 | 166 | protected function sendToSlack( array $args ) |
| 163 | 167 | { |
| 164 | - if( !$this->slack )return; |
|
| 168 | + if( !$this->slack ) { |
|
| 169 | + return; |
|
| 170 | + } |
|
| 165 | 171 | $notification = $this->buildSlackNotification( $args ); |
| 166 | 172 | $result = $notification->send(); |
| 167 | 173 | if( is_wp_error( $result )) { |