mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-21 20:56:07 +03:00
ref #90088 editing handler function
This commit is contained in:
parent
3e1c19fd8d
commit
b6181ab426
@ -955,9 +955,9 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||||||
return $types;
|
return $types;
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = [];
|
$result['opencart'] = $types['opencart'];
|
||||||
|
|
||||||
foreach ($types as $type) {
|
foreach ($types['retailcrm'] as $codeKey => $type) {
|
||||||
if (
|
if (
|
||||||
$type['active'] === true &&
|
$type['active'] === true &&
|
||||||
(
|
(
|
||||||
@ -965,7 +965,7 @@ class ControllerExtensionModuleRetailcrm extends Controller
|
|||||||
in_array($availableSite, $type['sites'], true)
|
in_array($availableSite, $type['sites'], true)
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
$result[] = $type;
|
$result['retailcrm'][$codeKey] = $type;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,7 +87,7 @@ class OpencartApiClient {
|
|||||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
||||||
curl_setopt($curl, CURLOPT_FORBID_REUSE, false);
|
curl_setopt($curl, CURLOPT_FORBID_REUSE, false);
|
||||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($curl, CURLOPT_URL, 'https://chaplygin-is.proxy.retailcrm.tech/' . 'index.php?route=api/' . $method . (!empty($getParams) ? '&' . http_build_query($getParams) : ''));
|
curl_setopt($curl, CURLOPT_URL, $url . 'index.php?route=api/' . $method . (!empty($getParams) ? '&' . http_build_query($getParams) : ''));
|
||||||
|
|
||||||
curl_setopt($curl, CURLOPT_POST, true);
|
curl_setopt($curl, CURLOPT_POST, true);
|
||||||
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($postParams));
|
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($postParams));
|
||||||
|
Loading…
Reference in New Issue
Block a user