Files
WHMCS-Mollie-Payments/src/molliemistercash.php
qarizma d4050b5e5d Mistercash is Bancontact now
These changes are cosmetically, because Mollie still uses the old name internally.
2017-10-06 20:47:53 +02:00

21 lines
403 B
PHP
Executable File

<?php
require_once __DIR__ . '/mollie/mollie.php';
function molliemistercash_config() {
$config = mollie_config();
$config = array_merge($config, array(
'FriendlyName' => array(
'Type' => 'System',
'Value'=> 'Mollie Bancontact'
)
));
return $config;
}
function molliemistercash_link($params) {
return mollie_link($params, Mollie_API_Object_Method::MISTERCASH);
}