• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/compatible/internals/entitycompatibility.php
  • Класс: BitrixSaleCompatibleInternalsEntityCompatibility
  • Вызов: EntityCompatibility::checkWhiteListFields
protected function checkWhiteListFields($fieldName)
{
	$fields = $this->getWhiteListFields();
	if (!empty($fields))
	{
		if (in_array($fieldName, $fields))
			return true;

		if (mb_strpos($fieldName, 'UF_') === 0)
			return true;
	}

	return false;
}