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

	return $this;
}