Changeset 3033043
- Timestamp:
- 02/08/2024 09:02:28 AM (2 years ago)
- Location:
- bob-pay
- Files:
-
- 14 edited
- 1 copied
-
tags/1.0.14 (copied) (copied from bob-pay/trunk)
-
tags/1.0.14/bobpay-plugin.php (modified) (2 diffs)
-
tags/1.0.14/includes/abstract-payment-method.php (modified) (1 diff)
-
tags/1.0.14/includes/class-wc-bobpay-plugin-capitec-pay.php (modified) (2 diffs)
-
tags/1.0.14/includes/class-wc-bobpay-plugin-credit-card.php (modified) (2 diffs)
-
tags/1.0.14/includes/class-wc-bobpay-plugin-instant-eft.php (modified) (2 diffs)
-
tags/1.0.14/includes/class-wc-bobpay-plugin-scan-to-pay.php (modified) (2 diffs)
-
tags/1.0.14/readme.txt (modified) (2 diffs)
-
trunk/bobpay-plugin.php (modified) (2 diffs)
-
trunk/includes/abstract-payment-method.php (modified) (1 diff)
-
trunk/includes/class-wc-bobpay-plugin-capitec-pay.php (modified) (2 diffs)
-
trunk/includes/class-wc-bobpay-plugin-credit-card.php (modified) (2 diffs)
-
trunk/includes/class-wc-bobpay-plugin-instant-eft.php (modified) (2 diffs)
-
trunk/includes/class-wc-bobpay-plugin-scan-to-pay.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bob-pay/tags/1.0.14/bobpay-plugin.php
r3033006 r3033043 8 8 * Requires at least: 5.0 9 9 * Requires PHP: 7.0 10 * Version: 1.0.1 310 * Version: 1.0.14 11 11 * License: GPLv2 or later 12 12 */ … … 17 17 defined('ABSPATH') || exit; 18 18 19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.1 3');19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.14'); 20 20 define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); 21 21 define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); -
bob-pay/tags/1.0.14/includes/abstract-payment-method.php
r3033006 r3033043 560 560 public function setup_constants() 561 561 { 562 if (!defined('BOBPAY_LOCAL_DEV')) { 563 define('BOBPAY_LOCAL_DEV', 'false'); 564 } 565 566 if (!defined('NGROK_TUNNEL_URL')) { 567 define('NGROK_TUNNEL_URL', ''); 568 } 569 562 570 if (defined('BOBPAY_USER_AGENT')) { 563 571 return; -
bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-capitec-pay.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-credit-card.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-instant-eft.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/tags/1.0.14/includes/class-wc-bobpay-plugin-scan-to-pay.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/tags/1.0.14/readme.txt
r3033006 r3033043 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.0.1 37 Stable tag: 1.0.14 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.0.14 = 53 Bug fix 54 52 55 = 1.0.13 = 53 56 Bug fix -
bob-pay/trunk/bobpay-plugin.php
r3033006 r3033043 8 8 * Requires at least: 5.0 9 9 * Requires PHP: 7.0 10 * Version: 1.0.1 310 * Version: 1.0.14 11 11 * License: GPLv2 or later 12 12 */ … … 17 17 defined('ABSPATH') || exit; 18 18 19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.1 3');19 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.14'); 20 20 define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); 21 21 define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); -
bob-pay/trunk/includes/abstract-payment-method.php
r3033006 r3033043 560 560 public function setup_constants() 561 561 { 562 if (!defined('BOBPAY_LOCAL_DEV')) { 563 define('BOBPAY_LOCAL_DEV', 'false'); 564 } 565 566 if (!defined('NGROK_TUNNEL_URL')) { 567 define('NGROK_TUNNEL_URL', ''); 568 } 569 562 570 if (defined('BOBPAY_USER_AGENT')) { 563 571 return; -
bob-pay/trunk/includes/class-wc-bobpay-plugin-capitec-pay.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/trunk/includes/class-wc-bobpay-plugin-credit-card.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/trunk/includes/class-wc-bobpay-plugin-instant-eft.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/trunk/includes/class-wc-bobpay-plugin-scan-to-pay.php
r3033006 r3033043 26 26 { 27 27 parent::init_form_fields(); 28 $this->form_fields = [29 ...[28 $this->form_fields = array_merge( 29 [ 30 30 'title' => array( 31 31 'title' => __('Title', 'bob-pay'), … … 36 36 ) 37 37 ], 38 ...$this->form_fields39 ];38 $this->form_fields 39 ); 40 40 } 41 41 -
bob-pay/trunk/readme.txt
r3033006 r3033043 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.0.1 37 Stable tag: 1.0.14 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.0.14 = 53 Bug fix 54 52 55 = 1.0.13 = 53 56 Bug fix
Note: See TracChangeset
for help on using the changeset viewer.