Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/emails/template-parts/body/tickets.php
<?php
/**
 * Event Tickets Emails: Main template > Body > Tickets.
 *
 * Override this template in your own theme by creating a file at:
 * [your-theme]/tribe/tickets/emails/template-parts/body/tickets.php
 *
 * See more documentation about our views templating system.
 *
 * @link https://evnt.is/tickets-emails-tpl Help article for Tickets Emails template files.
 * If you are looking for Event related templates, see in The Events Calendar plugin.
 *
 * @version 5.5.9
 *
 * @since 5.5.9
 *
 * @var Tribe__Template                    $this             Current template object.
 * @var \TEC\Tickets\Emails\Email_Abstract $email            The email object.
 * @var bool                               $preview          Whether the email is in preview mode or not.
 * @var bool                               $is_tec_active    Whether `The Events Calendar` is active or not.
 * @var array                              $tickets          The list of tickets.
 * @var WP_Post|null                       $event The event post object with properties added by the `tribe_get_event` function.
 *
 * @see tribe_get_event() For the format of the event object.
 */

if ( empty( $tickets ) ) {
	return;
}
$i = 0;

$this->template( 'template-parts/body/tickets-total' );

?>
<tr>
	<td style="padding:0;">
		<table class="tec-tickets__email-table-content-tickets" role="presentation">
		<?php foreach ( $tickets as $ticket ) : ?>
			<?php $i++; ?>
			<tr>
				<td class="tec-tickets__email-table-content-ticket">
					<table class="tec-tickets__email-table-content-ticket-table">
						<tr>
							<?php $this->template( 'template-parts/body/ticket/holder-name', [ 'ticket' => $ticket ] ); ?>
							<?php $this->template( 'template-parts/body/ticket/ticket-name', [ 'ticket' => $ticket ] ); ?>
						</tr>
						<tr>
							<?php $this->template( 'template-parts/body/ticket/security-code', [ 'ticket' => $ticket ] ); ?>
						</tr>
					</table>
					<?php $this->template( 'template-parts/body/ticket/number-from-total', [ 'i' => $i ] ); ?>
				</td>
			</tr>
		<?php endforeach; ?>
		</table>
	</td>
</tr>