diff --git a/src/mollie/lang/dutch.php b/src/mollie/lang/dutch.php index 4c96f26..5e482d0 100644 --- a/src/mollie/lang/dutch.php +++ b/src/mollie/lang/dutch.php @@ -21,3 +21,5 @@ $_GATEWAYLANG['payWithGiftcard'] = 'Betaal met een cadeaukaart'; $_GATEWAYLANG['payWithGiropay'] = 'Betaal met Giropay'; $_GATEWAYLANG['payWithInghomepay'] = 'Betaal met ING Home\'Pay'; $_GATEWAYLANG['payWithKbc'] = 'Betaal met KBC/CBC-betaalknop'; +$_GATEWAYLANG['payWithPrzelewy24'] = 'Betaal met Przelewy24'; +$_GATEWAYLANG['payWithApplepay'] = 'Betaal met Apple Pay'; \ No newline at end of file diff --git a/src/mollie/lang/english.php b/src/mollie/lang/english.php index 1d098e7..24295f4 100644 --- a/src/mollie/lang/english.php +++ b/src/mollie/lang/english.php @@ -21,3 +21,5 @@ $_GATEWAYLANG['payWithGiftcard'] = 'Pay with a gift card'; $_GATEWAYLANG['payWithGiropay'] = 'Pay with Giropay'; $_GATEWAYLANG['payWithInghomepay'] = 'Pay with ING Home\'Pay'; $_GATEWAYLANG['payWithKbc'] = 'Pay with KBC/CBC Payment Button'; +$_GATEWAYLANG['payWithPrzelewy24'] = 'Pay with Przelewy24'; +$_GATEWAYLANG['payWithApplepay'] = 'Pay with Apple Pay'; \ No newline at end of file diff --git a/src/mollieapplepay_devapp.php b/src/mollieapplepay_devapp.php new file mode 100644 index 0000000..391f80b --- /dev/null +++ b/src/mollieapplepay_devapp.php @@ -0,0 +1,22 @@ + array( + 'Type' => 'System', + 'Value' => 'Mollie Apple Pay' + ) + )); + + return $config; +} + +function mollieapplepay_devapp_link($params) +{ + return mollie_link($params, \Mollie\Api\Types\PaymentMethod::APPLEPAY); +}