• Модуль: xmpp
  • Путь к файлу: ~/bitrix/modules/xmpp/classes/server.php
  • Класс: CXMPPServer
  • Вызов: CXMPPServer::_IndexClient
public function _IndexClient($jid, $id, $clientDomain = "")
{
	$id = intval($id);

	if (empty($clientDomain))
		$clientDomain = CXMPPServer::GetDomain();

	if (!array_key_exists($clientDomain, $this->arClientsIndex))
		$this->arClientsIndex[$clientDomain] = array();

	if (!array_key_exists($jid, $this->arClientsIndex[$clientDomain]))
		$this->arClientsIndex[$clientDomain][$jid] = array();

	$this->arClientsIndex[$clientDomain][$jid][] = $id;
}