Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/service/scenarios/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/service/scenarios/connector.php

<?php
namespace Bitrix\Sale\Exchange\Integration\Service\Scenarios;


use Bitrix\Sale\Exchange\Integration\Service\Command\Line;
use Bitrix\Sale\Exchange\Integration\Service\Command\Batch;

class Connector
{
	public function add(array $params)
	{
		Line\App::optionSet($params['OPTIONS']);
		Batch\Placement::binds($params['PLACEMENTS']);
		(new StatisticsProvider())->register($params['PROVIDER']);
	}

	public function delete(array $params)
	{
		Batch\Placement::unbinds($params['PLACEMENTS']);
	}
}