1
0
mirror of synced 2024-11-23 13:56:08 +03:00
bitrix-module/intaro.retailcrm/lib/component/agent.php

29 lines
454 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;
/**
* 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);
return '';
}
}