• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/tradingplatform/vk/vkexporteddata.php
  • Класс: BitrixSaleTradingPlatformVkVkExportedData
  • Вызов: VkExportedData::__construct
public function __construct($exportId, $type)
{
	$this->exportId = intval($exportId);
	
	if (in_array($type, array('PRODUCTS', 'ALBUMS')))
		$this->type = $type;
	else
		throw new ArgumentNullException("EXPORT_ID");
	
	$this->cacheId = $this->getCacheId();
}