-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #922 from mollie/feature/PIWOO-507-add-trustly
Feature/piwoo 507 add trustly
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Mollie\WooCommerce\PaymentMethods; | ||
|
||
class Trustly extends AbstractPaymentMethod implements PaymentMethodI | ||
{ | ||
protected function getConfig(): array | ||
{ | ||
return [ | ||
'id' => 'trustly', | ||
'defaultTitle' => __('Trustly', 'mollie-payments-for-woocommerce'), | ||
'settingsDescription' => '', | ||
'defaultDescription' => '', | ||
'paymentFields' => false, | ||
'instructions' => true, | ||
'supports' => [ | ||
'products', | ||
'refunds', | ||
], | ||
'filtersOnBuild' => false, | ||
'confirmationDelayed' => true, | ||
'SEPA' => false, | ||
]; | ||
} | ||
|
||
public function getFormFields($generalFormFields): array | ||
{ | ||
return $generalFormFields; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters