• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entityaddress.php
  • Класс: Bitrix\Crm\EntityAddress
  • Вызов: EntityAddress::getLocationAddressByFields
static function getLocationAddressByFields(array $fields, string $languageId)
{
	if ($languageId === '' || mb_strlen($languageId) !== 2)
	{
		$languageId = static::getDefaultLanguageId();
	}

	if (!static::isLocationModuleIncluded())
	{
		return null;
	}

	$locationAddress = new Address($languageId);
	static::updateLocationAddressFields($locationAddress, $fields);

	return $locationAddress;
}