HEX
Server: Apache
System: Linux webm003.cluster111.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: assotraipi (849654)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/assotraipi/www/wp-content/plugins/download-monitor/templates/shop/checkout/order-review.php
<?php
/**
 * Order review template
 *
 * 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 array $items
 * @var string $subtotal
 * @var string $total
 */
?>
<table cellpadding="0" cellspacing="0" border="0">
    <thead>
    <tr>
        <th><?php echo esc_html__( 'Product', 'download-monitor' ); ?></th>
        <th><?php echo esc_html__( 'Total', 'download-monitor' ); ?></th>
    </tr>
    </thead>
    <tbody>
	<?php
	if ( ! empty( $items ) ) {
		/** @var \WPChill\DownloadMonitor\Shop\Cart\Item $item */
		foreach ( $items as $item ) {
			download_monitor()->service( 'template_handler' )->get_template_part( 'shop/checkout/order-review-item', '', '', array(
				'item' => $item
			) );
		}
	}
	?>
    </tbody>
    <tfoot>
    <tr>
        <th><?php echo esc_html__( 'Subtotal', 'download-monitor' ); ?></th>
        <td><?php echo esc_html( $subtotal ); ?></td>
    </tr>
    <tr>
        <th><?php echo esc_html__( 'Total', 'download-monitor' ); ?></th>
        <td><?php echo esc_html( $total ); ?></td>
    </tr>
    </tfoot>
</table>