• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/gridserviceform.php
  • Класс: BitrixCatalogComponentGridServiceForm
  • Вызов: GridServiceForm::buildIblockPropertiesDescriptions
protected function buildIblockPropertiesDescriptions(): array
{
	$propertyDescriptions = [];

	foreach ($this->entity->getPropertyCollection() as $property)
	{
		if ($property->isActive() && $property->getCode() === BaseForm::MORE_PHOTO)
		{
			$propertyDescriptions[] = $this->getPropertyDescription($property);
		}
	}

	return $propertyDescriptions;
}