• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/basketitem.php
  • Класс: BitrixSaleBasketItem
  • Вызов: BasketItem::getBundleCollection
public function getBundleCollection()
{
	if ($this->bundleCollection === null)
	{
		if ($this->getId() > 0)
		{
			$this->bundleCollection = $this->loadBundleCollectionFromDb();
		}
		else
		{
			$this->bundleCollection = $this->loadBundleCollectionFromProvider();
		}
	}

	return $this->bundleCollection;
}