Moved all files to src folder

This commit is contained in:
Wouter van Os
2015-10-17 17:05:24 +02:00
parent c1176bdbff
commit ea1119f91c
30 changed files with 0 additions and 0 deletions

20
src/molliesofort.php Executable file
View File

@@ -0,0 +1,20 @@
<?php
require_once 'mollie/mollie.php';
function molliesofort_config() {
$config = mollie_config();
$config = array_merge($config, array(
'FriendlyName' => array(
'Type' => 'System',
'Value'=> 'Mollie Sofort Banking'
)
));
return $config;
}
function molliesofort_link($params) {
return mollie_link($params, Mollie_API_Object_Method::SOFORT);
}