• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/component/base.php
  • Класс: BitrixIblockComponentBase
  • Вызов: Base::bigDataLoadAction
protected function bigDataLoadAction()
{
	$this->initBigDataLastUsage();
	$this->productIds = $this->getBigDataProductIds();

	// if no products - show empty response
	if (empty($this->productIds))
	{
		static::sendJsonAnswer();
	}

	$this->productIdMap = $this->getProductIdMap($this->productIds);
	$this->loadData();
}