Subida del módulo y tema de PrestaShop

This commit is contained in:
Kaloyan
2026-04-09 18:31:51 +02:00
parent 12c253296f
commit 16b3ff9424
39262 changed files with 7418797 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;

View File

@@ -0,0 +1,50 @@
{**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*}
<div class="card border-1 mb-3">
<div class="card-body">
<p class="h2">{l s='Payment information' d='Shop.Theme.Checkout'}</p>
<p class="h3 card-subtitle text-secondary mb-3">{l s='Pay by Check' d='Modules.Checkpayment.Shop'}</p>
{if $status === 'ok'}
<p>
{l s='You have chosen payment by check.' d='Modules.Checkpayment.Shop'}<br/>
{l s='Your check must include following details:' d='Modules.Checkpayment.Shop'}
</p>
<dl class="dl-list mb-3">
<dt>{l s='Payment amount' d='Modules.Checkpayment.Shop'}</dt>
<dd>{$total_to_pay}</dd>
<dt>{l s='Payable to the order of' d='Modules.Checkpayment.Shop'}</dt>
<dd>{if $checkName}{$checkName}{else}___________{/if}</dd>
<dt>{l s='Mail to' d='Modules.Checkpayment.Shop'}</dt>
<dd>{if $checkAddress}{$checkAddress nofilter}{else}___________{/if}</dd>
</dl>
<p class="mb-0">
{if !isset($reference)}
{l s='Do not forget to insert your order number #%d.' sprintf=[$id_order] d='Modules.Checkpayment.Shop'}<br aria-hidden="true">
{else}
{l s='Do not forget to insert your order reference %s.' sprintf=[$reference] d='Modules.Checkpayment.Shop'}<br aria-hidden="true">
{/if}
{l s='An email has been sent to you with this information.' d='Modules.Checkpayment.Shop'}<br aria-hidden="true">
{l s='Your order will be sent as soon as we receive your payment.' d='Modules.Checkpayment.Shop'}
</p>
{else}
<div class="alert alert-warning mb-0" role="alert">
{l s='We have noticed that there is a problem with your order. If you think this is an error, you can contact our' d='Modules.Checkpayment.Shop'}
<a class="alert-link" href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='customer service department.' d='Modules.Checkpayment.Shop'}</a>
</div>
{/if}
</div>
{if $status === 'ok'}
<div class="card-footer p-3 border-1">
{l s='For any questions or for further information, please contact our' d='Modules.Checkpayment.Shop'}
<a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='customer service department.' d='Modules.Checkpayment.Shop'}</a>
</div>
{/if}
</div>

View File

@@ -0,0 +1,14 @@
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;