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,35 @@
<?php
/**
* 2007-2017 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-2017 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,52 @@
{*
* 2007-2018 PrestaShop
*
* 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-2018 PrestaShop SA
* @license http://addons.prestashop.com/en/content/12-terms-and-conditions-of-use
* International Registered Trademark & Property of PrestaShop SA
*}
<div class="modal fade" id="moduleActionModal" tabindex="-1" role="dialog" aria-labelledby="moduleActionModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="uninstall action_available modal-title" id="moduleActionlModalLongTitle">{l s='Uninstall module?' mod='ps_themecusto'}</h4>
<h4 class="disable action_available modal-title" id="moduleActionlModalLongTitle">{l s='Disable module?' mod='ps_themecusto'}</h4>
<h4 class="reset action_available modal-title" id="moduleActionlModalLongTitle">{l s='Reset module?' mod='ps_themecusto'}</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="uninstall action_available">
<p>{l s='You are about to uninstall' mod='ps_themecusto'} <span class="module-displayname" ></span></p>
<p>{l s='This will definitely disable the module.' mod='ps_themecusto'}</p>
</div>
<div class="disable action_available">
<p>{l s='You are about to disable ' mod='ps_themecusto'} <span class="module-displayname" ></span></p>
<p>{l s='Your current settings will be saved, but the module will no longer be active.' mod='ps_themecusto'}</p>
</div>
<div class="reset action_available">
<p>{l s='You are about to reset ' mod='ps_themecusto'} <span class="module-displayname" ></span></p>
<p>{l s='This will restore the defaults settings.' mod='ps_themecusto'}</p>
<p>{l s='This action cannot be undone.' mod='ps_themecusto'}</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">{l s='Cancel' mod='ps_themecusto'}</button>
<a class="btn btn-primary uppercase" href="#" data-dismiss="modal" data-action="false" data-name="false" data-deletion="true">
<span class="uninstall action_available">{l s='Yes, uninstall it' mod='ps_themecusto'}</span>
<span class="disable action_available">{l s='Yes, disable it' mod='ps_themecusto'}</span>
<span class="reset action_available">{l s='Yes, reset it' mod='ps_themecusto'}</span>
</a>
</div>
</div>
</div>
</div>

View File

@@ -0,0 +1,95 @@
{*
* 2007-2018 PrestaShop
*
* 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-2018 PrestaShop SA
* @license http://addons.prestashop.com/en/content/12-terms-and-conditions-of-use
* International Registered Trademark & Property of PrestaShop SA
*}
<div class="loader src_loader_{$module.name}"></div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 btn-group form-action-button-container src_parent_{$module.name}" data-id_module="{$module.id_module}" >
{if $module.url_active != 'install'}
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9 no-padding general-action" data-module_name="{$module.name}" data-action="{$module.url_active }" data-module_displayname="{$module.displayName}">
{if $module.url_active == 'configure'}
<a class="col-lg-12 col-md-12 col-sm-12 col-xs-12 no-radius-right btn btn-primary-reverse btn-outline-primary light-button module_action_menu_{$module.url_active}" href="{$module.actions_url.configure}">
{l s='Configure' mod='ps_themecusto'}
</a>
{elseif $module.url_active == 'disable' }
<button type="button" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 no-radius-right btn btn-primary-reverse btn-outline-primary light-button module_action_menu_{$module.url_active}" data-confirm_modal="module-modal-confirm-{$module.name}-{$module.url_active}" data-toggle="modal" data-target="#moduleActionModal">
{l s='Disable' mod='ps_themecusto'}
</button>
{else}
<button type="button" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 no-radius-right btn btn-primary-reverse btn-outline-primary light-button module_action_menu_{$module.url_active}" data-confirm_modal="module-modal-confirm-{$module.name}-{$module.url_active}" >
{l s='Enable' mod='ps_themecusto'}
</button>
{/if}
</div>
<input type="hidden" class="btn">
<button type="button" class="col-lg-3 col-md-3 col-sm-3 col-xs-3 btn btn-outline-primary dropdown-action" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="material-icons">keyboard_arrow_down</i>
</button>
<div class="dropdown-menu">
{foreach from=$moduleActions item=action key=key}
{if ($action != $module.url_active)
&& !($module.url_active eq 'configure' && $action eq 'enable')
&& !($module.url_active eq 'enable' && $action eq 'disable')
&& !($module.url_active eq 'disable' && $action eq 'enable')
&& !($module.url_active eq 'disable' && $action eq 'configure')
&& !(!$module.can_configure && $action eq 'configure')
&& !($action eq 'install')
&& !($action eq 'uninstall' && $is_ps_ready)
&& !($action eq 'install' && $is_ps_ready)
}
<li>
<div data-action="{$action}" data-module_name="{$module.name}" data-module_displayname="{$module.displayName}">
{if $action eq 'uninstall' || $action eq 'disable' || $action eq 'reset'}
<button type="button" class="dropdown-item module_action_menu_{$action}" data-confirm_modal="module-modal-confirm-{$module.name}-{$action}" data-toggle="modal" data-target="#moduleActionModal">
{if $action eq 'uninstall'}
{l s='Uninstall' mod='ps_themecusto'}
{elseif $action eq 'disable'}
{l s='Disable' mod='ps_themecusto'}
{elseif $action eq 'reset'}
{l s='Reset' mod='ps_themecusto'}
{/if}
</button>
{else if $action eq 'configure'}
<a class="dropdown-item module_action_menu_configure" href="{$module.actions_url.configure}">
{l s='Configure' mod='ps_themecusto'}
</a>
{else}
{if $action eq 'enable'}
<button type="button" class="dropdown-item module_action_menu_{$action}">
{l s='Enable' mod='ps_themecusto'}
</button>
{elseif ($module.enable_mobile eq 7 || $module.enable_mobile eq 1 || $module.enable_mobile eq 0) && $action eq 'disable_mobile'}
<button type="button" class="dropdown-item module_action_menu_{$action}">
{l s='Disable mobile' mod='ps_themecusto'}
</button>
{elseif ($module.enable_mobile eq 3 || $module.enable_mobile eq 0) && $action eq 'enable_mobile'}
<button type="button" class="dropdown-item module_action_menu_{$action}">
{l s='Enable mobile' mod='ps_themecusto'}
</button>
{/if}
{/if}
</div>
</li>
{/if}
{/foreach}
</div>
{else}
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 no-padding general-action" data-module_name="{$module.name}" data-action="{$module.url_active }" data-module_displayname="{$module.displayName}">
<button type="button" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 no-radius-right btn btn-primary-reverse btn-outline-primary light-button module_action_menu_{$module.url_active}" data-confirm_modal="module-modal-confirm-{$module.name}-{$module.url_active}" >
{l s='Install' mod='ps_themecusto'}
</button>
</div>
{/if}
</div>

View File

@@ -0,0 +1,49 @@
{*
* 2007-2018 PrestaShop
*
* 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-2018 PrestaShop SA
* @license http://addons.prestashop.com/en/content/12-terms-and-conditions-of-use
* International Registered Trademark & Property of PrestaShop SA
*}
<div class="row js-wireframe">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-menu" data-module_name="menu">
<img class="out-element" src="{$moduleImgUri}/wireframe/menu.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/menu_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-slider" data-module_name="slider">
<img class="out-element" src="{$moduleImgUri}/wireframe/slider.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/slider_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-home_products" data-module_name="home_products">
<img class="out-element" src="{$moduleImgUri}/wireframe/home_products.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/home_products_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-block_text" data-module_name="block_text">
<img class="out-element" src="{$moduleImgUri}/wireframe/bloc_text.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/bloc_text_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-home_products" data-module_name="home_products">
<img class="out-element" src="{$moduleImgUri}/wireframe/home_products2.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/home_products2_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-banner" data-module_name="banner">
<img class="out-element" src="{$moduleImgUri}/wireframe/banner.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/banner_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-social_newsletter" data-module_name="social_newsletter">
<img class="out-element" src="{$moduleImgUri}/wireframe/newsletter.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/newsletter_hover.jpg"/>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 js-img-footer" data-module_name="footer">
<img class="out-element" src="{$moduleImgUri}/wireframe/footer.jpg"/>
<img class="on-element" src="{$moduleImgUri}/wireframe/footer_hover.jpg"/>
</div>
</div>