• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/documentgenerator/productloader.php
  • Класс: Bitrix\Crm\Integration\DocumentGenerator\ProductLoader
  • Вызов: ProductLoader::loadOfferProperties
public function loadOfferProperties(): array
{
	if ($this->offerProperties !== null)
	{
		return $this->offerProperties;
	}
	$this->offerProperties = [];
	if ($this->offerIblockId <= 0)
	{
		return $this->offerProperties;
	}

	$this->offerProperties = $this->loadPropertiesData($this->offerIblockId);

	return $this->offerProperties;
}