first commit

This commit is contained in:
2024-10-28 22:14:22 +01:00
commit b65352c452
40581 changed files with 5712079 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
* 2007-2015 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 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/afl-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-2015 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 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,49 @@
{*
* @Module Name: Leo Quick Login
* @Website: leotheme.com.com - prestashop template provider
* @author Leotheme <leotheme@gmail.com>
* @copyright Leotheme
*}
{if $isLogged}
<a class="logout" href="{$logout_url|escape:'html':'UTF-8'}" rel="nofollow">
<i class="material-icons">&#xE879;</i>
<span class="hidden-sm-down">{l s='Sign out' mod='leoquicklogin'}</span>
</a>
<a class="account" href="{$my_account_url|escape:'html':'UTF-8'}" title="{l s='View My Account' mod='leoquicklogin'}" rel="nofollow">
<i class="material-icons">&#xE7FD;</i>
<span class="hidden-sm-down">{$customerName|escape:'html':'UTF-8'}</span>
</a>
{else}
{if $leo_type == 'html'}
{$html_form nofilter}{* HTML form , no escape necessary *}
{else}
{if $leo_type == 'dropdown'}
<div class="dropdown">
{/if}
{if $leo_type == 'dropup'}
<div class="dropup">
{/if}
<a href="javascript:void(0)"
class="leo-quicklogin-nav leo-quicklogin{if $leo_type == 'dropdown' || $leo_type == 'dropup'} leo-dropdown dropdown-toggle{/if}"
data-enable-sociallogin="{if isset($enable_sociallogin)}{$enable_sociallogin|escape:'html':'UTF-8'}{/if}"
data-type="{$leo_type|escape:'html':'UTF-8'}"
data-layout="{$leo_layout|escape:'html':'UTF-8'}"
{if $leo_type == 'dropdown' || $leo_type == 'dropup'}
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
{/if}
title="{l s='Quick Login' mod='leoquicklogin'}"
rel="nofollow">
<i class="material-icons">&#xE851;</i>
<span class="hidden-sm-down">{l s='Quick Login' mod='leoquicklogin'}</span>
</a>
{if $leo_type == 'dropdown' || $leo_type == 'dropup'}
<div class="dropdown-menu leo-dropdown-wrapper">
{$html_form nofilter}{* HTML form , no escape necessary *}
</div>
</div>
{/if}
{/if}
{/if}