define('VERSION_CMS', '1.7');
define('TYPE_CMS', 'PRO');
// Проверка обновления раз в 24 часа
if (!isset($_COOKIE["UpdateDevcartPro"])) {
if (TYPE_CMS == "FREE") {
$dc_update = curl_init("https://dc.dev-opencart.com/update_free_alert.php");
} elseif (TYPE_CMS == "PRO") {
$dc_update = curl_init("https://dc.dev-opencart.com/update_pro_alert.php");
}
curl_setopt($dc_update, CURLOPT_POST, 1);
curl_setopt($dc_update, CURLOPT_RETURNTRANSFER, true);
curl_setopt($dc_update, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($dc_update, CURLOPT_SSL_VERIFYHOST, false);
$dc_update_response = curl_exec($dc_update);
curl_close($dc_update);
if ($dc_update_response > VERSION_CMS) {
define("UPDATE_CMS", true);
} else {
define("UPDATE_CMS", false);
}
setcookie("UpdateDevcartPro", $dc_update_response, time() + 86400);
} else {
$dc_update_response = $_COOKIE["UpdateDevcartPro"];
if ($dc_update_response > VERSION_CMS) {
define("UPDATE_CMS", true);
} else {
define("UPDATE_CMS", false);
}
}
© 2023 Quttera Ltd. All rights reserved.