Tribe__Tickets__Commerce__PayPal__Tickets_View::render_ticket_status( string $status = null )
Creates the HTML for the status of the PayPal ticket.
Contents
Parameters
- $status
-
(string) (Optional) The ticket order status
Default value: null
Return
(void)
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 ) );
}
Changelog
| Version | Description |
|---|---|
| 4.7.1 | Introduced. |