1
0
mirror of synced 2024-11-22 21:36:10 +03:00
bitrix-module/intaro.retailcrm/lib/component/agent.php

31 lines
548 B
PHP
Raw Normal View History

2021-05-31 16:33:02 +03:00
<?php
namespace Intaro\RetailCrm\Component;
use CCatalogExport;
use CModule;
use Dotenv\Loader;
use Intaro\RetailCrm\Component\Factory\ClientFactory;
use Intaro\RetailCrm\Component\Json\Serializer;
2021-05-31 16:33:02 +03:00
/**
* Class Agent
*
* @package Intaro\RetailCrm\Component
*/
class Agent
{
/**
* @param int $profileId
*
* @return string
*/
public function preGenerateExport(int $profileId): string
{
CModule::IncludeModule('catalog');
CCatalogExport::PreGenerateExport($profileId);
2021-05-31 16:33:02 +03:00
return '';
}
}