• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/ebay/exportoffersku.php
  • Класс: BitrixCatalogEbayExportOfferSKU
  • Вызов: ExportOfferSKU::getItemParams
protected function getItemParams(array $itemOffer)
{
	$itemOffer["QUANTITY"] = $this->getQuantity($itemOffer["ID"]);
	$itemOffer["CATEGORIES"] = $this->getCategories($itemOffer["ID"]);
	$itemOffer["DETAIL_PICTURE_URL"] = $this->getPictureUrl((int)$itemOffer["DETAIL_PICTURE"]);
	$itemOffer["PREVIEW_PICTURE_URL"] = $this->getPictureUrl((int)$itemOffer["PREVIEW_PICTURE"]);
	$itemOffer["PARAMS"] = $this->getParams($itemOffer, $this->arOfferIBlock);
	$itemOffer["DETAIL_PAGE_URL"] = $this->getDetailPageUrl($itemOffer["~DETAIL_PAGE_URL"]);

	return $itemOffer;
}