84 lines
4.0 KiB
Smarty
84 lines
4.0 KiB
Smarty
{*
|
|
* 2007-2014 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-2014 PrestaShop SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of PrestaShop SA
|
|
*}
|
|
|
|
<div class="payment_module payment_paypal">
|
|
<div class="inner">
|
|
<div class="input_radio">
|
|
<div class="hidden">
|
|
<form id="paypal_payment_form" action="{$base_dir_ssl}modules/paypal/express_checkout/payment.php" data-ajax="false" title="{l s='Pay with PayPal' mod='paypal'}" method="post">
|
|
<input type="hidden" name="save_billing" id="save_billing_paypal" value="0"/>
|
|
<input type="hidden" name="express_checkout" value="{$PayPal_payment_type|escape:'htmlall':'UTF-8'}"/>
|
|
<input type="hidden" name="current_shop_url" value="{$PayPal_current_page|escape:'htmlall':'UTF-8'}" />
|
|
<input type="hidden" name="bn" value="{$PayPal_tracking_code|escape:'htmlall':'UTF-8'}" />
|
|
<input type="hidden" name="custom" value="{$custom|escape:'htmlall':'UTF-8'}" />
|
|
</form>
|
|
</div>
|
|
<input type="radio" value="" name="paiement-method">
|
|
</div>
|
|
<div class="img_payment">
|
|
{if isset($use_mobile) && $use_mobile}
|
|
<img src="{$base_dir_ssl}modules/paypal/img/logos/express_checkout_mobile/CO_{$PayPal_lang_code}_orange_295x43.png" />
|
|
{else}
|
|
{if isset($logos.LocalPayPalHorizontalSolutionPP) && $PayPal_payment_method == $PayPal_integral}
|
|
<img src="{$logos.LocalPayPalHorizontalSolutionPP}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" height="48px" />
|
|
{else}
|
|
<img src="{$logos.LocalPayPalLogoMedium}" alt="{$PayPal_content.payment_choice|escape:'htmlall':'UTF-8'}" />
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
<div class="label">
|
|
<span class="title_payment">
|
|
{$PayPal_content.payment_choice}
|
|
</span>
|
|
<span class="save_info">
|
|
<input type="checkbox" id="save_info_paypal" data-change="save_billing_paypal">
|
|
<label for="save_info_paypal">{l s='Save my paypal account information for future payments' mod='paypal'}</label>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
{if $accounts}
|
|
<div class="account_payment">
|
|
<p class="title">{l s='Vous avez des comptes enregistrés, vous pouvez les utiliser pour payer' mod='paypal'}</p>
|
|
{foreach from=$accounts item=account}
|
|
<div class="box_account">
|
|
<div class="hidden">
|
|
<form id="paypal_payment_form" action="{$base_dir_ssl}modules/paypal/express_checkout/payment.php" data-ajax="false" title="{l s='Pay with PayPal' mod='paypal'}" method="post">
|
|
<input type="hidden" name="id_billing" value="{$account.id_paypal_agreement}"/>
|
|
<input type="hidden" name="express_checkout" value="{$PayPal_payment_type|escape:'htmlall':'UTF-8'}"/>
|
|
<input type="hidden" name="current_shop_url" value="{$PayPal_current_page|escape:'htmlall':'UTF-8'}" />
|
|
<input type="hidden" name="bn" value="{$PayPal_tracking_code|escape:'htmlall':'UTF-8'}" />
|
|
<input type="hidden" name="custom" value="{$custom|escape:'htmlall':'UTF-8'}" />
|
|
</form>
|
|
</div>
|
|
<input type="radio" value="{$base_dir_ssl}modules/paypal/express_checkout/payment.php?id_billing={$account.id_paypal_agreement}" name="paiement-method" id="paypal_{$account.id_paypal_agreement}">
|
|
<label for="paypal_{$account.id_paypal_agreement}">{$account.email} - {$account.name}</label>
|
|
</div>
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
|
|
</div>
|