Files
wyczarujprezent.pl/override/classes/Context.php
2024-10-28 22:14:22 +01:00

36 lines
942 B
PHP

<?php
class Context extends ContextCore
{
public function getComputingPrecision()
{
if(!isset($this->currency->precision) || !$this->currency->precision || $this->currency->precision == null) {
$this->currency->precision = 2;
}
return parent::getComputingPrecision();
}
/*
* module: teamwant_redis
* date: 2024-06-10 21:12:22
* version: 2.1.1
*/
public $disableCacheForOrderPage_initialized = false;
/*
* module: teamwant_redis
* date: 2024-06-10 21:12:22
* version: 2.1.1
*/
public $disableCacheForOrderPage = false;
/*
* module: teamwant_redis
* date: 2024-06-10 21:12:22
* version: 2.1.1
*/
public $disableCacheForAddressPaymentAndCarrier_initialized = false;
/*
* module: teamwant_redis
* date: 2024-06-10 21:12:22
* version: 2.1.1
*/
public $disableCacheForAddressPaymentAndCarrier = false;
}