• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/controller/timer.php
  • Класс: BitrixImOpenLinesControllerTimer
  • Вызов: Timer::hasTimeLimitReached
public function hasTimeLimitReached(): bool
{
	if ($this->timeLimit > 0 && $this->startTime > 0)
	{
		if ((time() - $this->startTime) >= $this->timeLimit)
		{
			return true;
		}
	}

	return false;
}