• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/userpause.php
  • Класс: BitrixImOpenLinesUserPause
  • Вызов: UserPause::stop
public function stop(): bool
{
	if (!$this->options->getPause())
	{
		return false;
	}

	$this->options->setPause(false);
	QueueEvent::onAfterTMDayStart(['USER_ID' => $this->userId]);
	$this->getLogger()->log(Log::TYPE_PAUSE, Log::TYPE_PAUSE_N);

	return true;
}