• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/ui/basketstorage.php
  • Класс: BitrixSaleUIBasketStorage
  • Вызов: BasketStorage::getBasket
public function getBasket()
{
	if (!isset($this->basket))
	{
		$this->basket = SaleBasket::loadItemsForFUser($this->getFUserId(), $this->getSiteId());
	}

	return $this->basket;
}