1
0
Fork 0
mirror of synced 2025-04-02 21:36:14 +03:00

Added additional parameters to GET requests

This commit is contained in:
Ivan Chaplygin 2025-02-03 18:00:00 +03:00
parent b2cc25e716
commit 94fd5f07c6
7 changed files with 20 additions and 6 deletions

View file

@ -1,3 +1,6 @@
## 2025-02-03 4.8.18
* Added additional parameters to GET requests
## 2025-01-21 4.8.17
* Fix deploy

View file

@ -1 +1 @@
4.8.17
4.8.18

View file

@ -77,7 +77,8 @@ 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_active' => getOption('ua') === WC_Retailcrm_Abstracts_Settings::YES,
])
: $parameters = array_merge($this->defaultParameters, $parameters);

View file

@ -207,3 +207,10 @@ function isCorporateOrder($wcCustomer, $wcOrder)
{
return !empty($wcCustomer->get_billing_company()) || !empty($wcOrder->get_billing_company());
}
function getOption($optionName)
{
$options = get_option(WC_Retailcrm_Base::$option_key);
return $options[$optionName] ?? null;
}

View file

@ -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

View file

@ -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;

View file

@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.8.17
* @version 4.8.18
*
* @package RetailCRM
*/