first commit

This commit is contained in:
2025-01-06 20:47:25 +01:00
commit 3bdbd78c2f
25591 changed files with 3586440 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{*
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*}
{if $banner}
{if $banner_link}
<a href="{$banner_link|escape:'html':'UTF-8'}" target="_blank">
{/if}
<img src="{$link->getMediaLink("`$smarty.const._PS_ETS_PR_IMG_``$banner|escape:'htmlall':'UTF-8'`")}" style="width:60px" />
{if $banner_link}
</a>
{/if}
{/if}

View File

@@ -0,0 +1,23 @@
{*
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*}
{if $title_popup}
<p>{l s='Popup title: ' mod='ets_promotion'} {$title_popup|escape:'html':'UTF-8'}</p>
{/if}
<p>{l s='Popup content: ' mod='ets_promotion'}</p>
{$content_popup nofilter}

View File

@@ -0,0 +1,29 @@
<?php
/**
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*/
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,31 @@
{*
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*}
{if $display_positions}
{if in_array('all',$display_positions)}
<p>{l s='All' mod='ets_promotion'}</p>
{else}
<ul>
{foreach from=$display_positions item='display_position'}
{if isset($positions[$display_position])}
<li>{$positions[$display_position]|replace:'[highlight]':'<strong>'|replace:'[end_highlight]':'</strong>' nofilter}</li>
{/if}
{/foreach}
</ul>
{/if}
{/if}

View File

@@ -0,0 +1,44 @@
{*
* Copyright ETS Software Technology Co., Ltd
*
* NOTICE OF LICENSE
*
* This file is not open source! Each license that you purchased is only available for 1 website only.
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future.
*
* @author ETS Software Technology Co., Ltd
* @copyright ETS Software Technology Co., Ltd
* @license Valid for 1 website (or project) for each purchase of license
*}
<tr class="row-promote-{$id_ets_pr_promote_rule|intval}">
<td>{$way_to_promote|escape:'html':'UTF-8'}</td>
<td>{$position_to_display nofilter}</td>
<td>{$detail_promote nofilter}</td>
<td class="text-right">
<div class="btn-group-action">
<div class="btn-group pull-right">
<a class="btn btn-default link_edit_condition" href="{$link->getAdminLink('AdminModules')|escape:'html':'UTF-8'}&configure=ets_promotion&editpromoterule=1&id_ets_pr_promote_rule={$id_ets_pr_promote_rule|intval}">
<i class="icon icon-pencil fa fa-pencil"></i>
{l s='Edit' mod='ets_promotion'}
</a>
<button class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</button>
<ul class="dropdown-menu">
<li>
<a class="btn btn-default link_delete_condition" data-confirm="{l s='Do you want to delete this item?' mod='ets_promotion' js=1}" href="{$link->getAdminLink('AdminModules')|escape:'html':'UTF-8'}&configure=ets_promotion&id_ets_pr_promote_rule={$id_ets_pr_promote_rule|intval}&delPromote=yes">
<i class="fa fa-trash icon icon-trash"></i>
{l s='Delete' mod='ets_promotion'}
</a>
</li>
</ul>
</div>
</div>
</td>
</tr>