first commit

This commit is contained in:
2024-10-25 14:16:28 +02:00
commit 925276dbb2
33795 changed files with 4780077 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* We offer the best and most useful modules PrestaShop and modifications for your online store.
*
* We are experts and professionals in PrestaShop
*
* @author PresTeamShop.com <support@presteamshop.com>
* @copyright 2011-2017 PresTeamShop
* @license see file: LICENSE.txt
* @category PrestaShop
* @category Module
*/
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,45 @@
{*
* We offer the best and most useful modules PrestaShop and modifications for your online store.
*
* We are experts and professionals in PrestaShop
*
* @author PresTeamShop.com <support@presteamshop.com>
* @copyright 2011-2017 PresTeamShop
* @license see file: LICENSE.txt
* @category PrestaShop
* @category Module
*}
<br class="clear" />
<div class="col-xs-12 col-12 col-md-7">
<div class="panel">
<div class="panel-heading">
{l s='Extra information order' mod='onepagecheckoutps'}
</div>
<div class="panel-body">
<table class="table table-bordered">
<thead>
<tr>
<th>{l s='Field' mod='onepagecheckoutps'}</th>
<th>{l s='Value' mod='onepagecheckoutps'}</th>
</tr>
</thead>
<tbody>
{foreach from=$field_options item='option'}
<tr>
<td>{$option.field_description}</td>
<td>
{if not empty($option.option_description) and not is_null($option.option_description)}
{$option.option_description}
{elseif not empty($option.value) and not is_null($option.value)}
{$option.value}
{else}--{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
</div>
</div>
<div class="row">&nbsp;</div>