From f2223df88541886551fb9b16291c2714774dd4aa Mon Sep 17 00:00:00 2001 From: carmenmaymo Date: Fri, 26 Apr 2024 10:53:57 +0200 Subject: [PATCH] Add alma payment method --- src/PaymentMethods/Alma.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/PaymentMethods/Alma.php diff --git a/src/PaymentMethods/Alma.php b/src/PaymentMethods/Alma.php new file mode 100644 index 00000000..87a9839b --- /dev/null +++ b/src/PaymentMethods/Alma.php @@ -0,0 +1,32 @@ + 'alma', + 'defaultTitle' => __('Alma', 'mollie-payments-for-woocommerce'), + 'settingsDescription' => '', + 'defaultDescription' => '', + 'paymentFields' => false, + 'instructions' => false, + 'supports' => [ + 'products', + 'refunds', + ], + 'filtersOnBuild' => false, + 'confirmationDelayed' => false, + 'SEPA' => false, + ]; + } + + public function getFormFields($generalFormFields): array + { + return $generalFormFields; + } +}