* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ if (!defined('_PS_ADMIN_DIR_')) { define('_PS_ADMIN_DIR_', __DIR__); } include _PS_ADMIN_DIR_.'/../config/config.inc.php'; if (isset($_GET['secure_key'])) { $secureKey = md5(_COOKIE_KEY_.Configuration::get('PS_SHOP_NAME')); if ($secureKey === $_GET['secure_key']) { $shop_ids = Shop::getCompleteListOfShopsID(); foreach ($shop_ids as $shop_id) { Shop::setContext(Shop::CONTEXT_SHOP, (int)$shop_id); Currency::refreshCurrencies(); } } }