| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/blocks/tickets/item-inactive.php |
<?php
/**
* Block: Tickets
* Inactive Ticket Item
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe/tickets/blocks/tickets/item-inactive.php
*
* See more documentation about our Blocks Editor templating system.
*
* @link https://evnt.is/1amp Help article for RSVP & Ticket template files.
*
* @since 4.9
* @version 4.11.0
*
*/
$sale_past = $this->get( 'sale_past' );
$classes = array(
'tribe-tickets__item',
'tribe-tickets__item--inactive',
);
$context = array(
'sale_past' => $sale_past,
);
?>
<div <?php tribe_classes( get_post_class( $classes ) ); ?>>
<?php $this->template( 'blocks/tickets/content-inactive', $context ); ?>
</div>