-
Notifications
You must be signed in to change notification settings - Fork 7
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 #2 from IvoWams/WEB-146
WEB-146 Added Creditclick, Tikkie and Przelewy24
- Loading branch information
Showing
17 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
upload/admin/controller/extension/payment/paynl_creditclick.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,13 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlCreditclick extends Pay_Controller_Admin | ||
{ | ||
protected $_paymentOptionId = 2107; | ||
protected $_paymentMethodName = 'paynl_creditclick'; | ||
|
||
protected $_defaultLabel = 'CreditClick'; | ||
} |
13 changes: 13 additions & 0 deletions
13
upload/admin/controller/extension/payment/paynl_przelewy24.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,13 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlPrzelewy24 extends Pay_Controller_Admin | ||
{ | ||
protected $_paymentOptionId = 2151; | ||
protected $_paymentMethodName = 'paynl_przelewy24'; | ||
|
||
protected $_defaultLabel = 'Przelewy 24'; | ||
} |
13 changes: 13 additions & 0 deletions
13
upload/admin/controller/extension/payment/paynl_tikkie.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,13 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlTikkie extends Pay_Controller_Admin | ||
{ | ||
protected $_paymentOptionId = 2104; | ||
protected $_paymentMethodName = 'paynl_tikkie'; | ||
|
||
protected $_defaultLabel = 'Tikkie'; | ||
} |
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
4 changes: 4 additions & 0 deletions
4
upload/admin/language/en-gb/extension/payment/paynl_creditclick.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 | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - CreditClick'; |
4 changes: 4 additions & 0 deletions
4
upload/admin/language/en-gb/extension/payment/paynl_przelewy24.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 | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - Przelewy 24'; |
4 changes: 4 additions & 0 deletions
4
upload/admin/language/en-gb/extension/payment/paynl_tikkie.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 | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - Tikkie'; |
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
4 changes: 4 additions & 0 deletions
4
upload/admin/language/nl-nl/extension/payment/paynl_creditclick.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 | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - CreditClick'; |
4 changes: 4 additions & 0 deletions
4
upload/admin/language/nl-nl/extension/payment/paynl_przelewy24.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 | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - Przelewy24'; |
5 changes: 5 additions & 0 deletions
5
upload/admin/language/nl-nl/extension/payment/paynl_tikkie.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,5 @@ | ||
<?php | ||
include 'paynl3.php'; | ||
// Heading | ||
$_['heading_title'] = 'Pay.nl - Tikkie'; | ||
$_['text_extension'] = 'Pay.nl'; |
11 changes: 11 additions & 0 deletions
11
upload/catalog/controller/extension/payment/paynl_creditclick.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,11 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlCreditclick extends Pay_Controller_Payment | ||
{ | ||
protected $_paymentOptionId = 2107; | ||
protected $_paymentMethodName = 'paynl_creditclick'; | ||
} |
11 changes: 11 additions & 0 deletions
11
upload/catalog/controller/extension/payment/paynl_przelewy24.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,11 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlPrzelewy24 extends Pay_Controller_Payment | ||
{ | ||
protected $_paymentOptionId = 2151; | ||
protected $_paymentMethodName = 'paynl_przelewy24'; | ||
} |
11 changes: 11 additions & 0 deletions
11
upload/catalog/controller/extension/payment/paynl_tikkie.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,11 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ControllerExtensionPaymentPaynlTikkie extends Pay_Controller_Payment | ||
{ | ||
protected $_paymentOptionId = 2104; | ||
protected $_paymentMethodName = 'paynl_tikkie'; | ||
} |
11 changes: 11 additions & 0 deletions
11
upload/catalog/model/extension/payment/paynl_creditclick.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,11 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ModelExtensionPaymentPaynlCreditclick extends Pay_Model | ||
{ | ||
protected $_paymentOptionId = 2107; | ||
protected $_paymentMethodName = 'paynl_creditclick'; | ||
} |
11 changes: 11 additions & 0 deletions
11
upload/catalog/model/extension/payment/paynl_przelewy24.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,11 @@ | ||
<?php | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ModelExtensionPaymentPaynlPrzelewy24 extends Pay_Model | ||
{ | ||
protected $_paymentOptionId = 2151; | ||
protected $_paymentMethodName = 'paynl_przelewy24'; | ||
} |
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 | ||
$dir = dirname(dirname(dirname(dirname(dirname(__FILE__))))); | ||
$autoload = $dir . '/Pay/Autoload.php'; | ||
|
||
require_once $autoload; | ||
|
||
class ModelExtensionPaymentPaynlTikkie extends Pay_Model | ||
{ | ||
protected $_paymentOptionId = 2104; | ||
protected $_paymentMethodName = 'paynl_tikkie'; | ||
} |