Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/views/v2/commerce/checkout/cart/item.php
<?php
/**
 * Tickets Commerce: Checkout Cart Item
 *
 * Override this template in your own theme by creating a file at:
 * [your-theme]/tribe/tickets/v2/commerce/checkout/cart/item.php
 *
 * See more documentation about our views templating system.
 *
 * @link    https://evnt.is/1amp Help article for RSVP & Ticket template files.
 *
 * @since 5.1.9
 *
 * @version 5.21.0
 *
 * @var Tribe__Template $this             [Global] Template object.
 * @var Module          $provider         [Global] The tickets provider instance.
 * @var string          $provider_id      [Global] The tickets provider class name.
 * @var array[]         $items            [Global] List of Items on the cart to be checked out.
 * @var bool            $must_login       [Global] Whether login is required to buy tickets or not.
 * @var string          $login_url        [Global] The site's login URL.
 * @var string          $registration_url [Global] The site's registration URL.
 * @var bool            $is_tec_active    [Global] Whether `The Events Calendar` is active or not.
 * @var array[]         $gateways         [Global] An array with the gateways.
 * @var int             $section          Which Section that we are going to render for this table.
 * @var WP_Post         $post             Which Section that we are going to render for this table.
 * @var array           $item             Which item this row will be for.
 */

// Bail if there's no ticket id.
use TEC\Tickets\Commerce\Module;

if ( empty( $item['ticket_id'] ) ) {
	return;
}

$classes = [
	'tribe-tickets__commerce-checkout-cart-item',
	get_post_class( '', $item['ticket_id'] ),
	'tribe-common-b1',
];

$attributes = [
	'data-ticket-id'       => (string) $item['ticket_id'],
	'data-ticket-quantity' => (string) $item['quantity'],
	'data-ticket-price'    => (string) $provider->get_price_value( $item['ticket_id'] )->get_string(),
];

?>
<article
	<?php tribe_classes( $classes ); ?>
	<?php tribe_attributes( $attributes ); ?>
>

	<?php $this->template( 'checkout/cart/item/details', [ 'item' => $item ] ); ?>

	<?php $this->template( 'checkout/cart/item/price', [ 'item' => $item ] ); ?>

	<?php $this->template( 'checkout/cart/item/quantity', [ 'item' => $item ] ); ?>

	<?php $this->template( 'checkout/cart/item/sub-total', [ 'item' => $item ] ); ?>

</article>