@@ -48,7 +48,9 @@ |
||
| 48 | 48 | public function filterUpdateMessages( array $messages ) |
| 49 | 49 | { |
| 50 | 50 | $post = get_post(); |
| 51 | - if( !( $post instanceof WP_Post ))return; |
|
| 51 | + if( !( $post instanceof WP_Post )) { |
|
| 52 | + return; |
|
| 53 | + } |
|
| 52 | 54 | $strings = $this->getReviewLabels(); |
| 53 | 55 | $restored = filter_input( INPUT_GET, 'revision' ); |
| 54 | 56 | if( $revisionTitle = wp_post_revision_title( intval( $restored ), false )) { |
@@ -118,7 +118,9 @@ discard block |
||
| 118 | 118 | */ |
| 119 | 119 | public function registerMetaBoxes( $postType ) |
| 120 | 120 | { |
| 121 | - if( $postType != Application::POST_TYPE )return; |
|
| 121 | + if( $postType != Application::POST_TYPE ) { |
|
| 122 | + return; |
|
| 123 | + } |
|
| 122 | 124 | add_meta_box( Application::ID.'_assigned_to', __( 'Assigned To', 'site-reviews' ), [$this, 'renderAssignedToMetabox'], null, 'side' ); |
| 123 | 125 | add_meta_box( Application::ID.'_review', __( 'Details', 'site-reviews' ), [$this, 'renderDetailsMetaBox'], null, 'side' ); |
| 124 | 126 | add_meta_box( Application::ID.'_response', __( 'Respond Publicly', 'site-reviews' ), [$this, 'renderResponseMetaBox'], null, 'normal' ); |
@@ -148,7 +150,9 @@ discard block |
||
| 148 | 150 | */ |
| 149 | 151 | public function renderAssignedToMetabox( WP_Post $post ) |
| 150 | 152 | { |
| 151 | - if( !$this->isReviewPostType( $post ))return; |
|
| 153 | + if( !$this->isReviewPostType( $post )) { |
|
| 154 | + return; |
|
| 155 | + } |
|
| 152 | 156 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
| 153 | 157 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
| 154 | 158 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
@@ -163,7 +167,9 @@ discard block |
||
| 163 | 167 | */ |
| 164 | 168 | public function renderDetailsMetaBox( WP_Post $post ) |
| 165 | 169 | { |
| 166 | - if( !$this->isReviewPostType( $post ))return; |
|
| 170 | + if( !$this->isReviewPostType( $post )) { |
|
| 171 | + return; |
|
| 172 | + } |
|
| 167 | 173 | $review = glsr( Database::class )->getReview( $post ); |
| 168 | 174 | glsr()->render( 'partials/editor/metabox-details', [ |
| 169 | 175 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
@@ -177,7 +183,9 @@ discard block |
||
| 177 | 183 | */ |
| 178 | 184 | public function renderPinnedInPublishMetaBox() |
| 179 | 185 | { |
| 180 | - if( !$this->isReviewPostType( get_post() ))return; |
|
| 186 | + if( !$this->isReviewPostType( get_post() )) { |
|
| 187 | + return; |
|
| 188 | + } |
|
| 181 | 189 | glsr( Html::class )->renderTemplate( 'partials/editor/pinned', [ |
| 182 | 190 | 'context' => [ |
| 183 | 191 | 'no' => __( 'No', 'site-reviews' ), |
@@ -193,7 +201,9 @@ discard block |
||
| 193 | 201 | */ |
| 194 | 202 | public function renderResponseMetaBox( WP_Post $post ) |
| 195 | 203 | { |
| 196 | - if( !$this->isReviewPostType( $post ))return; |
|
| 204 | + if( !$this->isReviewPostType( $post )) { |
|
| 205 | + return; |
|
| 206 | + } |
|
| 197 | 207 | wp_nonce_field( 'response', '_nonce-response', false ); |
| 198 | 208 | glsr()->render( 'partials/editor/metabox-response', [ |
| 199 | 209 | 'response' => glsr( Database::class )->getReview( $post )->response, |
@@ -207,7 +217,9 @@ discard block |
||
| 207 | 217 | */ |
| 208 | 218 | public function renderTaxonomyMetabox( WP_Post $post ) |
| 209 | 219 | { |
| 210 | - if( !$this->isReviewPostType( $post ))return; |
|
| 220 | + if( !$this->isReviewPostType( $post )) { |
|
| 221 | + return; |
|
| 222 | + } |
|
| 211 | 223 | glsr()->render( 'partials/editor/metabox-categories', [ |
| 212 | 224 | 'post' => $post, |
| 213 | 225 | 'tax_name' => Application::TAXONOMY, |
@@ -245,7 +257,9 @@ discard block |
||
| 245 | 257 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
| 246 | 258 | { |
| 247 | 259 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post, $assignedTo ); |
| 248 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
| 260 | + if( !( $assignedPost instanceof WP_Post )) { |
|
| 261 | + return; |
|
| 262 | + } |
|
| 249 | 263 | return glsr( Html::class )->buildTemplate( 'partials/editor/assigned-post', [ |
| 250 | 264 | 'context' => [ |
| 251 | 265 | 'data.url' => (string)get_permalink( $assignedPost ), |
@@ -287,7 +301,9 @@ discard block |
||
| 287 | 301 | */ |
| 288 | 302 | protected function getReviewType( $review ) |
| 289 | 303 | { |
| 290 | - if( count( glsr()->reviewTypes ) < 2 )return; |
|
| 304 | + if( count( glsr()->reviewTypes ) < 2 ) { |
|
| 305 | + return; |
|
| 306 | + } |
|
| 291 | 307 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
| 292 | 308 | ? glsr()->reviewTypes[$review->review_type] |
| 293 | 309 | : __( 'Unknown', 'site-reviews' ); |