Migrating to PHP 7.0
This commit is contained in:
parent
bb64d92305
commit
892c1a42b0
68 changed files with 251 additions and 204 deletions
|
@ -1,3 +1,8 @@
|
|||
## 2022-09-23 4.5.0
|
||||
* Migrating to PHP 7.0.
|
||||
* Change logic work with ICML catalog: added streaming generation, added generators in the ICML generation process.
|
||||
* Change logic work with address
|
||||
|
||||
## 2022-09-05 4.4.9
|
||||
* Fix bug with product tax
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[](https://github.com/retailcrm/woocommerce-module/actions)
|
||||
[](https://codecov.io/gh/retailcrm/woocommerce-module)
|
||||
[](https://github.com/retailcrm/woocommerce-module/releases)
|
||||
[](https://php.net/)
|
||||
[](https://php.net/)
|
||||
|
||||
Woocommerce-module
|
||||
==================
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.4.9
|
||||
4.5.0
|
|
@ -10,7 +10,8 @@
|
|||
],
|
||||
"minimum-stability": "dev",
|
||||
"require": {
|
||||
"ext-simplexml": "*"
|
||||
"ext-simplexml": "*",
|
||||
"ext-xmlwriter": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-json": "*",
|
||||
|
|
|
@ -339,3 +339,6 @@ msgstr "Borrar"
|
|||
|
||||
msgid "Cron tasks cleared"
|
||||
msgstr "Trabajos cron borrados"
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Intitulado"
|
|
@ -348,3 +348,7 @@ msgstr "Очистить"
|
|||
|
||||
msgid "Cron tasks cleared"
|
||||
msgstr "Cron задачи очищены"
|
||||
|
||||
msgid "Untitled"
|
||||
msgstr "Без названия"
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Abstract_Builder - Builds data for CRM.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Abstracts_Address - Builds data for addresses orders/customers.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Abstracts_Data - Class manage different data.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Abstracts_Settings - Settings plugin Simla.
|
||||
*
|
||||
|
|
|
@ -1,17 +1,5 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Client_V5 - Api Client V5 class.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Client
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Request')) {
|
||||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-request.php'));
|
||||
}
|
||||
|
@ -20,6 +8,17 @@ if (!class_exists('WC_Retailcrm_Response')) {
|
|||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-response.php'));
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Client_V5 - Api Client V5 class.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Client
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
class WC_Retailcrm_Client_V5
|
||||
{
|
||||
protected $client;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Exception_Curl.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Exception_Json.
|
||||
*
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Proxy - RetailCRM Integration.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Proxy
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Proxy')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Proxy - RetailCRM Integration.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Proxy
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
class WC_Retailcrm_Proxy
|
||||
{
|
||||
protected $retailcrm;
|
||||
|
|
|
@ -1,15 +1,4 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Request - Request class.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Request
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Exception_Curl')) {
|
||||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-curl.php'));
|
||||
|
@ -19,6 +8,17 @@ if (!class_exists('WC_Retailcrm_Response')) {
|
|||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-response.php'));
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Request - Request class.
|
||||
*
|
||||
* @category Integration
|
||||
* @package WC_Retailcrm_Request
|
||||
* @author RetailCRM <dev@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
class WC_Retailcrm_Request
|
||||
{
|
||||
const METHOD_GET = 'GET';
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<?php
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Exception_Json')) {
|
||||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-json.php'));
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Response - Response class.
|
||||
*
|
||||
|
@ -10,11 +15,6 @@
|
|||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link http://retailcrm.ru/docs/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Exception_Json')) {
|
||||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/api/class-wc-retailcrm-exception-json.php'));
|
||||
}
|
||||
|
||||
class WC_Retailcrm_Response implements \ArrayAccess
|
||||
{
|
||||
// HTTP response status code
|
||||
|
|
|
@ -1,22 +1,21 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Base - Main settings plugin.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Base')) {
|
||||
if (!class_exists('WC_Retailcrm_Abstracts_Settings')) {
|
||||
include_once(WC_Integration_Retailcrm::checkCustomFile('include/abstracts/class-wc-retailcrm-abstracts-settings.php'));
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Base - Main settings plugin.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Base extends WC_Retailcrm_Abstracts_Settings
|
||||
{
|
||||
/** @var WC_Retailcrm_Proxy|WC_Retailcrm_Client_V5|bool */
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Customers - Allows transfer data customers with CMS.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Customers')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customers - Allows transfer data customers with CMS.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Customers
|
||||
{
|
||||
/** @var bool | WC_Retailcrm_Proxy | \WC_Retailcrm_Client_V5 */
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<?php
|
||||
|
||||
if (!defined('ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Daemon_Collector - Integration with Daemon Collector.
|
||||
*
|
||||
|
@ -10,11 +15,6 @@
|
|||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!defined('ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
class WC_Retailcrm_Daemon_Collector {
|
||||
/** @var self $instance */
|
||||
private static $instance;
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Google_Analytics - Integration with Google Analytics.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Google_Analytics')) {
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Google_Analytics - Integration with Google Analytics.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Google_Analytics {
|
||||
private static $instance;
|
||||
private $options;
|
||||
|
|
|
@ -1,18 +1,17 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_History - Allows transfer data orders/customers with CRM.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_History')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_History - Allows transfer data orders/customers with CRM.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_History
|
||||
{
|
||||
const PAGE_LIMIT = 25;
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Inventories - Allows manage stocks.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Inventories')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Inventories - Allows manage stocks.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Inventories
|
||||
{
|
||||
/** @var WC_Retailcrm_Client_V5 */
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Orders - Allows transfer data orders with CMS.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Orders')) :
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Orders - Allows transfer data orders with CMS.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Orders
|
||||
{
|
||||
/** @var bool|WC_Retailcrm_Proxy|WC_Retailcrm_Client_V5 */
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Plugin - Internal plugin settings.
|
||||
*
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Uploader - Allows upload archival orders/customers in CRM.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (class_exists('WC_Retailcrm_Uploader') === false) {
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Uploader - Allows upload archival orders/customers in CRM.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
class WC_Retailcrm_Uploader
|
||||
{
|
||||
const RETAILCRM_COUNT_OBJECT_UPLOAD = 50;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Switcher - This component provides builder-like interface in order to make it easier to
|
||||
* change customer & customer data in the order via retailCRM history.
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_History_Assembler - Assembles history records into list which closely resembles
|
||||
* orders & customers list output from API.
|
||||
|
|
|
@ -1,18 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.6
|
||||
*
|
||||
* Class WC_Retailcrm_Logger - Allows display important debug information.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')) :
|
||||
|
||||
/**
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Logger - Allows display important debug information.
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class WC_Retailcrm_Logger
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Address - Builds a billing address for a customer.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Corporate_Address - Builds a billing address for a corporate customer.
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_WC_Customer_Builder - It converts retailCRM customer data (array) into WC_Customer.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Interface WC_Retailcrm_Builder_Interface - Main interface for builders. All builders.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Switcher_Result - Holds modified order and customer which was set in the order.
|
||||
* If customer is null, then only order props was updated. Previous customer (if it was registered)
|
||||
|
@ -31,7 +32,8 @@ class WC_Retailcrm_Customer_Switcher_Result
|
|||
$this->wcCustomer = $wcCustomer;
|
||||
$this->wcOrder = $wcOrder;
|
||||
|
||||
if ((!is_null($this->wcCustomer) && !($this->wcCustomer instanceof WC_Customer))
|
||||
if (
|
||||
(!is_null($this->wcCustomer) && !($this->wcCustomer instanceof WC_Customer))
|
||||
|| !($this->wcOrder instanceof WC_Order)
|
||||
) {
|
||||
throw new \InvalidArgumentException(sprintf('Incorrect data provided to %s', __CLASS__));
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Switcher_State - Holds WC_Retailcrm_Customer_Switcher state.
|
||||
* It exists only because we need to comply with builder interface.
|
||||
|
@ -14,13 +15,13 @@
|
|||
class WC_Retailcrm_Customer_Switcher_State
|
||||
{
|
||||
/** @var \WC_Order $wcOrder */
|
||||
private $wcOrder;
|
||||
private $wcOrder;
|
||||
|
||||
/** @var array */
|
||||
private $newCustomer;
|
||||
private $newCustomer;
|
||||
|
||||
/** @var array */
|
||||
private $newContact;
|
||||
private $newContact;
|
||||
|
||||
/** @var string $newCompanyName */
|
||||
private $newCompanyName;
|
||||
|
@ -183,4 +184,3 @@ class WC_Retailcrm_Customer_Switcher_State
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Address - Build address for CRM order.
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Item - Build items for CRM order.
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Payment - Build payments for CRM order.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order - Build main data for CRM order.
|
||||
*
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
Contributors: Simla.com
|
||||
Donate link: https://www.simla.com
|
||||
Tags: Интеграция, Simla.com, simla
|
||||
Requires PHP: 5.6
|
||||
Requires PHP: 7.0
|
||||
Requires at least: 5.3
|
||||
Tested up to: 6.0
|
||||
Stable tag: 4.4.9
|
||||
Stable tag: 4.5.0
|
||||
License: GPLv1 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-1.0.html
|
||||
|
||||
|
@ -82,6 +82,11 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
|
|||
|
||||
|
||||
== Changelog ==
|
||||
= 4.5.0 =
|
||||
* Migrating to PHP 7.0.
|
||||
* Change logic work with ICML catalog: added streaming generation, added generators in the ICML generation process.
|
||||
* Change logic work with address
|
||||
|
||||
= 4.4.9 =
|
||||
* Fix bug with product tax
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Description: Integration plugin for WooCommerce & Simla.com
|
||||
* Author: RetailDriver LLC
|
||||
* Author URI: http://retailcrm.pro/
|
||||
* Version: 4.4.9
|
||||
* Version: 4.5.0
|
||||
* Tested up to: 6.0
|
||||
* WC requires at least: 5.4
|
||||
* WC tested up to: 6.7
|
||||
|
@ -117,6 +117,7 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
|
|||
require_once(self::checkCustomFile('include/customer/class-wc-retailcrm-customer-address.php'));
|
||||
require_once(self::checkCustomFile('include/customer/class-wc-retailcrm-customer-corporate-address.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-icml.php'));
|
||||
require_once(self::checkCustomFile('include/icml/class-wc-retailcrm-icml-writer.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-orders.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-customers.php'));
|
||||
require_once(self::checkCustomFile('include/class-wc-retailcrm-inventories.php'));
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @link https://wordpress.org/plugins/woo-retailcrm/
|
||||
*
|
||||
* @version 4.4.9
|
||||
* @version 4.5.0
|
||||
*
|
||||
* @package RetailCRM
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Abstracts_Settings_Test - Testing WC_Retailcrm_Abstracts_Settings.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Address_Test - Testing WC_Retailcrm_Customer_Address.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Corporate_Address_Test - Testing WC_Retailcrm_Customer_Corporate_Address.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_WC_Customer_Builder_Test - Testing WC_Retailcrm_WC_Customer_Builder.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace datasets;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class DataBaseRetailCrm - Data set for WC_Retailcrm_Base.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace datasets;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class DataCustomersRetailCrm - Data set for WC_Retailcrm_Customers.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace datasets;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class DataHistoryRetailCrm - Data set for WC_Retailcrm_History.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
namespace datasets;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class DataInventoriesRetailCrm - Data set for WC_Retailcrm_Inventories.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<?php
|
||||
|
||||
if (!defined( 'ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Log_Handler_Stdout - Handles log entries by writing to a stdout.
|
||||
*
|
||||
|
@ -10,11 +15,6 @@
|
|||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!defined( 'ABSPATH')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
class WC_Retailcrm_Log_Handler_Stdout extends WC_Log_Handler
|
||||
{
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
<?php
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Response')) {
|
||||
require_once dirname(__FILE__) . '/../../src/include/api/class-wc-retailcrm-response.php';
|
||||
}
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Response_Helper - Set response for mock object.
|
||||
*
|
||||
|
@ -10,11 +15,6 @@
|
|||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
if (!class_exists('WC_Retailcrm_Response')) {
|
||||
require_once dirname(__FILE__) . '/../../src/include/api/class-wc-retailcrm-response.php';
|
||||
}
|
||||
|
||||
class WC_Retailcrm_Response_Helper extends WC_Retailcrm_Response
|
||||
{
|
||||
public function setResponse($response)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Test_Case_Helper - Helper for testing.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Switcher_Result_Test - Testing WC_Retailcrm_Customer_Switcher_Result.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customer_Switcher_State_Test - Testing WC_Retailcrm_Customer_Switcher_State.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Address_Test - Testing WC_Retailcrm_Order_Address.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Item_Test - Testing WC_Retailcrm_Order_Item.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Payment_Test - Testing WC_Retailcrm_Order_Payment.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Order_Test - Testing WC_Retailcrm_Order.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use datasets\DataBaseRetailCrm;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Base_Test - Testing WC_Retailcrm_Base.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use datasets\DataCustomersRetailCrm;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Customers_Test - Testing WC_Retailcrm_Customers.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Daemon_Collector_Test - Testing WC_Retailcrm_Daemon_Collector.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Google_Analytics_Test - Testing WC_Retailcrm_Google_Analytics.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use datasets\DataHistoryRetailCrm;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_History_Test - Testing WC_Retailcrm_History.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Icml_Test - Testing WC_Retailcrm_Icml.
|
||||
*
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
use datasets\DataInventoriesRetailCrm;
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Inventories_Test - Testing WC_Retailcrm_Inventories.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Orders_Test - Testing WC_Retailcrm_Orders.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Plugin_Test - Testing WC_Retailcrm_Plugin.
|
||||
*
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* PHP version 5.6
|
||||
* PHP version 7.0
|
||||
*
|
||||
* Class WC_Retailcrm_Uploader_Test - Testing WC_Retailcrm_Uploader.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue