• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_sip.php
  • Класс: CVoxImplantSip
  • Вызов: CVoxImplantSip::GetSipRegistrationList
public function GetSipRegistrationList()
{
	$viHttp = new CVoxImplantHttp();
	$result = $viHttp->GetSipRegistrationList();
	if (!$result)
	{
		$this->error = new CVoxImplantError(__METHOD__, 'REG_ID_NOT_FOUND', GetMessage('VI_SIP_CONFIG_NOT_FOUND'));
		return false;
	}

	return $result;
}