• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/call/call.php
  • Класс: BitrixImCallCall
  • Вызов: Call::removeUser
public function removeUser($userId)
{
	$this->loadUsers();
	if($this->users[$userId])
	{
		CallUser::delete($this->id, $userId);
		unset($this->users[$userId]);
	}
}