25 lines
694 B
PHP
25 lines
694 B
PHP
<?php
|
|
/**
|
|
* Creative Elements - live Theme & Page Builder
|
|
*
|
|
* @author WebshopWorks
|
|
* @copyright 2019-2023 WebshopWorks.com
|
|
* @license One domain support license
|
|
*/
|
|
defined('_PS_VERSION_') or exit;
|
|
|
|
function upgrade_module_2_5_9($module)
|
|
{
|
|
Shop::isFeatureActive() && Shop::setContext(Shop::CONTEXT_ALL);
|
|
|
|
if (isset($module->context->cookie->ceViewedProducts)) {
|
|
$products = explode(',', $module->context->cookie->ceViewedProducts);
|
|
$products = array_slice($products, 0, CreativeElements::VIEWED_PRODUCTS_LIMIT);
|
|
|
|
$module->context->cookie->ceViewedProducts = implode(',', $products);
|
|
$module->context->cookie->write();
|
|
}
|
|
|
|
return true;
|
|
}
|