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,11 @@
<?php
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,28 @@
/**
* 2007-2022 OptiPic
*
* NOTICE OF LICENSE
*
* PrestaShop module to integrate with OptiPic.io service to optimize site images.
*
* @author OptiPic.io <info@optipic.io>
* @copyright 2007-2022 OptiPic
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
(function() {
if(
typeof(optipicCurrentHost)!='undefined'
&& typeof(optipicSid)!='undefined'
&& typeof(optipicVersion)!='undefined'
) {
var url = 'https://optipic.io/api/cp/stat?domain=' + optipicCurrentHost + '&sid=' + optipicSid + '&cms=prestashop&stype=cdn&append_to=%23configuration_form&version=' + optipicVersion + '&source=' + optipicSource;
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = url;
document.getElementsByTagName('head')[0].appendChild(script);
}
})();