• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/tradingplatform/timer.php
  • Класс: BitrixSaleTradingPlatformTimer
  • Вызов: Timer::check
public function check($reserveTime = 0)
{
	if($this->timeLimit == 0)
		return true;

	if(time() < $this->finishTime - $reserveTime)
		return true;

	return false;
}