• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/comparator/ru/replacement.php
  • Класс: BitrixSaleLocationComparatorReplacement
  • Вызов: Replacement::isCountryRussia
static function isCountryRussia($countryName)
{
	return in_array(
		ToUpper(
			trim(
				$countryName
			)
		),
		array(
			'РФ',
			'РОССИЙСКАЯ ФЕДЕРАЦИЯ',
			'РОССИЯ'
		)
	);
}