Tribe__Tickets_Plus__Commerce__Attendance_Totals::get_total_refunded()
The total number of tickets sold then refunded, for this event.
Return
(int) Total number of tickets refunded.
Source
File: src/Tribe/Commerce/Attendance_Totals.php
public function get_total_refunded() {
/**
* Returns the total tickets refunded, for an event.
*
* @since 4.10.7
*
* @param int $total_refunded Total number of tickets refunded.
* @param int $original_total_refunded Original total number of tickets refunded.
* @param int $event_id Event ID.
*/
return (int) apply_filters( 'tribe_tickets_plus_get_total_refunded', $this->total_refunded, $this->total_refunded, $this->event_id );
}
Changelog
| Version | Description |
|---|---|
| 4.10.7 | Introduced. |