Changeset 2224331
- Timestamp:
- 01/08/2020 02:25:52 PM (6 years ago)
- Location:
- woocommerce-putler-connector/trunk
- Files:
-
- 4 edited
-
classes/class.putler-connector-woocommerce.php (modified) (2 diffs)
-
classes/class.putler-connector.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
woocommerce-putler-connector.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-putler-connector/trunk/classes/class.putler-connector-woocommerce.php
r2224255 r2224331 28 28 if ( is_admin() ) { 29 29 add_action( 'before_delete_post', array( &$this, 'delete_post' ), 9, 1 ); 30 add_action( 'wp_ajax_wpc_get_plugin_info', array( &$this, 'get_plugin_info' ) ); 31 } 32 33 add_action( 'wp_ajax_nopriv_wpc_get_plugin_info', array( &$this, 'get_plugin_info' ) ); 30 } 34 31 35 32 } … … 1761 1758 return $params; 1762 1759 } 1763 1764 public function get_plugin_info() {1765 1766 $data = array(1767 'wpc_version' => WPC_VERSION,1768 'wc_version' => WOOCOMMERCE_VERSION1769 );1770 1771 die( json_encode( $data ) );1772 }1773 1774 1760 } 1775 1761 } -
woocommerce-putler-connector/trunk/classes/class.putler-connector.php
r2224255 r2224331 85 85 } 86 86 } 87 } 88 89 public function get_plugin_info() { 90 91 $data = array( 92 'wpc_version' => WPC_VERSION, 93 'wc_version' => WOOCOMMERCE_VERSION 94 ); 95 96 die( json_encode( $data ) ); 87 97 } 88 98 -
woocommerce-putler-connector/trunk/readme.txt
r2224255 r2224331 8 8 Tested up to: 5.3.2 9 9 Requires PHP: 5.6+ 10 Stable tag: 2.9.13 10 Stable tag: 2.9.13.1 11 11 License: GPL 3.0 12 12 … … 172 172 == Changelog == 173 173 174 = 2.9.13.1 (08.01.2020) = 175 * Fixed: Important fixes related to Authentication Process 176 174 177 = 2.9.13 (08.01.2020) = 175 178 * Update: Changes in the Authentication Process … … 284 287 == Upgrade Notice == 285 288 289 = 2.9.13.1 = 290 Important fixes related to Authentication Process, recommended upgrade. 291 286 292 = 2.9.13 = 287 293 Updates related to Authentication Process along with some important updates and fixes, recommended upgrade. -
woocommerce-putler-connector/trunk/woocommerce-putler-connector.php
r2224255 r2224331 4 4 * Plugin URI: https://putler.com/connector/woocommerce/ 5 5 * Description: Accurate reports, analytics, integrations, growth insights and tools for your WooCommerce store. 6 * Version: 2.9.13 6 * Version: 2.9.13.1 7 7 * Author: putler, storeapps 8 8 * Author URI: https://putler.com/ … … 18 18 } 19 19 20 define( 'WPC_VERSION', '2.9.1 2' );20 define( 'WPC_VERSION', '2.9.13.1' ); 21 21 22 22 //Hooks
Note: See TracChangeset
for help on using the changeset viewer.