From b77e9a6dc14f18c354b2d9432d4661bb593ffa8d Mon Sep 17 00:00:00 2001 From: anton Date: Wed, 9 Oct 2024 20:20:14 +0600 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B4=D0=B0=D1=87?= =?UTF-8?q?=D0=B0=20=D0=B4=D0=BE=D0=BF.=D0=BF=D0=B0=D1=80=D0=B0=D0=BC?= =?UTF-8?q?=D0=B5=D1=82=D1=80=D0=BE=D0=B2=20=D1=81=20=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D1=81=D0=B8=D1=8F=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 +++ VERSION | 2 +- src/include/api/class-wc-retailcrm-request.php | 14 +++++++++++++- src/readme.txt | 5 ++++- src/retailcrm.php | 3 ++- src/uninstall.php | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41541ab..e37a8b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2024-10-14 4.8.11 +* Add parameters with versions of PHP, module, wordpress, woocommerce + ## 2024-10-08 4.8.10 * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId) diff --git a/VERSION b/VERSION index bf10f80..c1b6143 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.10 +4.8.11 diff --git a/src/include/api/class-wc-retailcrm-request.php b/src/include/api/class-wc-retailcrm-request.php index f21e3b1..06acbe7 100644 --- a/src/include/api/class-wc-retailcrm-request.php +++ b/src/include/api/class-wc-retailcrm-request.php @@ -26,6 +26,7 @@ class WC_Retailcrm_Request protected $url; protected $defaultParameters; + protected $versionData; /** * Client constructor. @@ -38,6 +39,13 @@ class WC_Retailcrm_Request { $this->url = $url; $this->defaultParameters = $defaultParameters; + $this->versionData = [ + 'php_version' => function_exists('phpversion') ? phpversion() : '', + 'cms_source' => 'Woocommerce', + 'module_version' => WC_Integration_Retailcrm::MODULE_VERSION, + 'woocommerce_version' => WC()->version ?? '', + 'cms_version' => function_exists('get_bloginfo') ? get_bloginfo('version') : '' + ]; } /** @@ -71,7 +79,11 @@ class WC_Retailcrm_Request ); } - $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; diff --git a/src/readme.txt b/src/readme.txt index 31d9599..8355529 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla Requires PHP: 7.1 Requires at least: 5.3 Tested up to: 6.5 -Stable tag: 4.8.10 +Stable tag: 4.8.11 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html @@ -83,6 +83,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.8.11 = +* Add parameters with versions of PHP, module, wordpress, woocommerce + = 4.8.10 = * Fixed errors in catalog formation when changing synchronization parameters (sku/externalId) diff --git a/src/retailcrm.php b/src/retailcrm.php index fb05f51..a29573c 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.8.10 + * Version: 4.8.11 * Tested up to: 6.5 * Requires Plugins: woocommerce * WC requires at least: 5.4 @@ -27,6 +27,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) : class WC_Integration_Retailcrm { const WOOCOMMERCE_SLUG = 'woocommerce'; const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php'; + const MODULE_VERSION = '4.8.11'; private static $instance; diff --git a/src/uninstall.php b/src/uninstall.php index 536b9ed..bbb5360 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.8.10 + * @version 4.8.11 * * @package RetailCRM */