• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/chat.php
  • Класс: BitrixImOpenLinesChat
  • Вызов: Chat::leave
public function leave($userId)
{
	$result = false;

	if ($this->isDataLoaded())
	{
		$chat = new CIMChat(0);
		$result = $chat->DeleteUser($this->chat['ID'], $userId, false, true);
	}

	return $result;
}