68 lines
1.9 KiB
Smarty
Executable File
68 lines
1.9 KiB
Smarty
Executable File
{*
|
|
* 2007-2013 PrestaShop
|
|
*
|
|
* 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.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@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author PrestaShop SA <contact@prestashop.com>
|
|
* @copyright 2007-2013 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
{* Assign a value to 'current_step' to display current style *}
|
|
{capture name="url_back"}
|
|
{if isset($back) && $back}back={$back}{/if}
|
|
{/capture}
|
|
|
|
{if !isset($multi_shipping)}
|
|
{assign var='multi_shipping' value='0'}
|
|
{/if}
|
|
|
|
<!-- Steps -->
|
|
|
|
{if $current_step=='payment'}
|
|
{assign var='idStep' value='3'}
|
|
{elseif $current_step=='shipping'}
|
|
{assign var='idStep' value='2'}
|
|
{else}
|
|
{assign var='idStep' value='1'}
|
|
{/if}
|
|
<ul class="step{$idStep}" id="order_step">
|
|
<li>
|
|
{if $idStep!=1}
|
|
<a href="{$link->getPageLink('order', true, NULL, "{$smarty.capture.url_back}&multi-shipping={$multi_shipping}")}">
|
|
1 {l s='Mon panier'}
|
|
</a>
|
|
{else}
|
|
<span>1 {l s='Mon panier'}</span>
|
|
{/if}
|
|
</li>
|
|
<li>
|
|
{if $idStep>2}
|
|
<a href="{$link->getPageLink('order', true, NULL, "{$smarty.capture.url_back}&step=1&multi-shipping={$multi_shipping}")}">
|
|
2 {l s='Ma livraison'}
|
|
</a>
|
|
{else}
|
|
<span>2 {l s='Ma livraison'}</span>
|
|
{/if}
|
|
</li>
|
|
<li>
|
|
<span>3 {l s='Mon paiement'}</span>
|
|
</li>
|
|
</ul>
|
|
<!-- /Steps -->
|