Tribe__Tickets_Plus__Commerce__Attendance_Totals::get_total_cancelled()
The total number of tickets sold then cancelled, for this event.
Return
(int)
Source
File: src/Tribe/Commerce/Attendance_Totals.php
public function get_total_cancelled() {
/**
* Returns the total tickets cancelled, for an event.
*
* @since 4.10.4
*
* @param int $total_cancelled
* @param int $original_total_complete
* @param int $event_id
*/
return (int) apply_filters( 'tribe_tickets_plus_get_total_cancelled', $this->total_cancelled, $this->total_cancelled, $this->event_id );
}
Changelog
| Version | Description |
|---|---|
| 4.10.4 | Introduced. |