Download project

This commit is contained in:
Roman Pyrih
2024-11-20 09:09:44 +01:00
parent 547a138d6a
commit 5ff041757f
40737 changed files with 7766183 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
{**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* 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.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*}
{if $incompatibleCodes}
<div class="container">
{if $isShop17}
<div class="banner-alert">
<div class="banner-icon">
<i class="material-icons">error_outline</i>
</div>
{else}
<div class="alert alert-warning">
{/if}
<div class="banner-text">
<h2>
{if $codesType === 'countries'}
{l s='PrestaShop Checkout transactions won\'t work in some of your configured countries, but there is a solution !' mod='ps_checkout'}
{elseif $codesType === 'currencies'}
{l s='PrestaShop Checkout transactions won\'t work in some of your configured currencies, but there is a solution !' mod='ps_checkout'}
{/if}
</h2>
<p class="banner-upgrade-info">
{l s='Please upgrade your settings for :' mod='ps_checkout'}
</p>
<p class="incompatible-list">
<b><i>
{foreach $incompatibleCodes as $key => $incompatibleCode}
{$incompatibleCode}{if $key != count($incompatibleCodes) - 1},{/if}
{/foreach}
</i></b>
</p>
<a href="{$paymentPreferencesLink}" class="button-link" target="_blank">
{if $codesType === 'countries'}
{l s='Change countries activation for this payment module' mod='ps_checkout'}
{elseif $codesType === 'currencies'}
{l s='Change currencies activation for this payment module' mod='ps_checkout'}
{/if}
</a>
<a class="btn btn-link banner-link" href="{$paypalLink}" target="_blank">
{l s='Know more about compliant ISO Codes' mod='ps_checkout'}
{if $isShop17}
<i class="material-icons banner-link-icon">trending_flat</i>
{else}
<i class="icon-long-arrow-right"></i>
{/if}
</a>
</div>
</div>
</div>
{/if}

View File

@@ -0,0 +1,66 @@
{**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* 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.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*}
<div class="container">
<div class="row">
<div class="col">
<div class="card" data-test="ps-checkout-card">
<h3 class="card-header">
<i class="material-icons">extension</i> {l s='One module, all payments methods.' mod='ps_checkout'}
</h3>
<div class="card-block">
<div class="module-item-list">
<div class="row module-item-wrapper-list py-3">
<div class="col-12 col-sm-2 col-md-2 col-lg-3">
<div class="img m-auto">
</div>
</div>
<div class="row col-12 col-sm-6 col-md-7 col-lg-7 pl-0">
<div class="col-12 col-sm-12 col-md-12 col-lg-8 pl-0">
<ul class="text-muted">
<li class="mb-1">{l s='Offer the widest range of payment methods: cards, PayPal, etc.' mod='ps_checkout'}</li>
<li class="mb-1">{l s='Benefit from all PayPal expertise and advantages' mod='ps_checkout'}</li>
<li>{l s='Give access to relevant local payment methods for customers around the globe' mod='ps_checkout'}</li>
</ul>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-4 pl-0">
<label class="text-muted">
{l s='Including:' mod='ps_checkout'}
</label>
<div>
<img class="payment-icon" src="{$imgPath|escape:'htmlall':'UTF-8'}paypal.jpg" alt="">
<img class="payment-icon" src="{$imgPath|escape:'htmlall':'UTF-8'}visa.jpg" alt="">
<img class="payment-icon" src="{$imgPath|escape:'htmlall':'UTF-8'}mastercard.jpg" alt="">
</div>
</div>
</div>
<div class="col-12 col-sm-4 col-md-3 col-lg-2 mb-3 m-auto">
<div class="text-xs-center">
<a href="{$configureLink|escape:'htmlall':'UTF-8'}" class="btn btn-primary-reverse btn-outline-primary light-button">
{l s='Configure' mod='ps_checkout'}
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>