• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/volume/base.php
  • Класс: Bitrix\Crm\Volume\Base
  • Вызов: Base::hasTimeLimitReached
public function hasTimeLimitReached()
{
	if ($this->timeLimit > 0)
	{
		if ($this->timeLimitReached)
		{
			return true;
		}
		if ((time() - $this->startTime) >= $this->timeLimit)
		{
			$this->timeLimitReached = true;

			return true;
		}
	}

	return false;
}