Changeset 2257349
- Timestamp:
- 03/09/2020 11:03:30 AM (5 years ago)
- Location:
- e-transactions-wc/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
e-transactions-wc/trunk/class/wc-etransactions-standard-gateway.php
r2240388 r2257349 1 1 <?php 2 2 3 class WC_E transactions_Standard_Gatewayextends WC_Etransactions_Abstract_Gateway {3 class WC_EStdGw extends WC_Etransactions_Abstract_Gateway { 4 4 protected $defaultTitle = 'E-Transactions payment'; 5 5 protected $defaultDesc = 'xxxx'; -
e-transactions-wc/trunk/class/wc-etransactions-threetime-gateway.php
r2240388 r2257349 1 1 <?php 2 2 3 class WC_E transactions_Threetime_Gatewayextends WC_Etransactions_Abstract_Gateway {3 class WC_E3Gw extends WC_Etransactions_Abstract_Gateway { 4 4 protected $defaultTitle = 'E-Transactions 3 times payment'; 5 5 protected $defaultDesc = 'xxxx'; -
e-transactions-wc/trunk/readme.txt
r2248284 r2257349 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.3.2 7 Stable tag: 0.9.8. 87 Stable tag: 0.9.8.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.8.9 = 71 shortening long api names for plugin 72 70 73 = 0.9.8.8 = 71 74 fixing Woocommerce active detection mechanism -
e-transactions-wc/trunk/wc-etransactions.php
r2248284 r2257349 3 3 * Plugin Name: E-Transactions 4 4 * Description: E-Transactions gateway payment plugins for WooCommerce 5 * Version: 0.9.8. 85 * Version: 0.9.8.9 6 6 * Author: E-Transactions 7 7 * Author URI: http://www.e-transactions.fr … … 99 99 100 100 function wc_etransactions_register(array $methods) { 101 $methods[] = 'WC_E transactions_Standard_Gateway';102 $methods[] = 'WC_E transactions_Threetime_Gateway';101 $methods[] = 'WC_EStdGw'; 102 $methods[] = 'WC_E3Gw'; 103 103 return $methods; 104 104 } … … 112 112 switch ($method) { 113 113 case 'etransactions_std': 114 $method = new WC_E transactions_Standard_Gateway();114 $method = new WC_EStdGw(); 115 115 $method->showDetails($order); 116 116 break; 117 117 case 'etransactions_3x': 118 $method = new WC_E transactions_Threetime_Gateway();118 $method = new WC_E3Gw(); 119 119 $method->showDetails($order); 120 120 break; … … 127 127 128 128 if(wooCommerceActiveETwp()){ 129 $temp = new WC_E transactions_Standard_Gateway();129 $temp = new WC_EStdGw(); 130 130 $plugin_data = get_plugin_data( __FILE__ ); 131 131 $plugin_name = $plugin_data['Name'];
Note: See TracChangeset
for help on using the changeset viewer.