@@ -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', |
@@ -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, |
@@ -108,12 +108,16 @@ |
||
| 108 | 108 | public function renderTinymceButton( $editorId ) |
| 109 | 109 | { |
| 110 | 110 | $allowedEditors = apply_filters( 'site-reviews/tinymce/editor-ids', ['content'], $editorId ); |
| 111 | - if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors ))return; |
|
| 111 | + if( glsr_current_screen()->base != 'post' || !in_array( $editorId, $allowedEditors )) { |
|
| 112 | + return; |
|
| 113 | + } |
|
| 112 | 114 | $shortcodes = []; |
| 113 | 115 | foreach( glsr()->mceShortcodes as $shortcode => $values ) { |
| 114 | 116 | $shortcodes[$shortcode] = $values; |
| 115 | 117 | } |
| 116 | - if( empty( $shortcodes ))return; |
|
| 118 | + if( empty( $shortcodes )) { |
|
| 119 | + return; |
|
| 120 | + } |
|
| 117 | 121 | glsr()->render( 'partials/editor/tinymce', [ |
| 118 | 122 | 'shortcodes' => $shortcodes, |
| 119 | 123 | ]); |
@@ -65,7 +65,9 @@ |
||
| 65 | 65 | $avail_post_stati = get_available_post_statuses( Application::POST_TYPE ); |
| 66 | 66 | $table = new \WP_Posts_List_Table( ['screen' => $hookName] ); |
| 67 | 67 | $views = apply_filters( 'views_'.$hookName, $table->get_views() ); // uses compat get_views() |
| 68 | - if( empty( $views ))return; |
|
| 68 | + if( empty( $views )) { |
|
| 69 | + return; |
|
| 70 | + } |
|
| 69 | 71 | foreach( $views as $class => $view ) { |
| 70 | 72 | $views[$class] = "\t<li class='$class'>$view"; |
| 71 | 73 | } |
@@ -8,7 +8,9 @@ discard block |
||
| 8 | 8 | * @see https://www.elegantthemes.com/gallery/divi/ |
| 9 | 9 | */ |
| 10 | 10 | add_action( 'site-reviews/customize/divi', function( $instance ) { |
| 11 | - if( $instance->tag != 'label' || $instance->args['type'] != 'checkbox' )return; |
|
| 11 | + if( $instance->tag != 'label' || $instance->args['type'] != 'checkbox' ) { |
|
| 12 | + return; |
|
| 13 | + } |
|
| 12 | 14 | $instance->args['text'] = '<i></i>'.$instance->args['text']; |
| 13 | 15 | }); |
| 14 | 16 | |
@@ -20,9 +22,13 @@ discard block |
||
| 20 | 22 | * @see https://wordpress.org/plugins/wp-super-cache/ |
| 21 | 23 | */ |
| 22 | 24 | add_action( 'site-reviews/review/created', function( $review, $request ) { |
| 23 | - if( !function_exists( 'wp_cache_post_change' ))return; |
|
| 25 | + if( !function_exists( 'wp_cache_post_change' )) { |
|
| 26 | + return; |
|
| 27 | + } |
|
| 24 | 28 | wp_cache_post_change( $request->post_id ); |
| 25 | - if( empty( $review->assigned_to ) || $review->assigned_to == $request->post_id )return; |
|
| 29 | + if( empty( $review->assigned_to ) || $review->assigned_to == $request->post_id ) { |
|
| 30 | + return; |
|
| 31 | + } |
|
| 26 | 32 | wp_cache_post_change( $review->assigned_to ); |
| 27 | 33 | }, 10, 2 ); |
| 28 | 34 | |
@@ -56,9 +56,13 @@ discard block |
||
| 56 | 56 | protected function generateFields( array $fields ) |
| 57 | 57 | { |
| 58 | 58 | $generatedFields = array_map( function( $field ) { |
| 59 | - if( empty( $field ))return; |
|
| 59 | + if( empty( $field )) { |
|
| 60 | + return; |
|
| 61 | + } |
|
| 60 | 62 | $field = $this->normalize( $field ); |
| 61 | - if( !method_exists( $this, $method = 'normalize'.ucfirst( $field['type'] )))return; |
|
| 63 | + if( !method_exists( $this, $method = 'normalize'.ucfirst( $field['type'] ))) { |
|
| 64 | + return; |
|
| 65 | + } |
|
| 62 | 66 | return $this->$method( $field ); |
| 63 | 67 | }, $fields ); |
| 64 | 68 | return array_values( array_filter( $generatedFields )); |
@@ -73,7 +77,9 @@ discard block |
||
| 73 | 77 | if( !empty( $this->errors )) { |
| 74 | 78 | $errors = []; |
| 75 | 79 | foreach( $this->required as $name => $alert ) { |
| 76 | - if( false !== array_search( $name, glsr_array_column( $fields, 'name' )))continue; |
|
| 80 | + if( false !== array_search( $name, glsr_array_column( $fields, 'name' ))) { |
|
| 81 | + continue; |
|
| 82 | + } |
|
| 77 | 83 | $errors[] = $this->errors[$name]; |
| 78 | 84 | } |
| 79 | 85 | $this->errors = $errors; |
@@ -117,7 +123,9 @@ discard block |
||
| 117 | 123 | */ |
| 118 | 124 | protected function normalizeContainer( array $field ) |
| 119 | 125 | { |
| 120 | - if( !array_key_exists( 'html', $field ) && !array_key_exists( 'items', $field ))return; |
|
| 126 | + if( !array_key_exists( 'html', $field ) && !array_key_exists( 'items', $field )) { |
|
| 127 | + return; |
|
| 128 | + } |
|
| 121 | 129 | $field['items'] = $this->generateFields( $field['items'] ); |
| 122 | 130 | return $field; |
| 123 | 131 | } |
@@ -127,7 +135,9 @@ discard block |
||
| 127 | 135 | */ |
| 128 | 136 | protected function normalizeField( array $field, array $defaults ) |
| 129 | 137 | { |
| 130 | - if( !$this->validate( $field ))return; |
|
| 138 | + if( !$this->validate( $field )) { |
|
| 139 | + return; |
|
| 140 | + } |
|
| 131 | 141 | return array_filter( shortcode_atts( $defaults, $field ), function( $value ) { |
| 132 | 142 | return $value !== ''; |
| 133 | 143 | }); |
@@ -148,7 +158,9 @@ discard block |
||
| 148 | 158 | 'type' => '', |
| 149 | 159 | 'value' => '', |
| 150 | 160 | ]); |
| 151 | - if( !is_array( $listbox ))return; |
|
| 161 | + if( !is_array( $listbox )) { |
|
| 162 | + return; |
|
| 163 | + } |
|
| 152 | 164 | if( !array_key_exists( '', $listbox['options'] )) { |
| 153 | 165 | $listbox['options'] = ['' => $listbox['placeholder']] + $listbox['options']; |
| 154 | 166 | } |
@@ -19,7 +19,9 @@ discard block |
||
| 19 | 19 | 'glsr_get_review', 'glsr_get_reviews', |
| 20 | 20 | 'glsr_log', |
| 21 | 21 | ); |
| 22 | - if( !in_array( $hook, $hooks ) || !function_exists( $hook ))return; |
|
| 22 | + if( !in_array( $hook, $hooks ) || !function_exists( $hook )) { |
|
| 23 | + return; |
|
| 24 | + } |
|
| 23 | 25 | add_filter( $hook, function() use( $hook, $args ) { |
| 24 | 26 | array_shift( $args ); // remove the fallback value |
| 25 | 27 | return call_user_func_array( $hook, $args ); |
@@ -29,7 +31,8 @@ discard block |
||
| 29 | 31 | /** |
| 30 | 32 | * @return mixed |
| 31 | 33 | */ |
| 32 | -function glsr( $alias = null ) { |
|
| 34 | +function glsr( $alias = null ) |
|
| 35 | +{ |
|
| 33 | 36 | $app = \GeminiLabs\SiteReviews\Application::load(); |
| 34 | 37 | return !empty( $alias ) |
| 35 | 38 | ? $app->make( $alias ) |
@@ -41,11 +44,14 @@ discard block |
||
| 41 | 44 | * @param $column string |
| 42 | 45 | * @return array |
| 43 | 46 | */ |
| 44 | -function glsr_array_column( array $array, $column ) { |
|
| 47 | +function glsr_array_column( array $array, $column ) |
|
| 48 | +{ |
|
| 45 | 49 | $result = array(); |
| 46 | 50 | foreach( $array as $subarray ) { |
| 47 | 51 | $subarray = (array)$subarray; |
| 48 | - if( !isset( $subarray[$column] ))continue; |
|
| 52 | + if( !isset( $subarray[$column] )) { |
|
| 53 | + continue; |
|
| 54 | + } |
|
| 49 | 55 | $result[] = $subarray[$column]; |
| 50 | 56 | } |
| 51 | 57 | return $result; |
@@ -54,7 +60,8 @@ discard block |
||
| 54 | 60 | /** |
| 55 | 61 | * @return void |
| 56 | 62 | */ |
| 57 | -function glsr_calculate_ratings() { |
|
| 63 | +function glsr_calculate_ratings() |
|
| 64 | +{ |
|
| 58 | 65 | glsr( 'Controllers\AdminController' )->routerCountReviews( false ); |
| 59 | 66 | glsr_log()->info( __( 'Recalculated rating counts.', 'site-reviews' )); |
| 60 | 67 | } |
@@ -62,7 +69,8 @@ discard block |
||
| 62 | 69 | /** |
| 63 | 70 | * @return null|\GeminiLabs\SiteReviews\Review |
| 64 | 71 | */ |
| 65 | -function glsr_create_review( $reviewValues = array() ) { |
|
| 72 | +function glsr_create_review( $reviewValues = array() ) |
|
| 73 | +{ |
|
| 66 | 74 | if( !is_array( $reviewValues )) { |
| 67 | 75 | $reviewValues = array(); |
| 68 | 76 | } |
@@ -76,7 +84,8 @@ discard block |
||
| 76 | 84 | /** |
| 77 | 85 | * @return \WP_Screen|object |
| 78 | 86 | */ |
| 79 | -function glsr_current_screen() { |
|
| 87 | +function glsr_current_screen() |
|
| 88 | +{ |
|
| 80 | 89 | if( function_exists( 'get_current_screen' )) { |
| 81 | 90 | $screen = get_current_screen(); |
| 82 | 91 | } |
@@ -89,7 +98,8 @@ discard block |
||
| 89 | 98 | * @param mixed ...$vars |
| 90 | 99 | * @return void |
| 91 | 100 | */ |
| 92 | -function glsr_debug( ...$vars ) { |
|
| 101 | +function glsr_debug( ...$vars ) |
|
| 102 | +{ |
|
| 93 | 103 | if( count( $vars ) == 1 ) { |
| 94 | 104 | $value = htmlspecialchars( print_r( $vars[0], true ), ENT_QUOTES, 'UTF-8' ); |
| 95 | 105 | printf( '<div class="glsr-debug"><pre>%s</pre></div>', $value ); |
@@ -108,7 +118,8 @@ discard block |
||
| 108 | 118 | * @param mixed $fallback |
| 109 | 119 | * @return string|array |
| 110 | 120 | */ |
| 111 | -function glsr_get_option( $path = '', $fallback = '' ) { |
|
| 121 | +function glsr_get_option( $path = '', $fallback = '' ) |
|
| 122 | +{ |
|
| 112 | 123 | return is_string( $path ) |
| 113 | 124 | ? glsr( 'Database\OptionManager' )->get( 'settings.'.$path, $fallback ) |
| 114 | 125 | : $fallback; |
@@ -117,7 +128,8 @@ discard block |
||
| 117 | 128 | /** |
| 118 | 129 | * @return array |
| 119 | 130 | */ |
| 120 | -function glsr_get_options() { |
|
| 131 | +function glsr_get_options() |
|
| 132 | +{ |
|
| 121 | 133 | return glsr( 'Database\OptionManager' )->get( 'settings' ); |
| 122 | 134 | } |
| 123 | 135 | |
@@ -125,8 +137,11 @@ discard block |
||
| 125 | 137 | * @param int $post_id |
| 126 | 138 | * @return \GeminiLabs\SiteReviews\Review|void |
| 127 | 139 | */ |
| 128 | -function glsr_get_review( $post_id ) { |
|
| 129 | - if( !is_numeric( $post_id ))return; |
|
| 140 | +function glsr_get_review( $post_id ) |
|
| 141 | +{ |
|
| 142 | + if( !is_numeric( $post_id )) { |
|
| 143 | + return; |
|
| 144 | + } |
|
| 130 | 145 | $post = get_post( $post_id ); |
| 131 | 146 | if( $post instanceof WP_Post ) { |
| 132 | 147 | return glsr( 'Database\ReviewManager' )->single( $post ); |
@@ -137,7 +152,8 @@ discard block |
||
| 137 | 152 | * @return array |
| 138 | 153 | * @todo document change of $reviews->reviews to $reviews->results |
| 139 | 154 | */ |
| 140 | -function glsr_get_reviews( $args = array() ) { |
|
| 155 | +function glsr_get_reviews( $args = array() ) |
|
| 156 | +{ |
|
| 141 | 157 | if( !is_array( $args )) { |
| 142 | 158 | $args = []; |
| 143 | 159 | } |
@@ -147,7 +163,8 @@ discard block |
||
| 147 | 163 | /** |
| 148 | 164 | * @return \GeminiLabs\SiteReviews\Modules\Console |
| 149 | 165 | */ |
| 150 | -function glsr_log() { |
|
| 166 | +function glsr_log() |
|
| 167 | +{ |
|
| 151 | 168 | $args = func_get_args(); |
| 152 | 169 | $context = isset( $args[1] ) |
| 153 | 170 | ? $args[1] |
@@ -124,7 +124,9 @@ discard block |
||
| 124 | 124 | $termId = intval( $termId ); |
| 125 | 125 | } |
| 126 | 126 | $term = term_exists( $termId, Application::TAXONOMY ); |
| 127 | - if( !isset( $term['term_id'] ))continue; |
|
| 127 | + if( !isset( $term['term_id'] )) { |
|
| 128 | + continue; |
|
| 129 | + } |
|
| 128 | 130 | $terms[] = $term; |
| 129 | 131 | } |
| 130 | 132 | return $terms; |
@@ -136,7 +138,9 @@ discard block |
||
| 136 | 138 | */ |
| 137 | 139 | public function revert( $postId ) |
| 138 | 140 | { |
| 139 | - if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
|
| 141 | + if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE ) { |
|
| 142 | + return; |
|
| 143 | + } |
|
| 140 | 144 | delete_post_meta( $postId, '_edit_last' ); |
| 141 | 145 | $result = wp_update_post([ |
| 142 | 146 | 'ID' => $postId, |
@@ -154,7 +158,9 @@ discard block |
||
| 154 | 158 | */ |
| 155 | 159 | public function single( WP_Post $post ) |
| 156 | 160 | { |
| 157 | - if( $post->post_type != Application::POST_TYPE )return; |
|
| 161 | + if( $post->post_type != Application::POST_TYPE ) { |
|
| 162 | + return; |
|
| 163 | + } |
|
| 158 | 164 | $review = new Review( $post ); |
| 159 | 165 | return apply_filters( 'site-reviews/get/review', $review, $post ); |
| 160 | 166 | } |
@@ -179,7 +185,9 @@ discard block |
||
| 179 | 185 | protected function setTerms( $postId, $termIds ) |
| 180 | 186 | { |
| 181 | 187 | $terms = $this->normalizeTermIds( $termIds ); |
| 182 | - if( empty( $terms ))return; |
|
| 188 | + if( empty( $terms )) { |
|
| 189 | + return; |
|
| 190 | + } |
|
| 183 | 191 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
| 184 | 192 | if( is_wp_error( $result )) { |
| 185 | 193 | glsr_log()->error( $result->get_error_message() ); |
@@ -26,7 +26,9 @@ discard block |
||
| 26 | 26 | { |
| 27 | 27 | sort( $termTaxonomyIds ); |
| 28 | 28 | sort( $oldTermTaxonomyIds ); |
| 29 | - if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId ))return; |
|
| 29 | + if( $termTaxonomyIds === $oldTermTaxonomyIds || !$this->isReviewPostId( $postId )) { |
|
| 30 | + return; |
|
| 31 | + } |
|
| 30 | 32 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
| 31 | 33 | $ignoredIds = array_intersect( $oldTermTaxonomyIds, $termTaxonomyIds ); |
| 32 | 34 | $decreasedIds = array_diff( $oldTermTaxonomyIds, $ignoredIds ); |
@@ -47,7 +49,9 @@ discard block |
||
| 47 | 49 | */ |
| 48 | 50 | public function onAfterChangeStatus( $newStatus, $oldStatus, WP_Post $post ) |
| 49 | 51 | { |
| 50 | - if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] ))return; |
|
| 52 | + if( $post->post_type != Application::POST_TYPE || in_array( $oldStatus, ['new', $newStatus] )) { |
|
| 53 | + return; |
|
| 54 | + } |
|
| 51 | 55 | $review = glsr( ReviewManager::class )->single( get_post( $post->ID )); |
| 52 | 56 | if( $post->post_status == 'publish' ) { |
| 53 | 57 | glsr( CountsManager::class )->increase( $review ); |
@@ -63,7 +67,9 @@ discard block |
||
| 63 | 67 | */ |
| 64 | 68 | public function onAfterCreate( Review $review ) |
| 65 | 69 | { |
| 66 | - if( $review->status !== 'publish' )return; |
|
| 70 | + if( $review->status !== 'publish' ) { |
|
| 71 | + return; |
|
| 72 | + } |
|
| 67 | 73 | glsr( CountsManager::class )->increase( $review ); |
| 68 | 74 | } |
| 69 | 75 | |
@@ -74,7 +80,9 @@ discard block |
||
| 74 | 80 | */ |
| 75 | 81 | public function onBeforeDelete( $postId ) |
| 76 | 82 | { |
| 77 | - if( !$this->isReviewPostId( $postId ))return; |
|
| 83 | + if( !$this->isReviewPostId( $postId )) { |
|
| 84 | + return; |
|
| 85 | + } |
|
| 78 | 86 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
| 79 | 87 | glsr( CountsManager::class )->decrease( $review ); |
| 80 | 88 | } |
@@ -91,9 +99,13 @@ discard block |
||
| 91 | 99 | { |
| 92 | 100 | if( !$this->isReviewPostId( $postId ) |
| 93 | 101 | || !in_array( $metaKey, ['assigned_to', 'rating', 'review_type'] ) |
| 94 | - )return; |
|
| 102 | + ) { |
|
| 103 | + return; |
|
| 104 | + } |
|
| 95 | 105 | $review = glsr( ReviewManager::class )->single( get_post( $postId )); |
| 96 | - if( $review->$metaKey == $metaValue )return; |
|
| 106 | + if( $review->$metaKey == $metaValue ) { |
|
| 107 | + return; |
|
| 108 | + } |
|
| 97 | 109 | $method = glsr( Helper::class )->buildMethodName( $metaKey, 'onBeforeChange' ); |
| 98 | 110 | call_user_func( [$this, $method], $review, $metaValue ); |
| 99 | 111 | } |