Skip to content

Commit 3e7f150

Browse files
authored
Merge pull request #326 from mollie/13.3.0
13.3.0
2 parents 4b3667b + 0bc66fe commit 3e7f150

File tree

811 files changed

+3560
-2373
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

811 files changed

+3560
-2373
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
include_once(DIR_APPLICATION . "controller/payment/mollie_alma.php");
3+
class ControllerExtensionPaymentMollieAlma extends ControllerPaymentMollieAlma{}
4+
?>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
include_once(DIR_APPLICATION . "controller/payment/mollie_payconiq.php");
3+
class ControllerExtensionPaymentMolliePayconiq extends ControllerPaymentMolliePayconiq{}
4+
?>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
include_once(DIR_APPLICATION . "controller/payment/mollie_riverty.php");
3+
class ControllerExtensionPaymentMollieRiverty extends ControllerPaymentMollieRiverty{}
4+
?>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?php
2+
include_once(DIR_APPLICATION . "controller/payment/mollie_trustly.php");
3+
class ControllerExtensionPaymentMollieTrustly extends ControllerPaymentMollieTrustly{}
4+
?>

Opencart 1.5 - 3.x/admin/controller/payment/mollie/base.php

Lines changed: 219 additions & 200 deletions
Large diffs are not rendered by default.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
require_once(DIR_APPLICATION . "controller/payment/mollie/base.php");
3+
4+
class ControllerPaymentMollieAlma extends ControllerPaymentMollieBase
5+
{
6+
const MODULE_NAME = MollieHelper::MODULE_NAME_ALMA;
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
require_once(DIR_APPLICATION . "controller/payment/mollie/base.php");
3+
4+
class ControllerPaymentMolliePayconiq extends ControllerPaymentMollieBase
5+
{
6+
const MODULE_NAME = MollieHelper::MODULE_NAME_PAYCONIQ;
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
require_once(DIR_APPLICATION . "controller/payment/mollie/base.php");
3+
4+
class ControllerPaymentMollieRiverty extends ControllerPaymentMollieBase
5+
{
6+
const MODULE_NAME = MollieHelper::MODULE_NAME_RIVERTY;
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
require_once(DIR_APPLICATION . "controller/payment/mollie/base.php");
3+
4+
class ControllerPaymentMollieTrustly extends ControllerPaymentMollieBase
5+
{
6+
const MODULE_NAME = MollieHelper::MODULE_NAME_TRUSTLY;
7+
}

0 commit comments

Comments
 (0)