Changeset 3460559
- Timestamp:
- 02/13/2026 07:51:50 AM (5 days ago)
- Location:
- knit-pay-pro/trunk
- Files:
-
- 2 edited
-
knit-pay-pro.php (modified) (8 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
knit-pay-pro/trunk/knit-pay-pro.php
r3446459 r3460559 5 5 * Description: Add support of many Knit Pay Premium addons on Pay as you go basis. 6 6 * 7 * Version: 1.5. 6.17 * Version: 1.5.7.0 8 8 * Requires at least: 6.2 9 9 * Requires PHP: 8.1 … … 21 21 * @license GPL-3.0-or-later 22 22 * @package KnitPay 23 * @copyright 2020-202 4Knit Pay23 * @copyright 2020-2026 Knit Pay 24 24 */ 25 25 … … 312 312 $gateways[] = new \KnitPay\Gateways\MercadoPago\Integration(); 313 313 314 if ( version_compare( KNITPAY_VERSION, '8.91', '>' ) ) { 315 $gateways[] = new \KnitPay\Gateways\SumUp\Integration(); 316 } 317 318 if ( version_compare( KNITPAY_VERSION, '8.93', '>' ) ) { 319 $gateways[] = new \KnitPay\Gateways\HdfcSmartGateway\Integration(); 320 } 314 $gateways[] = new \KnitPay\Gateways\SumUp\Integration(); 315 316 $gateways[] = new \KnitPay\Gateways\HdfcSmartGateway\Integration(); 321 317 322 318 if ( version_compare( KNITPAY_VERSION, '8.94.1', '>' ) ) { … … 346 342 'order_id' => '{transaction_id}', 347 343 ], 348 'omnipay_transaction_id_callback' => function ( $response, $transaction_data ) {344 'omnipay_transaction_id_callback' => function ( $response, $transaction_data ) { 349 345 return $transaction_data['transactionId']; 350 346 }, … … 369 365 'checkoutUrl' => '{payment_pay_redirect_url}', 370 366 ], 371 'omnipay_transaction_id_callback' => function ( $response ) {367 'omnipay_transaction_id_callback' => function ( $response ) { 372 368 return $response->getData()['data']['id']; 373 369 }, 374 'iframe_output_form' => function ( $payment, $config ) {370 'iframe_output_form' => function ( $payment, $config ) { 375 371 $script = "<script src='https://cdn.paddle.com/paddle/v2/paddle.js'></script>" . 376 372 "<script type='text/javascript'>" . … … 410 406 $integrations[] = new \KnitPay\Extensions\BooklyPro\Extension(); 411 407 $integrations[] = new \KnitPay\Extensions\EventsManagerPro\Extension(); 408 $integrations[] = new \KnitPay\Extensions\FluentForms\Extension(); 412 409 $integrations[] = new \Pronamic\WordPress\Pay\Extensions\FormidableForms\Extension(); 413 410 $integrations[] = new \Pronamic\WordPress\Pay\Extensions\GravityForms\Extension(); … … 426 423 $integrations[] = new \KnitPay\Extensions\WPForms\Extension(); 427 424 428 if ( version_compare( KNITPAY_VERSION, '8.92', '>' ) ) { 429 $integrations[] = new \KnitPay\Extensions\FluentForms\Extension(); 430 } 431 432 if (version_compare( KNITPAY_VERSION, '9.0', '>' ) ){ 425 if ( version_compare( KNITPAY_VERSION, '9.0', '>' ) ) { 433 426 $integrations[] = new \Pronamic\WordPress\Pay\Extensions\RestrictContent\Extension(); 434 427 } else { … … 436 429 } 437 430 431 if ( version_compare( KNITPAY_VERSION, '9.1', '>' ) ) { 432 $integrations['ba-book-everything'] = new \KnitPay\Extensions\BaBookEverything\Extension(); 433 } 434 438 435 return $integrations; 439 436 } -
knit-pay-pro/trunk/readme.txt
r3446459 r3460559 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.1 7 Stable tag: 1.5. 6.17 Stable tag: 1.5.7.0 8 8 License: GPL-3.0-or-later 9 9 … … 31 31 * Flutterwave/Rave 32 32 * Fygaro 33 * GoUrl34 33 * HDFC Smart Gateway 35 34 * ICICI Eazypay Payment Gateway … … 77 76 78 77 * AWP Classifieds Plugin (AWPCP) 78 * BA Book Everything 79 79 * BookingPress 80 80 * Bookly Pro
Note: See TracChangeset
for help on using the changeset viewer.