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

	return $this;
}