-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from mollie/11.2.0
#### Changes in release 11.2.0 + Added IN3 Payment Method + Fixed issue related to currencies decimal places + Bugfix address validation of zone and postcode + Removed order total notice when Mollie Payment Fee isn't enabled + Changed PHP version check in update function
- Loading branch information
Showing
47 changed files
with
1,221 additions
and
495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
include_once(DIR_APPLICATION . "controller/payment/mollie_in3.php"); | ||
class ControllerExtensionPaymentMollieIN3 extends ControllerPaymentMollieIN3{} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
require_once(DIR_APPLICATION . "controller/payment/mollie/base.php"); | ||
|
||
class ControllerPaymentMollieIN3 extends ControllerPaymentMollieBase | ||
{ | ||
const MODULE_NAME = MollieHelper::MODULE_NAME_IN3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
include(__DIR__."/../../payment/mollie_in3.php"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
require(dirname(__FILE__) . "/mollie.php"); | ||
|
||
$_['heading_title'] .= " – " . $_['name_mollie_in3']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
include(__DIR__."/../../payment/mollie_in3.php"); |
Oops, something went wrong.