Tribe__Tickets__Commerce__PayPal__Attendance_Totals::get_total_pending()

The total number of tickets pending further action for this event.


Return

(int)


Top ↑

Source

File: src/Tribe/Commerce/PayPal/Attendance_Totals.php

	public function get_total_pending() {
		/**
		 * Returns the total tickets pending further action for an event.
		 *
		 * @since 4.7
		 *
		 * @param int $total_pending
		 * @param int $original_total_pending
		 * @param int $event_id
		 */
		return (int) apply_filters( 'tribe_tickets_get_total_pending', $this->total_pending, $this->total_pending, $this->event_id );
	}

Top ↑

Changelog

Changelog
Version Description
4.7 Introduced.