• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/session.php
  • Класс: BitrixImOpenLinesSession
  • Вызов: Session::pause
public function pause(bool $active = true): bool
{
	$update = [
		'PAUSE' => $active? 'Y': 'N',
	];
	if ($active === true)
	{
		$update['WAIT_ACTION'] = 'N';
	}
	$this->update($update);

	Debug::addSession($this,  __METHOD__);
	$this->addEventToLog(Library::EVENT_SESSION_PAUSE);

	return true;
}