Clean up spaces, tabs, indentation, and bracket formatting

This commit is contained in:
Brian Miyaji
2021-11-10 15:41:40 +09:00
parent e58beb1201
commit 3dff686a00
285 changed files with 29638 additions and 24147 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -7,14 +7,14 @@ if ( class_exists( 'WP_REST_Posts_Controller' ) ) {
$this->namespace = 'sportspress/v2';
}
public function check_read_permission( $post ) {
if ( 'sp_event' === $post->post_type ) {
if ( in_array( $post->post_status, array( 'publish', 'future' ) ) || current_user_can( 'read_post', $post->ID ) ) {
return true;
}
} else {
return WP_REST_Posts_Controller::check_read_permission( $post );
}
}
}
public function check_read_permission( $post ) {
if ( 'sp_event' === $post->post_type ) {
if ( in_array( $post->post_status, array( 'publish', 'future' ) ) || current_user_can( 'read_post', $post->ID ) ) {
return true;
}
} else {
return WP_REST_Posts_Controller::check_read_permission( $post );
}
}
}
}