forked from clone/WHMCS-Mollie-Payments
21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/mollie/mollie.php';
|
|
|
|
function molliebitcoin_devapp_config() {
|
|
$config = mollie_config();
|
|
|
|
$config = array_merge($config, array(
|
|
'FriendlyName' => array(
|
|
'Type' => 'System',
|
|
'Value'=> 'Mollie Bitcoin'
|
|
)
|
|
));
|
|
|
|
return $config;
|
|
}
|
|
|
|
function molliebitcoin_devapp_link($params) {
|
|
return mollie_link($params, Mollie_API_Object_Method::BITCOIN);
|
|
}
|