diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cf8a75..9c1d928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2025-02-03 4.8.18 +* Added additional parameters to GET requests + ## 2025-01-21 4.8.17 * Fix deploy diff --git a/VERSION b/VERSION index d884cd1..b5de5f0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.8.17 +4.8.18 diff --git a/src/include/api/class-wc-retailcrm-request.php b/src/include/api/class-wc-retailcrm-request.php index f25b067..ecd331b 100644 --- a/src/include/api/class-wc-retailcrm-request.php +++ b/src/include/api/class-wc-retailcrm-request.php @@ -77,9 +77,10 @@ class WC_Retailcrm_Request 'cms_version' => function_exists('get_bloginfo') ? get_bloginfo('version') : '', 'woo_version' => WC()->version ?? '', 'php_version' => function_exists('phpversion') ? phpversion() : '', - 'module_version' => WC_Integration_Retailcrm::MODULE_VERSION, + 'module_version' => WC_Integration_Retailcrm::MODULE_VERSION, + 'ga_option_is_active' => getOptionByCode('ua') === WC_Retailcrm_Abstracts_Settings::YES, ]) - : $parameters = array_merge($this->defaultParameters, $parameters); + : array_merge($this->defaultParameters, $parameters); $url = $this->url . $path; diff --git a/src/include/functions.php b/src/include/functions.php index cf2d196..b9dd1d9 100644 --- a/src/include/functions.php +++ b/src/include/functions.php @@ -207,3 +207,8 @@ function isCorporateOrder($wcCustomer, $wcOrder) { return !empty($wcCustomer->get_billing_company()) || !empty($wcOrder->get_billing_company()); } + +function getOptionByCode($optionName) +{ + return get_option(WC_Retailcrm_Base::$option_key)[$optionName] ?? null; +} diff --git a/src/readme.txt b/src/readme.txt index 6848d8e..fdc96a4 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.17 +Stable tag: 4.8.18 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.8.18 = +* Added additional parameters to GET requests + = 4.8.17 = * Fix deploy diff --git a/src/retailcrm.php b/src/retailcrm.php index a122336..01af638 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.17 + * Version: 4.8.18 * Tested up to: 6.5 * Requires Plugins: woocommerce * WC requires at least: 5.4 @@ -27,7 +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.17'; + const MODULE_VERSION = '4.8.18'; private static $instance; diff --git a/src/uninstall.php b/src/uninstall.php index ca4130a..0619379 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.8.17 + * @version 4.8.18 * * @package RetailCRM */