• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/session.php
  • Класс: BitrixImOpenLinesSession
  • Вызов: Session::joinUser
public function joinUser()
{
	Debug::addSession($this,  __METHOD__, ['joinUserList' => $this->joinUserList]);

	if (!empty($this->joinUserList))
	{
		$operatorFromCrm = false;
		if ($this->isNowCreated())
		{
			$operatorFromCrm = $this->session['OPERATOR_FROM_CRM'] == 'Y'? true : false;
		}
		$this->chat->sendJoinMessage($this->joinUserList, $operatorFromCrm);
		$this->chat->join($this->joinUserList);
	}

	return true;
}