Changeset 3211346
- Timestamp:
- 12/21/2024 03:38:35 AM (16 months ago)
- Location:
- payhere-payment-gateway
- Files:
-
- 66 added
- 4 edited
-
tags/2.3.9 (added)
-
tags/2.3.9/LICENSE.txt (added)
-
tags/2.3.9/admin (added)
-
tags/2.3.9/admin/class-payhere-custom-admin-settings-type.php (added)
-
tags/2.3.9/admin/class-payhereadmin.php (added)
-
tags/2.3.9/admin/css (added)
-
tags/2.3.9/admin/css/payhere-ipg-admin.css (added)
-
tags/2.3.9/admin/images (added)
-
tags/2.3.9/admin/images/ajax-loader.gif (added)
-
tags/2.3.9/admin/images/cards.png (added)
-
tags/2.3.9/admin/index.php (added)
-
tags/2.3.9/admin/js (added)
-
tags/2.3.9/admin/js/payhere-admin-capture.js (added)
-
tags/2.3.9/admin/js/payhere-ipg-admin-image-selection.js (added)
-
tags/2.3.9/admin/js/payhere-ipg-admin.js (added)
-
tags/2.3.9/admin/partials (added)
-
tags/2.3.9/admin/partials/order-auth-payment.php (added)
-
tags/2.3.9/admin/partials/plugin-payhere-ipg-display.php (added)
-
tags/2.3.9/block (added)
-
tags/2.3.9/block/class-payhere-block-loader.php (added)
-
tags/2.3.9/block/class-payhere-woocommerce-block-checkout.php (added)
-
tags/2.3.9/gateway (added)
-
tags/2.3.9/gateway/class-chargepayment.php (added)
-
tags/2.3.9/gateway/class-gatewayutilities.php (added)
-
tags/2.3.9/gateway/class-payherecapturepayment.php (added)
-
tags/2.3.9/gateway/class-payhereorderutilities.php (added)
-
tags/2.3.9/gateway/class-payheretoken.php (added)
-
tags/2.3.9/gateway/class-subscriptionrestrictions.php (added)
-
tags/2.3.9/gateway/class-wcgatewaypayhere.php (added)
-
tags/2.3.9/includes (added)
-
tags/2.3.9/includes/class-payhere-activator.php (added)
-
tags/2.3.9/includes/class-payhere-deactivator.php (added)
-
tags/2.3.9/includes/class-payhere-i18n.php (added)
-
tags/2.3.9/includes/class-payhere-loader.php (added)
-
tags/2.3.9/includes/class-payhere.php (added)
-
tags/2.3.9/includes/class-phcustomerlistoptions.php (added)
-
tags/2.3.9/includes/class-phcustomerslist.php (added)
-
tags/2.3.9/includes/index.php (added)
-
tags/2.3.9/index.php (added)
-
tags/2.3.9/languages (added)
-
tags/2.3.9/languages/payhere-ipg.pot (added)
-
tags/2.3.9/payhere-payment-gateway.php (added)
-
tags/2.3.9/public (added)
-
tags/2.3.9/public/class-payhere-public.php (added)
-
tags/2.3.9/public/css (added)
-
tags/2.3.9/public/css/payhere-checkout-styles.css (added)
-
tags/2.3.9/public/css/payhere-ipg-public.css (added)
-
tags/2.3.9/public/images (added)
-
tags/2.3.9/public/images/check.svg (added)
-
tags/2.3.9/public/images/helapay.png (added)
-
tags/2.3.9/public/images/master.png (added)
-
tags/2.3.9/public/images/visa.png (added)
-
tags/2.3.9/public/index.php (added)
-
tags/2.3.9/public/js (added)
-
tags/2.3.9/public/js/payhere-block.js (added)
-
tags/2.3.9/public/js/payhere-checkout-auth.js (added)
-
tags/2.3.9/public/js/payhere-checkout-sale.js (added)
-
tags/2.3.9/public/js/payhere-ipg-public.js (added)
-
tags/2.3.9/public/js/payhere-my-account.js (added)
-
tags/2.3.9/public/partials (added)
-
tags/2.3.9/public/partials/checkout-form-auth.php (added)
-
tags/2.3.9/public/partials/checkout-form-sale.php (added)
-
tags/2.3.9/public/partials/payhere-ipg-public-display.php (added)
-
tags/2.3.9/public/partials/remove-card.php (added)
-
tags/2.3.9/readme.txt (added)
-
tags/2.3.9/uninstall.php (added)
-
trunk/admin/class-payhereadmin.php (modified) (1 diff)
-
trunk/admin/partials/order-auth-payment.php (modified) (1 diff)
-
trunk/payhere-payment-gateway.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payhere-payment-gateway/trunk/admin/class-payhereadmin.php
r3209703 r3211346 250 250 * Include capture modal content 251 251 */ 252 public function payhere_order_auth_capture_content( $wc_auth_order) {252 public function payhere_order_auth_capture_content() { 253 253 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/order-auth-payment.php'; 254 254 } -
payhere-payment-gateway/trunk/admin/partials/order-auth-payment.php
r3209703 r3211346 12 12 */ 13 13 14 $_order_id = $wc_auth_order->get_id();15 $_order = wc_get_order($_order_id);14 global $post; 15 $_order = wc_get_order( get_the_ID($post) ); 16 16 $payhere_authorize_token = $_order->get_meta('payhere_auth_token', true) ? $_order->get_meta('payhere_auth_token', true) : ''; 17 17 $payhere_authorize_amount = $_order->get_meta('payhere_auth_amount', true) ? $_order->get_meta('payhere_auth_amount', true) : ''; -
payhere-payment-gateway/trunk/payhere-payment-gateway.php
r3209703 r3211346 8 8 * Plugin URI: https://www.payhere.lk 9 9 * Description: PayHere Payment Gateway allows you to accept payment on your Woocommerce store via Visa, MasterCard, AMEX, eZcash, mCash & Internet banking services. 10 * Version: 2.3. 810 * Version: 2.3.9 11 11 * Author: PayHere (Private) Limited 12 12 * Author URI: https://www.payhere.lk … … 26 26 * Start at version 2.0.0 and use SemVer - https://semver.org 27 27 */ 28 define('PAYHERE_VERSION', '2.3. 8');28 define('PAYHERE_VERSION', '2.3.9'); 29 29 /** 30 30 * Currently plugin text domain. -
payhere-payment-gateway/trunk/readme.txt
r3209703 r3211346 6 6 Tested up to: 6.7.1 7 7 WC tested up to: 9.5.1 8 Stable tag: 2.3. 88 Stable tag: 2.3.9 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 172 172 = 2.3.8 = 173 173 Support for PayHere gateway discounts has been enabled to display in WooCommerce Orders. 174 175 = 2.3.9 = 176 Bug fixes & improvements. 174 177 175 178 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.