• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_account.php
  • Класс: CVoxImplantAccount
  • Вызов: CVoxImplantAccount::GetAccountName
public function GetAccountName()
{
	if ($this->account_name == '')
	{
		$this->account_name = COption::GetOptionString("voximplant", self::ACCOUNT_NAME);
		if ($this->account_name == '')
		{
			if (!$this->UpdateAccountInfo())
			{
				return false;
			}
		}
	}
	return str_replace('voximplant.com', 'bitrixphone.com', $this->account_name);
}