2013-09-12 19:00:46 +04:00
|
|
|
<?php
|
|
|
|
CModule::AddAutoloadClasses(
|
|
|
|
'intaro.intarocrm', // module name
|
|
|
|
array (
|
2015-03-03 16:37:34 +03:00
|
|
|
'RestNormalizer' => 'classes/general/RestNormalizer.php',
|
|
|
|
'RetailCrm\RestApi' => 'classes/general/RestApi.php',
|
|
|
|
'RetailCrm\Response\ApiResponse' => 'classes/general/Response/ApiResponse.php',
|
|
|
|
'ICrmOrderActions' => 'classes/general/ICrmOrderActions.php',
|
|
|
|
'ICMLLoader' => 'classes/general/ICMLLoader.php',
|
|
|
|
'ICrmOrderEvent' => 'classes/general/events/ICrmOrderEvent.php',
|
|
|
|
'RetailCrm\Exception\InvalidJsonException' => 'classes/general/Exception/InvalidJsonException.php',
|
|
|
|
'RetailCrm\Exception\CurlException' => 'classes/general/Exception/CurlException.php',
|
2013-09-12 19:00:46 +04:00
|
|
|
)
|
|
|
|
);
|