Tribe__Events__REST__V1__Endpoints__Single_Event::can_create()
Whether the current user can create content of the specified type or not.
Return
(bool) Whether the current user can post or not.
Source
File: src/Tribe/REST/V1/Endpoints/Single_Event.php
public function can_create() {
$cap = get_post_type_object( Tribe__Events__Main::POSTTYPE )->cap->edit_posts;
return current_user_can( $cap );
}