Tribe__Tickets__Commerce__PayPal__Tickets_View::render_ticket_status( string $status = null )

Creates the HTML for the status of the PayPal ticket.


Parameters

$status

(string) (Optional) The ticket order status

Default value: null


Top ↑

Return

(void)


Top ↑

Source

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

	public function render_ticket_status( $status = null ) {
		$ticket_status = $this->get_ticket_status( $status );

		echo sprintf( '<span>%s</span>', esc_html( $ticket_status ) );
	}

Top ↑

Changelog

Changelog
Version Description
4.7.1 Introduced.