forked from clone/WHMCS-Mollie-Payments
Added support for the Mollie Payments checkout page
This commit is contained in:
@@ -13,7 +13,9 @@ All payment methods from Mollie are supported (which is also supported by their
|
||||
|
||||
Support for new payment methods must be added manually, due to the structure of this gateway. It can therefore take a while before a new payment method is supported. Is it urgent? Contact our paid support or add support for it yourself and contribute it back using a pull request.
|
||||
|
||||
You can use `Mollie Checkout` to use the Mollie Payments checkout pages. In this case it'll use the Mollie Payments checkout screen and show all enabled payment methodes in your Mollie account.
|
||||
|
||||
### Support
|
||||
Support is best-effort through the Github issue tracker. Business support (responsetime within 24 hours, normally less then 1 hour) through our [website](https://0100dev.nl/) against our hourly rate at € 75,- excl. VAT. Please create an account at our website before contacting us.
|
||||
|
||||
[More information through Mollie aobut Mollie Payments](https://www.mollie.com/en/payments)
|
||||
[More information through Mollie about Mollie Payments](https://www.mollie.com/en/payments)
|
||||
|
||||
@@ -22,4 +22,5 @@ $_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';
|
||||
$_GATEWAYLANG['payWithApplepay'] = 'Betaal met Apple Pay';
|
||||
$_GATEWAYLANG['payWith'] = 'Betaal met Mollie';
|
||||
|
||||
@@ -22,4 +22,5 @@ $_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';
|
||||
$_GATEWAYLANG['payWithApplepay'] = 'Pay with Apple Pay';
|
||||
$_GATEWAYLANG['payWith'] = 'Pay with Mollie';
|
||||
|
||||
23
src/molliecheckout_devapp.php
Normal file
23
src/molliecheckout_devapp.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
require_once __DIR__ . '/mollie/mollie.php';
|
||||
|
||||
function molliecheckout_devapp_config()
|
||||
{
|
||||
$config = mollie_config();
|
||||
|
||||
$config = array_merge($config, array(
|
||||
'FriendlyName' => array(
|
||||
'Type' => 'System',
|
||||
'Value' => 'Mollie Checkout'
|
||||
)
|
||||
));
|
||||
|
||||
return $config;
|
||||
}
|
||||
|
||||
function molliecheckout_devapp_link($params)
|
||||
{
|
||||
return mollie_link($params, null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user