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

	return false;
}