first commit

This commit is contained in:
2024-10-28 22:14:22 +01:00
commit b65352c452
40581 changed files with 5712079 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?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;
}