Changeset 2298639
- Timestamp:
- 05/05/2020 04:07:19 PM (6 years ago)
- Location:
- paybox-woocommerce-gateway/trunk
- Files:
-
- 3 edited
-
class/wc-paybox-threetime-gateway.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
woocommerce-paybox.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
paybox-woocommerce-gateway/trunk/class/wc-paybox-threetime-gateway.php
r2294678 r2298639 26 26 * @return bool 27 27 */ 28 public function is_available() {29 if (!parent::is_available()) {30 return false;31 }32 $minimal = $this->_config->getAmount();33 if (empty($minimal)) {34 return true;35 }36 $total = WC()->cart->total;37 $minimal = floatval($minimal);38 return $total >= $minimal;39 }40 28 41 29 public function showDetails($order) { … … 98 86 } 99 87 class WC_Paybox_Threetime_GateWay extends WC_Pbx3xGw{ 100 public function is_available() {101 return false;102 }103 88 public function receipt_page($orderId){ 104 89 return; -
paybox-woocommerce-gateway/trunk/readme.txt
r2294678 r2298639 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.3.2 7 Stable tag: 0.9. 8.97 Stable tag: 0.9.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 69 69 == Changelog == 70 = 0.9.9 = 71 Fix 3 times payment not displayed 72 70 73 = 0.9.8.9 = 71 74 Added storage of the failed payment details -
paybox-woocommerce-gateway/trunk/woocommerce-paybox.php
r2294678 r2298639 3 3 * Plugin Name: WooCommerce Paybox Payment plugin 4 4 * Description: Paybox gateway payment plugins for WooCommerce 5 * Version: 0.9. 8.95 * Version: 0.9.9 6 6 * Author: Paybox Verifone 7 7 * Author URI: http://www.paybox.com … … 29 29 30 30 define('WC_PAYBOX_PLUGIN', 'woocommerce-paybox'); 31 define('WC_PAYBOX_VERSION', '0.9. 8.9');31 define('WC_PAYBOX_VERSION', '0.9.9'); 32 32 define('WC_PAYBOX_KEY_PATH', ABSPATH . '/kek.php'); 33 33
Note: See TracChangeset
for help on using the changeset viewer.