Tribe__Tickets__Attendance_Totals::get_total_not_checked_in()

The total number of attendees who are not yet checked in for this event.

Contents


Return

(int)


Top ↑

Source

File: src/Tribe/Attendance_Totals.php

	public function get_total_not_checked_in() {
		/**
		 * Returns the total number of attendees not yet checked in for this event.
		 *
		 * @param int $total_not_checked_in
		 * @param int $original_total_not_checked_in
		 * @param int $event_id
		 */
		return (int) apply_filters( 'tribe_tickets_get_total_not_checked_in', $this->total_not_checked_in, $this->total_not_checked_in, $this->event_id );
	}