• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/tradingplatform/vk/agent.php
  • Класс: BitrixSaleTradingPlatformVkAgent
  • Вызов: Agent::getExistingOnceAgent
static function getExistingOnceAgent($feedType, $exportId)
{
	$dbRes = CAgent::GetList(
		array(),
		array(
			'NAME' => self::createOnceAgentName($feedType, $exportId),
		)
	);
	
	$agents = array();
	while ($agent = $dbRes->Fetch())
		$agents[$agent["ID"]] = $agent["ID"];

	return $agents;
}