first commit

This commit is contained in:
2024-11-11 18:46:54 +01:00
commit a630d17338
25634 changed files with 4923715 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2014 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 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/osl-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
* @version Release: $Revision$
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
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,35 @@
{**
* Registration Fields
*
* NOTICE OF LICENSE
*
* You are not authorized to modify, copy or redistribute this file.
* Permissions are reserved by FME Modules.
*
* @author FME Modules
* @copyright 2018 fmemodules All right reserved
* @license FMM Modules
* @package Registration Fields
*}
<!-- registration fields heading -->
{foreach from=$checkout_steps key=key item=title}
{if isset($grouped_fields[$key]) AND $grouped_fields[$key]}
{foreach from=$grouped_fields.$key item=field name=custom_fields}
{if in_array($field.field_type, array('multiselect', 'radio', 'checkbox', 'select'))}
{assign var='field_value' value=$field.field_value}
{elseif $field.field_type == 'message'}
{assign var='field_value' value=$field.default_value}
{else}
{assign var='field_value' value=$obj_model->getFormatedValue($field)}
{/if}
{cycle values=["color_line_even", "color_line_odd"] assign=bgcolor_class}
{if $field.field_type == 'attachment'}
{continue}
{else}
<span>
{$field.field_name|escape:'htmlall':'UTF-8'} <strong>{$field_value|escape:'htmlall':'UTF-8'}</strong><br/>
</span>
{/if}
{/foreach}
{/if}
{/foreach}

View File

@@ -0,0 +1,59 @@
{**
* Registration Fields
*
* NOTICE OF LICENSE
*
* You are not authorized to modify, copy or redistribute this file.
* Permissions are reserved by FME Modules.
*
* @author FME Modules
* @copyright 2018 fmemodules All right reserved
* @license FMM Modules
* @package Registration Fields
*}
<!-- registration fields heading -->
<table id="summary-tab">
<tr>
<td class="center grey bold">
{if isset($customfields_heading) AND $customfields_heading}
{$customfields_heading|escape:'htmlall':'UTF-8'}
{else}
{l s='Custom Fields' mod='customfields' pdf='true'}
{/if}
</td>
</tr>
</table>
<!-- registration fields -->
<table id="summary-tab">
{foreach from=$checkout_steps key=key item=title}
{if isset($grouped_fields[$key]) AND $grouped_fields[$key]}
<tr>
<td colspan="2" class="header" valign="middle" style="border-top:1px solid #000;border-bottom:1px solid #000;text-align:center">{$title|escape:'htmlall':'UTF-8'}
</td>
</tr>
{foreach from=$grouped_fields.$key item=field name=custom_fields}
{if in_array($field.field_type, array('multiselect', 'radio', 'checkbox', 'select'))}
{assign var='field_value' value=$field.field_value}
{elseif $field.field_type == 'message'}
{assign var='field_value' value=$field.default_value}
{else}
{assign var='field_value' value=$obj_model->getFormatedValue($field)}
{/if}
{cycle values=["color_line_even", "color_line_odd"] assign=bgcolor_class}
{if $field.field_type == 'attachment'}
{continue}
{else}
<tr class="product {$bgcolor_class|escape:'htmlall':'UTF-8'}">
<td class="left grey bold" width="45%" style="margin-left:15px;">
{$field.field_name|escape:'htmlall':'UTF-8'}
</td>
<td class="left white" width="55%" style="margin-left:15px;">
{$field_value|escape:'htmlall':'UTF-8'}
</td>
</tr>
{/if}
{/foreach}
{/if}
{/foreach}
</table>