Tribe__Tickets__Commerce__PayPal__Attendance_Totals::get_total_complete()
The total number of tickets sold and paid for, minus cancelled and refunded, for this event.
Return
(int)
Source
File: src/Tribe/Commerce/PayPal/Attendance_Totals.php
public function get_total_complete() {
/**
* Returns the total tickets sold and paid for, for an event.
*
* @since 4.7
*
* @param int $total_complete
* @param int $original_total_complete
* @param int $event_id
*/
return (int) apply_filters( 'tribe_tickets_get_total_paid', $this->total_complete, $this->total_complete, $this->event_id );
}
Changelog
| Version | Description |
|---|---|
| 4.7 | Introduced. |