CCrmRequisitePresetRestProxy::checkFields

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. CCrmRequisitePresetRestProxy
  4. checkFields
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmRequisitePresetRestProxy
  • Вызов: CCrmRequisitePresetRestProxy::checkFields
protected function checkFields($fields, &$errors)
{
	if (isset($fields['COUNTRY_ID']))
	{
		$countryId = intval($fields['COUNTRY_ID']);
		if (!in_array($countryId, EntityRequisite::getAllowedRqFieldCountries(), true))
		{
			$errors = 'Invalid value of field: COUNTRY_ID.';
			return false;
		}
	}

	return true;
}

Добавить комментарий