• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/baseform.php
  • Класс: BitrixCatalogComponentBaseForm
  • Вызов: BaseForm::buildIblockPropertiesDescriptions
protected function buildIblockPropertiesDescriptions(): array
{
	$propertyDescriptions = [];
	$unavailableUserTypes = $this->getUnavailableUserTypes();

	foreach ($this->entity->getPropertyCollection() as $property)
	{
		if (in_array($property->getUserType(), $unavailableUserTypes, true))
		{
			continue;
		}
		if ($property->isActive())
		{
			$propertyDescriptions[] = $this->getPropertyDescription($property);
		}
	}

	return $propertyDescriptions;
}