Tribe__Tickets_Plus__Tickets_View::output_attendee_list_checkbox( $attendee_group, $post_id )
Outputs the attendee list checkbox
Source
File: src/Tribe/Tickets_View.php
public function output_attendee_list_checkbox( $attendee_group, $post_id ) {
if ( Tribe__Tickets_Plus__Attendees_List::is_hidden_on( $post_id ) ) {
return;
}
$first_attendee = reset( $attendee_group );
$args = array(
'attendee_group' => $attendee_group,
'post_id' => $post_id,
'first_attendee' => $first_attendee,
);
if ( doing_action( 'event_tickets_user_details_rsvp' ) ) {
$template_part = 'tickets-plus/attendee-list-checkbox-rsvp';
} else {
$template_part = 'tickets-plus/attendee-list-checkbox-tickets';
}
tribe_tickets_get_template_part( $template_part, null, $args );
}