• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/notify.php
  • Класс: BitrixSaleNotify
  • Вызов: Notify::getSiteInfo
static function getSiteInfo(Order $order)
{
	$collection = $order->getTradeBindingCollection();
	/** @var TradeBindingEntity $tradeBinding */
	foreach ($collection as $tradeBinding)
	{
		$platform = $tradeBinding->getTradePlatform();
		if ($platform !== null)
		{
			return $platform->getInfo();
		}
	}

	return [];
}