| 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/checkout/onepage/ |
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="block block-progress">
<div class="block-title">
<strong><span><?php echo $this->__('Your Checkout Progress') ?></span></strong>
</div>
<div class="block-content">
<dl>
<?php if ($this->getCheckout()->getStepData('billing', 'is_show')): ?>
<?php if($this->getCheckout()->getStepData('billing', 'complete')): ?>
<dt class="complete">
<?php echo $this->__('Billing Address') ?> <span class="separator">|</span> <a href="#billing" onclick="checkout.accordion.openSection('opc-billing'); return false;"><?php echo $this->__('Change') ?></a>
</dt>
<dd class="complete">
<address><?php echo $this->getBilling()->format('html') ?></address>
</dd>
<?php else: ?>
<dt>
<?php echo $this->__('Billing Address') ?>
</dt>
<?php endif; ?>
<?php endif; ?>
<?php if ($this->getCheckout()->getStepData('shipping', 'is_show')): ?>
<?php if($this->getCheckout()->getStepData('shipping', 'complete')): ?>
<dt class="complete">
<?php echo $this->__('Shipping Address') ?> <span class="separator">|</span> <a href="#payment" onclick="checkout.accordion.openSection('opc-shipping');return false;"><?php echo $this->__('Change') ?></a>
</dt>
<dd class="complete">
<address><?php echo $this->getShipping()->format('html') ?></address>
</dd>
<?php else: ?>
<dt>
<?php echo $this->__('Shipping Address') ?>
</dt>
<?php endif; ?>
<?php endif; ?>
<?php if ($this->getCheckout()->getStepData('shipping_method', 'is_show')): ?>
<?php if($this->getCheckout()->getStepData('shipping_method', 'complete')): ?>
<dt class="complete">
<?php echo $this->__('Shipping Method') ?> <span class="separator">|</span> <a href="#shipping_method" onclick="checkout.accordion.openSection('opc-shipping_method'); return false;"><?php echo $this->__('Change') ?></a>
</dt>
<dd class="complete">
<?php if ($this->getShippingMethod()): ?>
<?php echo $this->getShippingDescription() ?>
<?php $_excl = $this->getShippingPriceExclTax(); ?>
<?php $_incl = $this->getShippingPriceInclTax(); ?>
<?php if ($this->helper('tax')->displayShippingPriceIncludingTax()): ?>
<?php echo $_incl; ?>
<?php else: ?>
<?php echo $_excl; ?>
<?php endif; ?>
<?php if ($this->helper('tax')->displayShippingBothPrices() && $_incl != $_excl): ?>
(<?php echo $this->__('Incl. Tax'); ?> <?php echo $_incl; ?>)
<?php endif; ?>
<?php else: ?>
<?php echo $this->__('Shipping method has not been selected yet') ?>
<?php endif; ?>
</dd>
<?php else: ?>
<dt>
<?php echo $this->__('Shipping Method') ?>
</dt>
<?php endif; ?>
<?php endif; ?>
<?php if ($this->getCheckout()->getStepData('payment', 'is_show')): ?>
<?php if($this->getCheckout()->getStepData('payment', 'complete')): ?>
<dt class="complete">
<?php echo $this->__('Payment Method') ?> <span class="separator">|</span> <a href="#payment" onclick="checkout.accordion.openSection('opc-payment'); return false;"><?php echo $this->__('Change') ?></a>
</dt>
<dd class="complete">
<?php echo $this->getPaymentHtml() ?>
</dd>
<?php else: ?>
<dt>
<?php echo $this->__('Payment Method') ?>
</dt>
<?php endif; ?>
<?php endif; ?>
</dl>
</div>
</div>