68 lines
2.0 KiB
PHP
68 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Empty cart page
|
|
*
|
|
* More info on overriding template files can be found here: https://www.download-monitor.com/kb/overriding-content-templates/
|
|
*
|
|
* @version 4.9.6
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
/**
|
|
* @var WPChill\DownloadMonitor\Shop\Cart\Cart $cart
|
|
* @var string $url_cart
|
|
* @var string $url_checkout
|
|
*/
|
|
|
|
?>
|
|
<div class="dlm-cart">
|
|
<div class="dlm-cart-table-items">
|
|
<table cellpadding="0" cellspacing="0" border="0">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th><?php echo esc_html__( 'Name', 'download-monitor' ); ?></th>
|
|
<th><?php echo esc_html__( 'Price', 'download-monitor' ); ?></th>
|
|
<th><?php echo esc_html__( 'Quantity', 'download-monitor' ); ?></th>
|
|
<th><?php echo esc_html__( 'Total', 'download-monitor' ); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$items = $cart->get_items();
|
|
if ( ! empty( $items ) ) {
|
|
/** @var \WPChill\DownloadMonitor\Shop\Cart\Item $item */
|
|
foreach ( $items as $item ) {
|
|
download_monitor()->service( 'template_handler' )->get_template_part( 'shop/cart/item', '', '', array(
|
|
'item' => $item,
|
|
'url_cart' => $url_cart
|
|
) );
|
|
}
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="dlm-cart-bottom">
|
|
<div class="dlm-cart-coupons">
|
|
|
|
</div>
|
|
<div class="dlm-cart-bottom-right">
|
|
<div class="dlm-cart-totals">
|
|
<h2><?php echo esc_html__( 'Cart Totals', 'download-monitor' ); ?></h2>
|
|
<?php
|
|
download_monitor()->service( 'template_handler' )->get_template_part( 'shop/cart/totals', '', '', array(
|
|
'cart' => $cart
|
|
) );
|
|
?>
|
|
</div>
|
|
<div class="dlm-proceed-to-checkout">
|
|
<a href="<?php echo esc_url( $url_checkout ); ?>"
|
|
class="dlm-button-checkout"><?php echo esc_html__( 'Proceed to checkout', 'download-monitor' ); ?> »</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|