• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entityrequisite.php
  • Класс: Bitrix\Crm\EntityRequisite
  • Вызов: EntityRequisite::getAddressZoneByCountry
static function getAddressZoneByCountry(int $countryId) : string
{
	$result = '';

	$countryAddressZoneMap = self::getCountryAddressZoneMap();
	if (isset($countryAddressZoneMap[$countryId]))
	{
		$result = $countryAddressZoneMap[$countryId];
	}

	return $result;
}