| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/design/frontend/base/default/template/paypal/express/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category design
* @package base_default
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/
?>
<div class="page-title">
<h1><?php echo $this->__('Review Order') ?></h1>
</div>
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
<?php if ($this->getShippingAddress()): ?>
<div class="info-set col2-set">
<h2 class="legend"><?php echo $this->__('Shipping Information') ?></h2>
<div class="col-1">
<div class="box">
<div class="box-title">
<h3><?php echo $this->__('Shipping Address') ?><span class="separator"><?php if ($this->getCanEditShippingAddress()):?> | </span><a href="<?php echo $this->getEditUrl() ?>"><?php echo $this->__('Change Shipping Address') ?></a><?php endif;?></h3>
</div>
<div class="box-content">
<address><?php echo $this->renderAddress($this->getShippingAddress())?></address>
</div>
</div>
</div>
<div class="col-2">
<div class="box">
<div class="box-title">
<h3><?php echo $this->__('Shipping Method') ?></h3>
</div>
<div class="box-content">
<?php if ($this->getCanEditShippingMethod() || !$this->getCurrentShippingRate()):?>
<?php if ($groups = $this->getShippingRateGroups()):?>
<?php $currentRate = $this->getCurrentShippingRate(); ?>
<form method="post" id="shipping_method_form" action="<?php echo $this->escapeHtml($this->getShippingMethodSubmitUrl()) ?>">
<fieldset>
<select name="shipping_method" id="shipping_method" style="width:250px;" class="required-entry">
<?php if (!$currentRate):?>
<option value=""><?php echo $this->__('Please select a shipping method...') ?></option>
<?php endif;?>
<?php foreach ($groups as $code => $rates):?>
<optgroup label="<?php echo $this->getCarrierName($code) ?>" style="font-style:normal;">
<?php foreach ($rates as $rate):?>
<option value="<?php echo $this->renderShippingRateValue($rate)?>"<?php echo ($currentRate === $rate) ? ' selected="selected"' : '' ;?>>
<?php echo $this->renderShippingRateOption($rate)?>
</option>
<?php endforeach;?>
</optgroup>
<?php endforeach;?>
</select>
</fieldset>
<p class="actions">
<button id="update_shipping_method_submit" type="submit" class="button"><span><span><?php echo $this->__('Update Shipping Method') ?></span></span></button>
</p>
</form>
<?php else: ?>
<p><strong><?php echo $this->__('Sorry, no quotes are available for this order at this time.') ?></strong></p>
<?php endif;?>
<?php else: ?>
<p><strong><?php echo $this->renderShippingRateOption($this->getCurrentShippingRate())?></strong></p>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php endif; ?>
<div class="info-set col2-set">
<h2 class="legend"><?php echo $this->__('Billing Information') ?></h2>
<div class="col-1">
<div class="box">
<div class="box-title">
<h3><?php echo $this->__('Payment Method') ?> <span class="separator">|</span> <a href="<?php echo $this->getEditUrl() ?>"><?php echo $this->__('Change Payment Method') ?></a></h3>
</div>
<div class="box-content">
<?php echo $this->escapeHtml($this->getPaymentMethodTitle()) ?>
</div>
</div>
</div>
<div class="col-2">
<div class="box">
<div class="box-title">
<h3><?php echo $this->__('Billing Address') ?></h3>
</div>
<div class="box-content">
<address>
<?php echo $this->renderAddress($this->getBillingAddress()) ?><br />
<?php echo $this->__('Payer Email: %s', $this->getBillingAddress()->getEmail()) ?>
</address>
</div>
</div>
</div>
</div>
<div class="info-set">
<h2 class="legend"><?php echo $this->__('Items in Your Shopping Cart') ?><span class="separator"> | </span><a href="<?php echo $this->getUrl('checkout/cart') ?>"><?php echo $this->__('Edit Shopping Cart') ?></a></h2>
<div id="details-reload">
<?php echo $this->getChildHtml('details') ?>
</div>
</div>
<form method="post" id="order_review_form" action="<?php echo $this->getPlaceOrderUrl() ?>">
<div class="buttons-set buttons-set-order" id="review-buttons-container">
<button id="review_button" value="<?php echo $this->__('Place Order') ?>" class="button btn-checkout"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
<button type="submit" id="review_submit" value="<?php echo $this->__('Place Order') ?>" class="button btn-checkout"><span><span><?php echo $this->__('Place Order') ?></span></span></button>
<span class="please-wait" id="review-please-wait" style="display:none;">
<img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Submitting order information...') ?>" title="<?php echo $this->__('Submitting order information...') ?>" class="v-middle" /> <?php echo $this->__('Submitting order information...') ?>
</span>
</div>
</form>
<script type="text/javascript">
//<![CDATA[
// submit buttons are not needed when submitting with ajax
$('review_submit').hide();
if ($('update_shipping_method_submit')) {
$('update_shipping_method_submit').hide();
}
PayPalExpressAjax = new OrderReviewController($('order_review_form'), $('review_button'),
$('shipping_method'), $('shipping_method_form'), 'details-reload'
);
PayPalExpressAjax.addPleaseWait($('review-please-wait'));
//]]>
</script>