Tribe__Tickets_Plus__Commerce__WooCommerce__Main::get_tickets( $post_id )

{@inheritDoc}


Source

File: src/Tribe/Commerce/WooCommerce/Main.php

	public function get_tickets( $post_id ) {
		$ticket_ids = $this->get_tickets_ids( $post_id );

		if ( ! $ticket_ids ) {
			return array();
		}

		$tickets = array();

		foreach ( $ticket_ids as $post ) {
			$tickets[] = $this->get_ticket( $post_id, $post );
		}

		return $tickets;
	}