• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/Product/BaseProduct.php
  • Класс: BitrixCatalogv2ProductBaseProduct
  • Вызов: BaseProduct::getSectionCollection
public function getSectionCollection(): SectionCollection
{
	if ($this->sectionCollection === null)
	{
		// ToDo make lazy load like sku collection with iterator callback?
		$this->setSectionCollection($this->loadSectionCollection());
	}

	return $this->sectionCollection;
}