← All changes
|
app/Modules/PaymentMethods/PromoGateways/Pro/AuthorizeNetPromo.php
+3
-2
1.3.19
→
1.6.5
View file →
| @@ -1,8 +1,9 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace FluentCart\App\Modules\PaymentMethods\PromoGateways\Pro; |
| 4 | 4 | |
| 5 | +use FluentCart\App\Helpers\Helper; | |
| 5 | 6 | use FluentCart\App\Modules\PaymentMethods\Core\AbstractPaymentGateway; |
| 6 | 7 | use FluentCart\App\Services\Payments\PaymentInstance; |
| 7 | 8 | use FluentCart\App\Vite; |
| 8 | 9 | |
| @@ -27,9 +28,9 @@ | ||
| 27 | 28 | return [ |
| 28 | 29 | 'title' => 'Authorize.Net', |
| 29 | 30 | 'route' => 'authorize_dot_net', |
| 30 | 31 | 'slug' => 'authorize_dot_net', |
| 31 | - 'description' => 'Pay securely with Authorize.Net - Credit and Debit Cards', | |
| 32 | + 'description' => __('Pay securely with Authorize.Net - Credit and Debit Cards', 'fluent-cart'), | |
| 32 | 33 | 'logo' => Vite::getAssetUrl("images/payment-methods/authorize_dot_net-logo.svg"), |
| 33 | 34 | 'icon' => Vite::getAssetUrl("images/payment-methods/authorize_dot_net-logo.svg"), |
| 34 | 35 | 'brand_color' => '#0066cc', |
| 35 | 36 | 'status' => false, |
| @@ -67,9 +68,9 @@ | ||
| 67 | 68 | __('Automatic payment confirmation', 'fluent-cart'), |
| 68 | 69 | __('Refund management & webhooks', 'fluent-cart') |
| 69 | 70 | ], |
| 70 | 71 | 'icon_path' => 'M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z', |
| 71 | - 'upgrade_url' => 'https://fluentcart.com/pricing/' | |
| 72 | + 'upgrade_url' => Helper::getUpgradeUrl('feature_lock_gateway_authorize_dot_net') | |
| 72 | 73 | ]; |
| 73 | 74 | } |
| 74 | 75 | |
| 75 | 76 | |