-
Notifications
You must be signed in to change notification settings - Fork 6
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 #109 from logeecom/3.5-4.0
Release version 1.0.18
- Loading branch information
Showing
37 changed files
with
797 additions
and
219 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,12 +2,18 @@ | |
"packages": [ | ||
{ | ||
"name": "mollie/integration-core", | ||
"version": "1.3.8", | ||
"version_normalized": "1.3.8.0", | ||
"version": "1.3.9", | ||
"version_normalized": "1.3.9.0", | ||
"source": { | ||
"type": "git", | ||
"url": "[email protected]:mollie/orocore.git", | ||
"reference": "25034947afe94193297e6504cbbc1edc18cd219e" | ||
"reference": "8a07e5e317dfbffeaa552820ee843701a24a8fd5" | ||
}, | ||
"dist": { | ||
"type": "zip", | ||
"url": "https://api.github.com/repos/mollie/orocore/zipball/8a07e5e317dfbffeaa552820ee843701a24a8fd5", | ||
"reference": "8a07e5e317dfbffeaa552820ee843701a24a8fd5", | ||
"shasum": "" | ||
}, | ||
"require": { | ||
"ext-json": "*", | ||
|
@@ -18,7 +24,7 @@ | |
"phpunit/phpunit": "^4.8.35", | ||
"symfony/console": "^5.1" | ||
}, | ||
"time": "2024-04-19T07:26:56+00:00", | ||
"time": "2024-09-16T12:55:55+00:00", | ||
"type": "library", | ||
"installation-source": "source", | ||
"autoload": { | ||
|
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,32 @@ | ||
<?php | ||
|
||
use Mollie\BusinessLogic\PaymentMethod\Model\PaymentMethodConfig; | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_billie | ||
*/ | ||
class mollie_billie extends mollie | ||
{ | ||
public $title = 'Billie'; | ||
|
||
/** | ||
* @inheritDoc | ||
* @return array | ||
*/ | ||
public function keys() | ||
{ | ||
$keys = parent::keys(); | ||
$hidden = ['MODULE_PAYMENT_' . strtoupper($this->code) . '_API_METHOD']; | ||
return array_values(array_diff($keys, $hidden)); | ||
} | ||
|
||
/** | ||
* @return string | ||
*/ | ||
protected function _getDefaultApi() | ||
{ | ||
return PaymentMethodConfig::API_METHOD_ORDERS; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
<?php | ||
|
||
use Mollie\BusinessLogic\PaymentMethod\Model\PaymentMethodConfig; | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_klarna | ||
*/ | ||
class mollie_klarna extends mollie | ||
{ | ||
public $title = 'Klarna'; | ||
|
||
/** | ||
* @inheritDoc | ||
* @return array | ||
*/ | ||
public function keys() | ||
{ | ||
$keys = parent::keys(); | ||
$hidden = ['MODULE_PAYMENT_' . strtoupper($this->code) . '_API_METHOD']; | ||
return array_values(array_diff($keys, $hidden)); | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
protected function _getDefaultApi() | ||
{ | ||
return PaymentMethodConfig::API_METHOD_ORDERS; | ||
} | ||
} |
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,31 @@ | ||
<?php | ||
|
||
use Mollie\BusinessLogic\PaymentMethod\Model\PaymentMethodConfig; | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_riverty | ||
*/ | ||
class mollie_riverty extends mollie | ||
{ | ||
public $title = 'Riverty'; | ||
|
||
/** | ||
* @inheritDoc | ||
* @return array | ||
*/ | ||
public function keys() | ||
{ | ||
$keys = parent::keys(); | ||
$hidden = ['MODULE_PAYMENT_' . strtoupper($this->code) . '_API_METHOD']; | ||
return array_values(array_diff($keys, $hidden)); | ||
} | ||
/** | ||
* @return string | ||
*/ | ||
protected function _getDefaultApi() | ||
{ | ||
return PaymentMethodConfig::API_METHOD_ORDERS; | ||
} | ||
} |
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,11 @@ | ||
<?php | ||
|
||
require_once __DIR__ . '/mollie/mollie.php'; | ||
|
||
/** | ||
* Class mollie_trustly | ||
*/ | ||
class mollie_trustly extends mollie | ||
{ | ||
public $title = 'Trustly'; | ||
} |
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,32 @@ | ||
<?php | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_TEXT_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_TEXT_TITLE', 'Billie'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_TEXT_DESCRIPTION') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_TEXT_DESCRIPTION', 'Nadat je de bestelling hebt gecontroleerd, word je doorgestuurd naar de website van de betalingsprovider om je aankoop af te ronden.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_STATUS_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_STATUS_TITLE', 'Betaalmethode inschakelen'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_STATUS_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_STATUS_DESC', 'Wil je Billie accepteren als betalingen?'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_NAME_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_NAME_TITLE', 'Naam checkout'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_NAME_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_NAME_DESC', 'Geef een naam op die wordt gebruikt bij het afrekenen.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_DESCRIPTION_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_DESCRIPTION_TITLE', 'Omschrijving checkout'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_DESCRIPTION_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_CHECKOUT_DESCRIPTION_DESC', 'Geef een beschrijving op die zal worden gebruikt bij het afrekenen.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_ALLOWED_ZONES_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_ALLOWED_ZONES_TITLE', 'Sta betalingen naar specifieke landen toe'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_ALLOWED_ZONES_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_ALLOWED_ZONES_DESC', 'Selecteer landen waar de betalingsmethode beschikbaar zal zijn. Als je niets selecteerd, is deze betaling beschikbaar voor alle geactiveerde landen.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_API_METHOD_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_API_METHOD_TITLE', 'API-methode'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_API_METHOD_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_API_METHOD_DESC', '<b>Payment API</b><br>Gebruik het Payment API Platform voor de transacties. <a href="https://docs.mollie.com/payments/overview" target="_blank">Lees meer</a>.<br><br><b>Order API</b><br>Gebruik het nieuwe Payment API Platform voor de transacties. <a href="https://docs.mollie.com/orders/why-use-orders" target="_blank">Lees meer</a>.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_LOGO_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_LOGO_TITLE', 'Logo'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_LOGO_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_LOGO_DESC', 'Upload een logo dat zal worden gebruikt bij het afrekenen.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_SORT_ORDER_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_SORT_ORDER_TITLE', 'Sorteer de weergavevolgorde bij de checkout'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_SORT_ORDER_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_SORT_ORDER_DESC', 'De laagste wordt als eerste weergegeven in het checkout-scherm.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_ORDER_EXPIRES_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_ORDER_EXPIRES_TITLE', 'Dagen tot verstrijken'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_ORDER_EXPIRES_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_ORDER_EXPIRES_DESC', 'Hoeveel dagen voordat bestellingen voor deze methode verlopen? Laat leeg om de standaard vervaldatum te gebruiken (28 dagen)<br><br>Let op: het is niet mogelijk om een vervaldatum meer dan 28 dagen in de toekomst te gebruiken, tenzij een ander maximum is overeengekomen tussen de handelaar en Billie.'); | ||
|
||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_TRANSACTION_DESCRIPTION_TITLE') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_TRANSACTION_DESCRIPTION_TITLE', 'Transactiebeschrijving'); | ||
defined('MODULE_PAYMENT_MOLLIE_BILLIE_TRANSACTION_DESCRIPTION_DESC') ?: define('MODULE_PAYMENT_MOLLIE_BILLIE_TRANSACTION_DESCRIPTION_DESC', 'De beschrijving die moet worden gebruikt voor de betalingstransactie. Deze variabelen zijn beschikbaar: {orderNumber}, {storeName}, {customerFirstname}, {customerLastname}, {customerCompany} en {cartNumber}.'); | ||
|
Oops, something went wrong.