← All changes
|
app/Modules/PaymentMethods/PromoGateways/Pro/MolliePromo.php
+3
-2
1.5.2
→
1.6.6
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 | |
| @@ -21,15 +22,15 @@ | ||
| 21 | 22 | return [ |
| 22 | 23 | 'title' => 'Mollie', |
| 23 | 24 | 'route' => 'mollie', |
| 24 | 25 | 'slug' => 'mollie', |
| 25 | - 'description' => 'Pay securely with Mollie - Credit Card, PayPal, SEPA, and more.', | |
| 26 | + 'description' => __('Pay securely with Mollie - Credit Card, PayPal, SEPA, and more.', 'fluent-cart'), | |
| 26 | 27 | 'logo' => Vite::getAssetUrl("images/payment-methods/mollie-logo.svg"), |
| 27 | 28 | 'icon' => Vite::getAssetUrl("images/payment-methods/mollie-icon.svg"), |
| 28 | 29 | 'brand_color' => '#7c3aed', |
| 29 | 30 | 'status' => false, |
| 30 | 31 | 'requires_pro' => true, |
| 31 | - 'upgrade_url' => '', | |
| 32 | + 'upgrade_url' => Helper::getUpgradeUrl('feature_lock_gateway_mollie'), | |
| 32 | 33 | 'supported_features' => $this->supportedFeatures |
| 33 | 34 | ]; |
| 34 | 35 | } |
| 35 | 36 | |