2017-06-22 00:55:08 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP version 5.4
|
|
|
|
*
|
2017-06-22 16:42:42 +03:00
|
|
|
* API client v4
|
2017-06-22 00:55:08 +03:00
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
|
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace RetailCrm\Client;
|
|
|
|
|
|
|
|
use RetailCrm\Methods\V4;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP version 5.4
|
|
|
|
*
|
2017-06-22 16:42:42 +03:00
|
|
|
* API client v4 class
|
2017-06-22 00:55:08 +03:00
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
* @author RetailCrm <integration@retailcrm.ru>
|
|
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
|
|
* @link http://www.retailcrm.ru/docs/Developers/ApiVersion5
|
|
|
|
*/
|
|
|
|
class ApiVersion4 extends AbstractLoader
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Init version based client
|
|
|
|
*
|
|
|
|
* @param string $url api url
|
|
|
|
* @param string $apiKey api key
|
|
|
|
* @param string $version api version
|
|
|
|
* @param string $site site code
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct($url, $apiKey, $version, $site)
|
|
|
|
{
|
|
|
|
parent::__construct($url, $apiKey, $version, $site);
|
|
|
|
}
|
|
|
|
|
|
|
|
use V4\Customers;
|
|
|
|
use V4\Delivery;
|
|
|
|
use V4\Marketplace;
|
|
|
|
use V4\Orders;
|
|
|
|
use V4\Packs;
|
|
|
|
use V4\References;
|
2017-06-22 16:42:42 +03:00
|
|
|
use V4\Settings;
|
2017-06-22 00:55:08 +03:00
|
|
|
use V4\Statistic;
|
|
|
|
use V4\Stores;
|
|
|
|
use V4\Telephony;
|
|
|
|
use V4\Users;
|
|
|
|
}
|