Changeset 3095040
- Timestamp:
- 05/30/2024 09:03:59 AM (22 months ago)
- Location:
- monei
- Files:
-
- 6 edited
- 1 copied
-
tags/5.8.11 (copied) (copied from monei/trunk)
-
tags/5.8.11/class-woocommerce-gateway-monei.php (modified) (2 diffs)
-
tags/5.8.11/readme.txt (modified) (2 diffs)
-
tags/5.8.11/woocommerce-gateway-monei.php (modified) (3 diffs)
-
trunk/class-woocommerce-gateway-monei.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-gateway-monei.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
monei/tags/5.8.11/class-woocommerce-gateway-monei.php
r3093323 r3095040 6 6 * @category Core 7 7 * @package Woocommerce_Gateway_Monei 8 * @version 5.8.1 08 * @version 5.8.11 9 9 */ 10 10 if ( ! class_exists( 'Woocommerce_Gateway_Monei' ) ) : … … 17 17 * @var string 18 18 */ 19 public $version = '5.8.1 0';19 public $version = '5.8.11'; 20 20 21 21 /** -
monei/tags/5.8.11/readme.txt
r3093323 r3095040 4 4 Requires at least: 5.0 5 5 Tested up to: 6.5.3 6 Stable tag: 5.8.1 06 Stable tag: 5.8.11 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 103 103 == Changelog == 104 = 5.8.1 0=104 = 5.8.11 = 105 105 * Fix partial refunds 106 106 107 = 5.8.1 0=107 = 5.8.11 = 108 108 * Update dependencies 109 109 -
monei/tags/5.8.11/woocommerce-gateway-monei.php
r3093323 r3095040 3 3 * MONEI Payments for WooCommerce 4 4 * 5 * @package MONEI Payments6 * @author MONEI5 * @package MONEI Payments 6 * @author MONEI 7 7 * @copyright 2020-2020 MONEI 8 * @license GPL-2.0+8 * @license GPL-2.0+ 9 9 * 10 10 * Plugin Name: MONEI Payments for WooCommerce 11 11 * Plugin URI: https://wordpress.org/plugins/monei/ 12 12 * Description: Accept Card, Apple Pay, Google Pay, Bizum, PayPal and many more payment methods in your store. 13 * Version: 5.8.1 013 * Version: 5.8.11 14 14 * Author: MONEI 15 15 * Author URI: https://www.monei.com/ … … 26 26 27 27 // If this file is called directly, abort. 28 if ( ! defined( 'ABSPATH' ) ) {29 exit; // Exit if accessed directly.28 if ( !defined( 'ABSPATH' ) ) { 29 exit; // Exit if accessed directly. 30 30 } 31 31 … … 33 33 define( 'MONEI_PLUGIN_FILE', __FILE__ ); 34 34 35 /** 36 * Add compatibility with WooCommerce HPOS. 37 */ 38 add_action( 'before_woocommerce_init', function () { 39 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 40 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 41 } 42 } ); 43 35 44 require_once 'class-woocommerce-gateway-monei.php'; 36 45 function WC_Monei() { 37 return Woocommerce_Gateway_Monei::instance();46 return Woocommerce_Gateway_Monei::instance(); 38 47 } 39 48 -
monei/trunk/class-woocommerce-gateway-monei.php
r3093323 r3095040 6 6 * @category Core 7 7 * @package Woocommerce_Gateway_Monei 8 * @version 5.8.1 08 * @version 5.8.11 9 9 */ 10 10 if ( ! class_exists( 'Woocommerce_Gateway_Monei' ) ) : … … 17 17 * @var string 18 18 */ 19 public $version = '5.8.1 0';19 public $version = '5.8.11'; 20 20 21 21 /** -
monei/trunk/readme.txt
r3093323 r3095040 4 4 Requires at least: 5.0 5 5 Tested up to: 6.5.3 6 Stable tag: 5.8.1 06 Stable tag: 5.8.11 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 103 103 == Changelog == 104 = 5.8.1 0=104 = 5.8.11 = 105 105 * Fix partial refunds 106 106 107 = 5.8.1 0=107 = 5.8.11 = 108 108 * Update dependencies 109 109 -
monei/trunk/woocommerce-gateway-monei.php
r3093323 r3095040 3 3 * MONEI Payments for WooCommerce 4 4 * 5 * @package MONEI Payments6 * @author MONEI5 * @package MONEI Payments 6 * @author MONEI 7 7 * @copyright 2020-2020 MONEI 8 * @license GPL-2.0+8 * @license GPL-2.0+ 9 9 * 10 10 * Plugin Name: MONEI Payments for WooCommerce 11 11 * Plugin URI: https://wordpress.org/plugins/monei/ 12 12 * Description: Accept Card, Apple Pay, Google Pay, Bizum, PayPal and many more payment methods in your store. 13 * Version: 5.8.1 013 * Version: 5.8.11 14 14 * Author: MONEI 15 15 * Author URI: https://www.monei.com/ … … 26 26 27 27 // If this file is called directly, abort. 28 if ( ! defined( 'ABSPATH' ) ) {29 exit; // Exit if accessed directly.28 if ( !defined( 'ABSPATH' ) ) { 29 exit; // Exit if accessed directly. 30 30 } 31 31 … … 33 33 define( 'MONEI_PLUGIN_FILE', __FILE__ ); 34 34 35 /** 36 * Add compatibility with WooCommerce HPOS. 37 */ 38 add_action( 'before_woocommerce_init', function () { 39 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 40 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 41 } 42 } ); 43 35 44 require_once 'class-woocommerce-gateway-monei.php'; 36 45 function WC_Monei() { 37 return Woocommerce_Gateway_Monei::instance();46 return Woocommerce_Gateway_Monei::instance(); 38 47 } 39 48
Note: See TracChangeset
for help on using the changeset viewer.