• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entityrequisite.php
  • Класс: Bitrix\Crm\EntityRequisite
  • Вызов: EntityRequisite::checkRqFieldCountryId
public function checkRqFieldCountryId(string $fieldName, int $countryId): bool
{
	$rqFieldsCountryMap = $this->getRqFieldsCountryMap();
	if (is_array($rqFieldsCountryMap[$fieldName]) && in_array($countryId, $rqFieldsCountryMap[$fieldName], true))
	{
		return true;
	}

	return false;
}