• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/product/systemfield/base.php
  • Класс: BitrixCatalogProductSystemFieldBase
  • Вызов: Base::checkRestictions
static function checkRestictions(array $restrictions): bool
{
	if (isset($restrictions['TYPE']))
	{
		if (!static::checkAllowedProductType($restrictions['TYPE']))
		{
			return false;
		}
	}

	return true;
}