• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/helpers/admin/blocks/orderbasket.php
  • Класс: BitrixSaleHelpersAdminBlocksOrderBasket
  • Вызов: OrderBasket::getOffersCatalog
static function getOffersCatalog($iblockId)
{
	if (self::$catalogIncluded === null)
		self::$catalogIncluded = MainLoader::includeModule('catalog');
	if (!self::$catalogIncluded)
		return array();

	if (!isset(static::$offersCatalog[$iblockId]))
		static::$offersCatalog[$iblockId] = CCatalogSKU::getInfoByProductIBlock($iblockId);

	return static::$offersCatalog[$iblockId];
}