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,51 @@
{**
* 2007-2020 PrestaShop and Contributors
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (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:
* https://opensource.org/licenses/AFL-3.0
* 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.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2020 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
* International Registered Trademark & Property of PrestaShop SA
*}
<section id="autoupgradePhpWarn" class="panel widget">
<div class="panel-heading">
<span class="icon-stack text-danger">
<span class="icon icon-circle icon-stack-2x"></span>
<strong class="icon-stack-1x icon-stack-text">1</strong>
</span>
{l s='PHP Version notice' mod='autoupgrade'}
<span class="panel-heading-action">
<a class="list-toolbar-btn" href="{$ignore_link}" title="Ignore">
<i class="process-icon-close"></i>
</a>
</span>
</div>
<p class="text-muted text-center">
<i id="autoupgradePhpWarningMainIcon" class="icon-history icon-flip-horizontal"></i>
</p>
<span>
<p>
{l s='The PHP version your shop is running on is insecure.' mod='autoupgrade'}<br>
{l s='It reached its end-of-life, which means it won\'t get security updates anymore and projects will stop supporting it.' mod='autoupgrade'} </span> <p><br>
{l s='Upgrading will keep your shop secured and performant.' mod='autoupgrade'} </span> <p><br>
</p>
<div align="center">
<a class="btn btn-primary" style="white-space: unset;" href="{$learn_more_link}" target="_blank">
<i class="icon-external-link"></i> {l s='Learn more about PHP and upgrading' mod='autoupgrade'}
</a>
</div>
</section>

View File

@@ -0,0 +1,34 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* 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 https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*/
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;