<div id="CheckOutReviewModule">
|
|
|
|
<?php
|
|
print '<div class="heading">' . Quinta::Translate('Order Summary') .
|
|
': <a href="http://' . Quinta::$ServerName . __QUINTA_SUBDIRECTORY__ . '/index.php/ShoppingCart"> '
|
|
. Quinta::Translate('Change Items') . '</a></div>';
|
|
?>
|
|
<div class="CheckOutItemList">
|
|
<table>
|
|
<thead>
|
|
<tr><div></div>
|
|
<th><?php print Quinta::Translate('Product'); ?></th>
|
|
<th><?php print Quinta::Translate('Item Price'); ?></th>
|
|
<th><?php print Quinta::Translate('Quantity'); ?></th>
|
|
<th><?php print Quinta::Translate('Item Total'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$blnAlternate = false;
|
|
foreach($_CONTROL->aryCheckOutItemControllers as $objItemView)
|
|
{
|
|
if($blnAlternate)
|
|
{
|
|
print '<tr class="alternate">';
|
|
$blnAlternate = false;
|
|
}
|
|
else
|
|
{
|
|
print '<tr>';
|
|
$blnAlternate = true;
|
|
}
|
|
$objItemView->Render();
|
|
print "</tr> \n";
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<?php $_CONTROL->objOrderTotalsController->Render(); ?>
|
|
|
|
<div class="spacer"></div>
|
|
<hr>
|
|
<div class="spacer"></div>
|
|
|
|
<?php $_CONTROL->objBillingAddressController->Render(); ?>
|
|
|
|
<?php if($_CONTROL->pnlPaymentMethod)
|
|
{
|
|
$_CONTROL->pnlPaymentMethod->Render();
|
|
// print '<div class="spacer"></div><hr><div class="spacer"></div>';
|
|
} ?>
|
|
|
|
<div class="spacer"></div>
|
|
<hr>
|
|
<div class="spacer"></div>
|
|
|
|
<?php $_CONTROL->objShippingAddressController->Render(); ?>
|
|
|
|
<?php if($_CONTROL->pnlShippingMethod)
|
|
{
|
|
$_CONTROL->pnlShippingMethod->Render();
|
|
} ?>
|
|
|
|
<div class="spacer"></div>
|
|
<hr>
|
|
<div class="spacer"></div>
|
|
|
|
<div class="warning">
|
|
<?php
|
|
print '<strong>' . Quinta::Translate('NOTE') . ': </strong>';
|
|
print Quinta::Translate('Once an order is submitted we are unable to alter the contents.'
|
|
. ' Please verify that you have placed all the items that you wish to order in your cart.');
|
|
?>
|
|
</div>
|
|
|
|
<div class="spacer"></div>
|
|
|
|
</div>
|