* @copyright 2007-2015 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ if (!defined('_PS_ADMIN_DIR_')) { define('_PS_ADMIN_DIR_', getcwd()); } include(_PS_ADMIN_DIR_.'/../config/config.inc.php'); if (!Tools::getValue('id_shop')) { Context::getContext()->shop->setContext(Shop::CONTEXT_ALL); } else { Context::getContext()->shop->setContext(Shop::CONTEXT_SHOP, (int)Tools::getValue('id_shop')); } if (substr(_COOKIE_KEY_, 34, 8) != Tools::getValue('token')) { die; } ini_set('max_execution_time', 7200); Search::indexation(Tools::getValue('full')); if (Tools::getValue('redirect')) { Tools::redirectAdmin($_SERVER['HTTP_REFERER'].'&conf=4'); }