Attendance_Totals::get_total_cancelled()

The total number of tickets sold then cancelled, for this event.


Return

(int)


Top ↑

Source

File: src/Tickets/Commerce/Reports/Attendance_Totals.php

	public function get_total_cancelled() {
		/**
		 * Returns the total tickets cancelled, for an event.
		 *
		 * @since 4.10.5
		 *
		 * @param int $total_cancelled          Total number of tickets cancelled.
		 * @param int $original_total_cancelled Original total number of tickets cancelled.
		 * @param int $event_id                 Event ID.
		 */
		return (int) apply_filters( 'tribe_tickets_plus_get_total_cancelled', $this->total_cancelled, $this->total_cancelled, $this->event_id );
	}

Top ↑

Changelog

Changelog
Version Description
4.10.5 Introduced.