Changeset 3248597
- Timestamp:
- 02/28/2025 04:12:33 PM (12 months ago)
- Location:
- shipping-coordinadora-woocommerce
- Files:
-
- 1 deleted
- 3 edited
- 14 copied
-
tags/3.1.32 (copied) (copied from shipping-coordinadora-woocommerce/trunk)
-
tags/3.1.32/assets/build (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/build)
-
tags/3.1.32/assets/js/config.js (deleted)
-
tags/3.1.32/assets/js/shipping-coordinadora-wc.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/shipping-coordinadora-wc.js)
-
tags/3.1.32/assets/js/sweetalert2-min.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/sweetalert2-min.js)
-
tags/3.1.32/assets/js/view-order.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/view-order.js)
-
tags/3.1.32/includes/admin/settings.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/admin/settings.php)
-
tags/3.1.32/includes/class-method-shipping-coordinadora-collection-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-collection-wc.php)
-
tags/3.1.32/includes/class-method-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-wc.php) (1 diff)
-
tags/3.1.32/includes/class-shipping-coordinadora-wc-admin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-admin.php)
-
tags/3.1.32/includes/class-shipping-coordinadora-wc-plugin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-plugin.php)
-
tags/3.1.32/includes/class-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc.php)
-
tags/3.1.32/lib/coordinadora-webservice-php/src/WebService.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/lib/coordinadora-webservice-php/src/WebService.php)
-
tags/3.1.32/readme.txt (copied) (copied from shipping-coordinadora-woocommerce/trunk/readme.txt) (2 diffs)
-
tags/3.1.32/shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php) (3 diffs)
-
trunk/includes/class-method-shipping-coordinadora-wc.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipping-coordinadora-wc.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipping-coordinadora-woocommerce/tags/3.1.32/includes/class-method-shipping-coordinadora-wc.php
r3246808 r3248597 42 42 $this->password_tracings = $this->get_option( 'sandbox_password_tracings' ); 43 43 $this->nit = $this->get_option( 'sandbox_nit' ); 44 45 $this->id_client = $this->get_option( 'sandbox_id_client' );46 $this->user = $this->get_option( 'sandbox_user' );47 $this->password_guides = $this->get_option('sandbox_password_guides');48 44 }else{ 49 45 $this->apikey = $this->get_option( 'api_key' ); 50 46 $this->password_tracings = $this->get_option( 'password_tracing' ); 51 47 $this->nit = $this->get_option( 'nit' ); 52 53 $this->id_client = $this->get_option( 'id_client' );54 $this->user = $this->get_option( 'user' );55 $this->password_guides = $this->get_option('password_guides');56 48 } 57 49 } -
shipping-coordinadora-woocommerce/tags/3.1.32/readme.txt
r3246808 r3248597 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.1.3 18 Stable tag: 3.1.32 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 117 117 * Fixed empty parent_slug add_submenu_page 118 118 * Fixed no column render in page orders 119 = 3.1.32 = 120 * Added compatibility with HPOS 121 * Refactor unused properties 119 122 120 123 == Additional Info == -
shipping-coordinadora-woocommerce/tags/3.1.32/shipping-coordinadora-wc.php
r3246808 r3248597 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.1.3 15 * Version: 3.1.32 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.3 1');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.32'); 22 22 } 23 23 … … 27 27 28 28 add_action( 'plugins_loaded', 'shipping_coordinadora_wc_cswc_init'); 29 add_action( 30 'before_woocommerce_init', 31 function () { 32 if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) { 33 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__ ); 34 } 35 } 36 ); 29 37 30 38 /** -
shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-wc.php
r3246808 r3248597 42 42 $this->password_tracings = $this->get_option( 'sandbox_password_tracings' ); 43 43 $this->nit = $this->get_option( 'sandbox_nit' ); 44 45 $this->id_client = $this->get_option( 'sandbox_id_client' );46 $this->user = $this->get_option( 'sandbox_user' );47 $this->password_guides = $this->get_option('sandbox_password_guides');48 44 }else{ 49 45 $this->apikey = $this->get_option( 'api_key' ); 50 46 $this->password_tracings = $this->get_option( 'password_tracing' ); 51 47 $this->nit = $this->get_option( 'nit' ); 52 53 $this->id_client = $this->get_option( 'id_client' );54 $this->user = $this->get_option( 'user' );55 $this->password_guides = $this->get_option('password_guides');56 48 } 57 49 } -
shipping-coordinadora-woocommerce/trunk/readme.txt
r3246808 r3248597 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.1.3 18 Stable tag: 3.1.32 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 117 117 * Fixed empty parent_slug add_submenu_page 118 118 * Fixed no column render in page orders 119 = 3.1.32 = 120 * Added compatibility with HPOS 121 * Refactor unused properties 119 122 120 123 == Additional Info == -
shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php
r3246808 r3248597 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.1.3 15 * Version: 3.1.32 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.3 1');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.32'); 22 22 } 23 23 … … 27 27 28 28 add_action( 'plugins_loaded', 'shipping_coordinadora_wc_cswc_init'); 29 add_action( 30 'before_woocommerce_init', 31 function () { 32 if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) { 33 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__ ); 34 } 35 } 36 ); 29 37 30 38 /**
Note: See TracChangeset
for help on using the changeset viewer.