• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/saleszone.php
  • Класс: BitrixSaleSalesZone
  • Вызов: SalesZone::checkCountryId
static function checkCountryId($countryId, $siteId)
{
	if($siteId == '')
		return false;

	$cIds = static::getCountriesIds($siteId);
	return !$cIds || in_array($countryId, $cIds) || in_array("", $cIds);
}