mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-03 21:33:38 +03:00
ref #97474 Version of php, module, opencart in get-requests
This commit is contained in:
parent
c893cf24fb
commit
8bcce7834f
4 changed files with 18 additions and 4 deletions
|
@ -1,3 +1,6 @@
|
|||
## v4.1.17
|
||||
* Add parameters with versions of PHP, module, opencart
|
||||
|
||||
## v4.1.16
|
||||
* Support for services in ICML
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.1.16
|
||||
4.1.17
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
class ControllerExtensionModuleRetailcrm extends Controller
|
||||
{
|
||||
const VERSION_MODULE = '4.1.16';
|
||||
const VERSION_MODULE = '4.1.17';
|
||||
|
||||
private $_error = [];
|
||||
protected $log, $statuses, $payments, $deliveryTypes, $retailcrmApiClient, $moduleTitle, $tokenTitle;
|
||||
|
|
|
@ -7,6 +7,7 @@ class RetailcrmHttpClient
|
|||
|
||||
protected $url;
|
||||
protected $defaultParameters;
|
||||
protected $versionData;
|
||||
|
||||
/**
|
||||
* Client constructor.
|
||||
|
@ -25,7 +26,13 @@ class RetailcrmHttpClient
|
|||
}
|
||||
|
||||
$this->url = $url;
|
||||
$this->defaultParameters = $defaultParameters;
|
||||
$this->defaultParameters = $defaultParameters;
|
||||
$this->versionData = [
|
||||
'php_version' => function_exists('phpversion') ? phpversion() : '',
|
||||
'cms_source' => 'Opencart',
|
||||
'module_version' => ControllerExtensionModuleRetailcrm::VERSION_MODULE,
|
||||
'cms_version' => VERSION
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -60,7 +67,11 @@ class RetailcrmHttpClient
|
|||
);
|
||||
}
|
||||
|
||||
$parameters = array_merge($this->defaultParameters, $parameters);
|
||||
if (self::METHOD_GET === $method) {
|
||||
$parameters = array_merge($this->defaultParameters, $parameters, $this->versionData);
|
||||
} else {
|
||||
$parameters = array_merge($this->defaultParameters, $parameters);
|
||||
}
|
||||
|
||||
$url = $this->url . $path;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue