Fixed styles on old PS versions. Sort the logs by modified date in the settings
@ -1,3 +1,7 @@
|
|||||||
|
## v3.4.1
|
||||||
|
* Исправлено стили страницы настроек для старых версий PS
|
||||||
|
* Исправлена сортировка файлов журналов на странице настроек
|
||||||
|
|
||||||
## v3.4.0
|
## v3.4.0
|
||||||
* Обновлен дизайн настроек модуля
|
* Обновлен дизайн настроек модуля
|
||||||
* Добавлена возможность выгружать в CRM только невыгруженные заказы
|
* Добавлена возможность выгружать в CRM только невыгруженные заказы
|
||||||
|
@ -540,7 +540,9 @@ class RetailcrmExport
|
|||||||
private static function handleError($entityId, $exception)
|
private static function handleError($entityId, $exception)
|
||||||
{
|
{
|
||||||
RetailcrmLogger::writeException('export', $exception, sprintf(
|
RetailcrmLogger::writeException('export', $exception, sprintf(
|
||||||
'Error while building %s: %s', $entityId, $exception->getMessage()
|
'Error while building %s: %s',
|
||||||
|
$entityId,
|
||||||
|
$exception->getMessage()
|
||||||
), true);
|
), true);
|
||||||
RetailcrmLogger::output($exception->getMessage());
|
RetailcrmLogger::output($exception->getMessage());
|
||||||
}
|
}
|
||||||
|
@ -122,8 +122,7 @@ class RetailcrmHistory
|
|||||||
if (isset($customerHistory['externalId'])) {
|
if (isset($customerHistory['externalId'])) {
|
||||||
$crmCustomerResponse = self::$api->customersGet($customerHistory['externalId']);
|
$crmCustomerResponse = self::$api->customersGet($customerHistory['externalId']);
|
||||||
|
|
||||||
if (
|
if (null === $crmCustomerResponse
|
||||||
null === $crmCustomerResponse
|
|
||||||
|| !$crmCustomerResponse->isSuccessful()
|
|| !$crmCustomerResponse->isSuccessful()
|
||||||
|| !$crmCustomerResponse->offsetExists('customer')
|
|| !$crmCustomerResponse->offsetExists('customer')
|
||||||
) {
|
) {
|
||||||
@ -498,8 +497,7 @@ class RetailcrmHistory
|
|||||||
{
|
{
|
||||||
$crmOrderResponse = self::$api->ordersGet($id, $by);
|
$crmOrderResponse = self::$api->ordersGet($id, $by);
|
||||||
|
|
||||||
if (
|
if (null !== $crmOrderResponse
|
||||||
null !== $crmOrderResponse
|
|
||||||
&& $crmOrderResponse->isSuccessful()
|
&& $crmOrderResponse->isSuccessful()
|
||||||
&& $crmOrderResponse->offsetExists('order')
|
&& $crmOrderResponse->offsetExists('order')
|
||||||
) {
|
) {
|
||||||
@ -693,15 +691,13 @@ class RetailcrmHistory
|
|||||||
WHERE id_order = ' . pSQL((int) $order_id) . '
|
WHERE id_order = ' . pSQL((int) $order_id) . '
|
||||||
AND product_id = ' . pSQL((int) $product_id) . '
|
AND product_id = ' . pSQL((int) $product_id) . '
|
||||||
AND product_attribute_id = ' . pSQL((int) $product_attribute_id) . '
|
AND product_attribute_id = ' . pSQL((int) $product_attribute_id) . '
|
||||||
AND id_order_detail = ' . pSQL((int) $id_order_detail)
|
AND id_order_detail = ' . pSQL((int) $id_order_detail));
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static function getNewOrderDetailId()
|
private static function getNewOrderDetailId()
|
||||||
{
|
{
|
||||||
return Db::getInstance()->getRow('
|
return Db::getInstance()->getRow('
|
||||||
SELECT MAX(id_order_detail) FROM ' . _DB_PREFIX_ . 'order_detail'
|
SELECT MAX(id_order_detail) FROM ' . _DB_PREFIX_ . 'order_detail');
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -798,8 +794,7 @@ class RetailcrmHistory
|
|||||||
$notOurChanges[$externalId] = [];
|
$notOurChanges[$externalId] = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if ('api' == $entry['source']
|
||||||
'api' == $entry['source']
|
|
||||||
&& isset($entry['apiKey']['current'])
|
&& isset($entry['apiKey']['current'])
|
||||||
&& true == $entry['apiKey']['current']
|
&& true == $entry['apiKey']['current']
|
||||||
) {
|
) {
|
||||||
@ -1072,12 +1067,11 @@ class RetailcrmHistory
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
RetailcrmLogger::writeDebug(__METHOD__, sprintf(
|
RetailcrmLogger::writeDebug(__METHOD__, sprintf(
|
||||||
'<Customer ID: %d> %s::%s',
|
'<Customer ID: %d> %s::%s',
|
||||||
$newOrder->id_customer,
|
$newOrder->id_customer,
|
||||||
get_class($newOrder),
|
get_class($newOrder),
|
||||||
'add'
|
'add'
|
||||||
)
|
));
|
||||||
);
|
|
||||||
$newOrder->add(false, false);
|
$newOrder->add(false, false);
|
||||||
|
|
||||||
$newOrderHistoryRecord = new OrderHistory(null, static::$default_lang, Context::getContext()->shop->id);
|
$newOrderHistoryRecord = new OrderHistory(null, static::$default_lang, Context::getContext()->shop->id);
|
||||||
@ -1265,8 +1259,7 @@ class RetailcrmHistory
|
|||||||
$orderAddressCrm = isset($order['delivery']['address']) ? $order['delivery']['address'] : [];
|
$orderAddressCrm = isset($order['delivery']['address']) ? $order['delivery']['address'] : [];
|
||||||
$orderPhone = $orderAddress->phone;
|
$orderPhone = $orderAddress->phone;
|
||||||
|
|
||||||
if (
|
if (RetailcrmHistoryHelper::isAddressLineChanged($orderAddressCrm)
|
||||||
RetailcrmHistoryHelper::isAddressLineChanged($orderAddressCrm)
|
|
||||||
|| !Validate::isLoadedObject($orderAddress)
|
|| !Validate::isLoadedObject($orderAddress)
|
||||||
) {
|
) {
|
||||||
$infoOrder = self::getOrderFromCrm($order['externalId']);
|
$infoOrder = self::getOrderFromCrm($order['externalId']);
|
||||||
@ -1320,8 +1313,7 @@ class RetailcrmHistory
|
|||||||
$orderDeliveryCode = !empty($order['delivery']['code']) ? $order['delivery']['code'] : null;
|
$orderDeliveryCode = !empty($order['delivery']['code']) ? $order['delivery']['code'] : null;
|
||||||
$orderDeliveryCost = !empty($order['delivery']['cost']) ? $order['delivery']['cost'] : null;
|
$orderDeliveryCost = !empty($order['delivery']['cost']) ? $order['delivery']['cost'] : null;
|
||||||
|
|
||||||
if (
|
if ((
|
||||||
(
|
|
||||||
null !== $orderDeliveryCode
|
null !== $orderDeliveryCode
|
||||||
&& isset(self::$deliveries[$orderDeliveryCode])
|
&& isset(self::$deliveries[$orderDeliveryCode])
|
||||||
&& null !== self::$deliveries[$orderDeliveryCode]
|
&& null !== self::$deliveries[$orderDeliveryCode]
|
||||||
@ -1389,7 +1381,8 @@ class RetailcrmHistory
|
|||||||
$orderPayment->amount = isset($payment['amount']) ? $payment['amount'] : $orderToUpdate->total_paid;
|
$orderPayment->amount = isset($payment['amount']) ? $payment['amount'] : $orderToUpdate->total_paid;
|
||||||
$orderPayment->date_add = isset($payment['paidAt']) ? $payment['paidAt'] : date('Y-m-d H:i:s');
|
$orderPayment->date_add = isset($payment['paidAt']) ? $payment['paidAt'] : date('Y-m-d H:i:s');
|
||||||
|
|
||||||
RetailcrmLogger::writeDebug(__METHOD__,
|
RetailcrmLogger::writeDebug(
|
||||||
|
__METHOD__,
|
||||||
sprintf(
|
sprintf(
|
||||||
'<Order Reference: %s> %s::%s',
|
'<Order Reference: %s> %s::%s',
|
||||||
$orderToUpdate->reference,
|
$orderToUpdate->reference,
|
||||||
|
@ -86,7 +86,8 @@ class RetailcrmExceptionMiddleware implements RetailcrmMiddlewareInterface
|
|||||||
RetailcrmLogger::writeNoCaller($exception->getTraceAsString());
|
RetailcrmLogger::writeNoCaller($exception->getTraceAsString());
|
||||||
|
|
||||||
return new RetailcrmApiResponse(
|
return new RetailcrmApiResponse(
|
||||||
500, json_encode([
|
500,
|
||||||
|
json_encode([
|
||||||
'success' => false,
|
'success' => false,
|
||||||
'errorMsg' => $errorMsg,
|
'errorMsg' => $errorMsg,
|
||||||
])
|
])
|
||||||
|
@ -181,7 +181,9 @@ class RetailcrmExportOrdersMiddleware implements RetailcrmMiddlewareInterface
|
|||||||
{
|
{
|
||||||
if (isset($order['externalId'])) {
|
if (isset($order['externalId'])) {
|
||||||
RetailcrmExportOrdersHelper::updateExportState(
|
RetailcrmExportOrdersHelper::updateExportState(
|
||||||
$order['externalId'], null, [$e->getMessage()]
|
$order['externalId'],
|
||||||
|
null,
|
||||||
|
[$e->getMessage()]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,8 +46,7 @@ class RetailcrmReferenceMiddleware implements RetailcrmMiddlewareInterface
|
|||||||
/** @var RetailcrmApiResponse $response */
|
/** @var RetailcrmApiResponse $response */
|
||||||
$response = $next($request);
|
$response = $next($request);
|
||||||
|
|
||||||
if (
|
if (null !== $response
|
||||||
null !== $response
|
|
||||||
&& $response->isSuccessful()
|
&& $response->isSuccessful()
|
||||||
&& (
|
&& (
|
||||||
'ordersCreate' === $request->getMethod()
|
'ordersCreate' === $request->getMethod()
|
||||||
@ -57,8 +56,7 @@ class RetailcrmReferenceMiddleware implements RetailcrmMiddlewareInterface
|
|||||||
$receiveOrderNumber = (bool) (Configuration::get(RetailCRM::ENABLE_ORDER_NUMBER_RECEIVING));
|
$receiveOrderNumber = (bool) (Configuration::get(RetailCRM::ENABLE_ORDER_NUMBER_RECEIVING));
|
||||||
$crmOrder = $response->order;
|
$crmOrder = $response->order;
|
||||||
|
|
||||||
if (
|
if ($receiveOrderNumber
|
||||||
$receiveOrderNumber
|
|
||||||
&& isset($crmOrder['externalId'], $crmOrder['number'])
|
&& isset($crmOrder['externalId'], $crmOrder['number'])
|
||||||
) {
|
) {
|
||||||
$object = new Order($crmOrder['externalId']);
|
$object = new Order($crmOrder['externalId']);
|
||||||
|
@ -81,6 +81,17 @@ class RetailcrmSettingsHelper
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$orderBy = 'modified';
|
||||||
|
$orderDirection = SORT_DESC;
|
||||||
|
|
||||||
|
array_multisort(
|
||||||
|
array_map(function ($item) use ($orderBy) {
|
||||||
|
return $item[$orderBy];
|
||||||
|
}, $fileNames),
|
||||||
|
$orderDirection,
|
||||||
|
$fileNames
|
||||||
|
);
|
||||||
|
|
||||||
return $fileNames;
|
return $fileNames;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@ class RetailCRM extends Module
|
|||||||
{
|
{
|
||||||
$this->name = 'retailcrm';
|
$this->name = 'retailcrm';
|
||||||
$this->tab = 'export';
|
$this->tab = 'export';
|
||||||
$this->version = '3.4.0';
|
$this->version = '3.4.1';
|
||||||
$this->author = 'DIGITAL RETAIL TECHNOLOGIES SL';
|
$this->author = 'DIGITAL RETAIL TECHNOLOGIES SL';
|
||||||
$this->displayName = $this->l('Simla.com');
|
$this->displayName = $this->l('Simla.com');
|
||||||
$this->description = $this->l('Integration module for Simla.com');
|
$this->description = $this->l('Integration module for Simla.com');
|
||||||
@ -235,7 +235,8 @@ class RetailCRM extends Module
|
|||||||
$tab->delete();
|
$tab->delete();
|
||||||
} catch (PrestaShopException $e) {
|
} catch (PrestaShopException $e) {
|
||||||
RetailcrmLogger::writeCaller(
|
RetailcrmLogger::writeCaller(
|
||||||
__METHOD__, sprintf('Error while deleting old tabs: %s', $e->getMessage())
|
__METHOD__,
|
||||||
|
sprintf('Error while deleting old tabs: %s', $e->getMessage())
|
||||||
);
|
);
|
||||||
RetailcrmLogger::writeDebug(__METHOD__, $e->getTraceAsString());
|
RetailcrmLogger::writeDebug(__METHOD__, $e->getTraceAsString());
|
||||||
|
|
||||||
@ -369,7 +370,9 @@ class RetailCRM extends Module
|
|||||||
|
|
||||||
$relativePath = str_replace('retailcrm/', '', $file);
|
$relativePath = str_replace('retailcrm/', '', $file);
|
||||||
$fullPath = sprintf(
|
$fullPath = sprintf(
|
||||||
'%s/%s', __DIR__, $relativePath
|
'%s/%s',
|
||||||
|
__DIR__,
|
||||||
|
$relativePath
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!file_exists($fullPath)) {
|
if (!file_exists($fullPath)) {
|
||||||
@ -377,7 +380,8 @@ class RetailCRM extends Module
|
|||||||
}
|
}
|
||||||
|
|
||||||
RetailcrmLogger::writeCaller(
|
RetailcrmLogger::writeCaller(
|
||||||
__METHOD__, sprintf('Remove `%s`', $file)
|
__METHOD__,
|
||||||
|
sprintf('Remove `%s`', $file)
|
||||||
);
|
);
|
||||||
|
|
||||||
unlink($fullPath); // todo maybe check and remove empty directories
|
unlink($fullPath); // todo maybe check and remove empty directories
|
||||||
|
@ -98,7 +98,9 @@ function upgrade_module_3_0_2_remove_old_files($files)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$fullPath = sprintf(
|
$fullPath = sprintf(
|
||||||
'%s/../%s', __DIR__, str_replace('retailcrm/', '', $file)
|
'%s/../%s',
|
||||||
|
dirname(__FILE__),
|
||||||
|
str_replace('retailcrm/', '', $file)
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!file_exists($fullPath)) {
|
if (!file_exists($fullPath)) {
|
||||||
@ -106,7 +108,8 @@ function upgrade_module_3_0_2_remove_old_files($files)
|
|||||||
}
|
}
|
||||||
|
|
||||||
RetailcrmLogger::writeCaller(
|
RetailcrmLogger::writeCaller(
|
||||||
__METHOD__, sprintf('Remove `%s`', $file)
|
__METHOD__,
|
||||||
|
sprintf('Remove `%s`', $file)
|
||||||
);
|
);
|
||||||
|
|
||||||
unlink($fullPath);
|
unlink($fullPath);
|
||||||
|
45
retailcrm/views/img/en/index.php
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* MIT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
* SOFTWARE.
|
||||||
|
*
|
||||||
|
* 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 DIGITAL RETAIL TECHNOLOGIES SL <mail@simlachat.com>
|
||||||
|
* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
* @license https://opensource.org/licenses/MIT The MIT License
|
||||||
|
*
|
||||||
|
* Don't forget to prefix your containers with your own identifier
|
||||||
|
* to avoid any conflicts with others containers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
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;
|
45
retailcrm/views/img/es/index.php
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* MIT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
* SOFTWARE.
|
||||||
|
*
|
||||||
|
* 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 DIGITAL RETAIL TECHNOLOGIES SL <mail@simlachat.com>
|
||||||
|
* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
* @license https://opensource.org/licenses/MIT The MIT License
|
||||||
|
*
|
||||||
|
* Don't forget to prefix your containers with your own identifier
|
||||||
|
* to avoid any conflicts with others containers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
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;
|
BIN
retailcrm/views/img/es/where-is-search-1.png
Normal file
After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
45
retailcrm/views/img/ru/index.php
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* MIT License
|
||||||
|
*
|
||||||
|
* Copyright (c) 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
* SOFTWARE.
|
||||||
|
*
|
||||||
|
* 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 DIGITAL RETAIL TECHNOLOGIES SL <mail@simlachat.com>
|
||||||
|
* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL
|
||||||
|
* @license https://opensource.org/licenses/MIT The MIT License
|
||||||
|
*
|
||||||
|
* Don't forget to prefix your containers with your own identifier
|
||||||
|
* to avoid any conflicts with others containers.
|
||||||
|
*/
|
||||||
|
|
||||||
|
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;
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 97 KiB |