Changeset 2698856
- Timestamp:
- 03/24/2022 10:47:56 AM (4 years ago)
- Location:
- authorizenet-payment-gateway-for-woocommerce
- Files:
-
- 11 added
- 3 edited
-
tags/6.6 (added)
-
tags/6.6/images (added)
-
tags/6.6/images/._loader.gif (added)
-
tags/6.6/images/loader.gif (added)
-
tags/6.6/images/logo.gif (added)
-
tags/6.6/images/transaction_icon.svg (added)
-
tags/6.6/index.php (added)
-
tags/6.6/internal (added)
-
tags/6.6/internal/utils.php (added)
-
tags/6.6/readme.txt (added)
-
trunk/images/._loader.gif (added)
-
trunk/index.php (modified) (2 diffs)
-
trunk/internal/utils.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
authorizenet-payment-gateway-for-woocommerce/trunk/index.php
r2665659 r2698856 3 3 Plugin Name: Authorize.net Payment Gateway For WooCommerce 4 4 Description: Extends WooCommerce to Process Payments with Authorize.net gateway. HMAC-SHA512 Compatible version. 5 Version: 6. 4.05 Version: 6.6.0 6 6 Plugin URI: http://www.indatos.com?source=woocomautho 7 7 Author: Eshan Varma … … 9 9 License: Under GPL2 10 10 WC requires at least: 3.0.0 11 WC tested up to: 6. 1.111 WC tested up to: 6.3.1 12 12 */ 13 13 -
authorizenet-payment-gateway-for-woocommerce/trunk/internal/utils.php
r2665659 r2698856 59 59 $data_response = $this->get_recent_transactions(); 60 60 $currency = get_woocommerce_currency_symbol(); 61 $html = '<div class="wrap"><table class="wp-list-table widefat fixed striped table-view-list">'; 61 $html = ''; 62 if( $data_response->messages->message->code == 'I00001' ){ 63 $html .= '<div class="wrap"><table class="wp-list-table widefat fixed striped table-view-list">'; 62 64 $html .= '<thead><tr>'; 63 65 $html .= '<td>Invoice/Order#</td>'; … … 69 71 $html .= '<td>Settlement Amount</td>'; 70 72 $html .= '</tr></thead><tbody>'; 71 if( $data_response->messages->message->code == 'I00001' ){72 73 $transactions = $data_response->transactions->transaction; 73 74 … … 85 86 $html .= '</tbody></table></div><p>Note: It takes 1-2 mins for recent transactions to appear here. If you are using same Authorize.net account with multiple sites or softwares, then order numbers might not match with data on this site for some records, if transaction happend on other platform or website.</p><p>More features coming soon</p>'; 86 87 }else{ 87 echo"Unable to get transaction list. Please check if API details are correct. Error code:".$data_response->messages->message->code;88 $html.= "Unable to get transaction list. Please check if API details are correct. Error code:".$data_response->messages->message->code; 88 89 } 89 90 -
authorizenet-payment-gateway-for-woocommerce/trunk/readme.txt
r2665659 r2698856 5 5 Tags: woocommerce authorize.net, authorize.net, payment gateway, woocommerce, woocommerce payment gateway, credit cards, refunds, capture. authorize.net woocommerce 6 6 Requires at least: 3.0.1 7 Tested up to: 5.9 8 Stable tag: 6. 57 Tested up to: 5.9.2 8 Stable tag: 6.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.