• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/Property/Property.php
  • Класс: BitrixCatalogv2PropertyProperty
  • Вызов: Property::getPropertyFeatureCollection
public function getPropertyFeatureCollection(): PropertyFeatureCollection
{
	if ($this->propertyFeatureCollection === null)
	{
		// ToDo make lazy load like sku collection with iterator callback?
		$this->setPropertyFeatureCollection($this->loadPropertyFeatureCollection());
	}

	return $this->propertyFeatureCollection;
}