Version Notes
initial release
Download this release
Release Info
Developer | WirecardCEE |
Extension | wirecard_checkout_page |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- app/code/community/Wirecard/CheckoutPage/Helper/Data.php +1 -1
- app/code/community/Wirecard/CheckoutPage/Model/Abstract.php +1 -1
- app/code/community/Wirecard/CheckoutPage/Model/Autoloader.php +6 -2
- app/code/community/Wirecard/CheckoutPage/etc/config.xml +1 -1
- app/code/local/Wirecard/QPay/Module.php +2 -2
- app/code/local/Wirecard/Stdlib/Module.php +1 -1
- app/locale/de_AT/Wirecard_CheckoutPage.csv +1 -29
- app/locale/de_DE/Wirecard_CheckoutPage.csv +1 -29
- app/locale/en_US/Wirecard_CheckoutPage.csv +1 -30
- package.xml +3 -3
app/code/community/Wirecard/CheckoutPage/Helper/Data.php
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
class Wirecard_CheckoutPage_Helper_Data extends Mage_Payment_Helper_Data
|
34 |
{
|
35 |
|
36 |
-
protected $_pluginVersion = '4.0.
|
37 |
protected $_pluginName = 'Wirecard/CheckoutPage';
|
38 |
|
39 |
/**
|
33 |
class Wirecard_CheckoutPage_Helper_Data extends Mage_Payment_Helper_Data
|
34 |
{
|
35 |
|
36 |
+
protected $_pluginVersion = '4.0.1';
|
37 |
protected $_pluginName = 'Wirecard/CheckoutPage';
|
38 |
|
39 |
/**
|
app/code/community/Wirecard/CheckoutPage/Model/Abstract.php
CHANGED
@@ -53,7 +53,7 @@ abstract class Wirecard_CheckoutPage_Model_Abstract extends Mage_Payment_Model_M
|
|
53 |
protected $_defaultLocale = 'en';
|
54 |
|
55 |
protected $_order;
|
56 |
-
protected $_pluginVersion = '4.0.
|
57 |
protected $_pluginName = 'Wirecard/CheckoutPage';
|
58 |
|
59 |
protected $_formBlockType = 'wirecard_checkoutpage/form';
|
53 |
protected $_defaultLocale = 'en';
|
54 |
|
55 |
protected $_order;
|
56 |
+
protected $_pluginVersion = '4.0.1';
|
57 |
protected $_pluginName = 'Wirecard/CheckoutPage';
|
58 |
|
59 |
protected $_formBlockType = 'wirecard_checkoutpage/form';
|
app/code/community/Wirecard/CheckoutPage/Model/Autoloader.php
CHANGED
@@ -49,8 +49,12 @@ class Wirecard_CheckoutPage_Model_Autoloader extends Mage_Core_Model_Observer
|
|
49 |
{
|
50 |
// rewrite class filename, avoid conflicts with installed old plugin, which resides under WirecardCEE
|
51 |
if (preg_match('/^WirecardCEE_/', $class)) {
|
52 |
-
$
|
53 |
-
|
|
|
|
|
|
|
|
|
54 |
include $classFile;
|
55 |
}
|
56 |
}
|
49 |
{
|
50 |
// rewrite class filename, avoid conflicts with installed old plugin, which resides under WirecardCEE
|
51 |
if (preg_match('/^WirecardCEE_/', $class)) {
|
52 |
+
$class = str_replace('WirecardCEE', 'Wirecard', $class);
|
53 |
+
if(defined('COMPILER_INCLUDE_PATH')) {
|
54 |
+
$classFile = COMPILER_INCLUDE_PATH . DIRECTORY_SEPARATOR . $class . '.php';
|
55 |
+
} else {
|
56 |
+
$classFile = str_replace(' ', DIRECTORY_SEPARATOR, ucwords(str_replace('_', ' ', $class))) . '.php';
|
57 |
+
}
|
58 |
include $classFile;
|
59 |
}
|
60 |
}
|
app/code/community/Wirecard/CheckoutPage/etc/config.xml
CHANGED
@@ -34,7 +34,7 @@
|
|
34 |
<config>
|
35 |
<modules>
|
36 |
<wirecard_checkoutpage>
|
37 |
-
<version>4.0.
|
38 |
</wirecard_checkoutpage>
|
39 |
</modules>
|
40 |
<global>
|
34 |
<config>
|
35 |
<modules>
|
36 |
<wirecard_checkoutpage>
|
37 |
+
<version>4.0.1</version>
|
38 |
</wirecard_checkoutpage>
|
39 |
</modules>
|
40 |
<global>
|
app/code/local/Wirecard/QPay/Module.php
CHANGED
@@ -24,7 +24,7 @@ class WirecardCEE_QPay_Module extends WirecardCEE_Stdlib_Module_ModuleAbstract i
|
|
24 |
* @return Array
|
25 |
*/
|
26 |
public static final function getConfig() {
|
27 |
-
return include
|
28 |
}
|
29 |
|
30 |
/**
|
@@ -34,6 +34,6 @@ class WirecardCEE_QPay_Module extends WirecardCEE_Stdlib_Module_ModuleAbstract i
|
|
34 |
* @return Array
|
35 |
*/
|
36 |
public static final function getClientConfig() {
|
37 |
-
return include
|
38 |
}
|
39 |
}
|
24 |
* @return Array
|
25 |
*/
|
26 |
public static final function getConfig() {
|
27 |
+
return include Mage::getBaseDir('code') . '/local/Wirecard/QPay/Config/user.config.php';
|
28 |
}
|
29 |
|
30 |
/**
|
34 |
* @return Array
|
35 |
*/
|
36 |
public static final function getClientConfig() {
|
37 |
+
return include Mage::getBaseDir('code') . '/local/Wirecard/QPay/Config/client.config.php';
|
38 |
}
|
39 |
}
|
app/code/local/Wirecard/Stdlib/Module.php
CHANGED
@@ -24,6 +24,6 @@ class WirecardCEE_Stdlib_Module extends WirecardCEE_Stdlib_Module_ModuleAbstract
|
|
24 |
* @return Array
|
25 |
*/
|
26 |
public static final function getClientConfig() {
|
27 |
-
return include
|
28 |
}
|
29 |
}
|
24 |
* @return Array
|
25 |
*/
|
26 |
public static final function getClientConfig() {
|
27 |
+
return include Mage::getBaseDir('code') . '/local/Wirecard/Stdlib/Config/client.config.php';
|
28 |
}
|
29 |
}
|
app/locale/de_AT/Wirecard_CheckoutPage.csv
CHANGED
@@ -22,32 +22,4 @@
|
|
22 |
"Order has been canceled.","Die Bestellung wurde abgebrochen."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Die Zahlung wurde leider nicht durch den Finanzdienstleister bestätigt."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Ihre Bestellung wird verarbeitet sobald wir die Zahlungsbestätigung Ihrer Bank erhalten haben."
|
25 |
-
"The payment has been successfully completed.","Die Zahlung wurde erfolgreich durchgeführt."
|
26 |
-
"SELECT","Zahlungsmittelauswahl"
|
27 |
-
"BANCONTACT_MISTERCASH","Bancontact/Mister Cash"
|
28 |
-
"CCARD","Kreditkarte / Maestro SecureCode"
|
29 |
-
"CCARD-MOTO","Kreditkarte - Mail Order / Telephone Order"
|
30 |
-
"EKONTO","eKonto"
|
31 |
-
"EPAY_BG","ePay.bg"
|
32 |
-
"EPS","eps Online-Überweisung"
|
33 |
-
"GIROPAY","giropay"
|
34 |
-
"IDL","iDEAL"
|
35 |
-
"INSTALLMENT","Kauf auf Raten"
|
36 |
-
"INVOICEB2B","Kauf auf Rechnung B2B"
|
37 |
-
"INVOICE","Kaudf auf Rechnung"
|
38 |
-
"MONETA","moneta.ru"
|
39 |
-
"MPASS","mpass"
|
40 |
-
"PRZELEWY24',"Przelewy24"
|
41 |
-
"PAYPAL","PayPal"
|
42 |
-
"PBX","paybox"
|
43 |
-
"POLI","POLi"
|
44 |
-
"PSC","paysafecard"
|
45 |
-
"QUICK","@Quick"
|
46 |
-
"SEPA-DD","SEPA Lastschrift"
|
47 |
-
"SKRILLDIRECT","Skrill Direct"
|
48 |
-
"SKRILLWALLET","Skrill Digital Wallet"
|
49 |
-
"SOFORTUEBERWEISUNG","SOFORT Überweisung"
|
50 |
-
"TATRAPAY","TatraPay"
|
51 |
-
"TRUSTLY","Trustly"
|
52 |
-
"TRUSTPAY","TrustPay"
|
53 |
-
"VOUCHER","Gutschein"
|
22 |
"Order has been canceled.","Die Bestellung wurde abgebrochen."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Die Zahlung wurde leider nicht durch den Finanzdienstleister bestätigt."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Ihre Bestellung wird verarbeitet sobald wir die Zahlungsbestätigung Ihrer Bank erhalten haben."
|
25 |
+
"The payment has been successfully completed.","Die Zahlung wurde erfolgreich durchgeführt."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/de_DE/Wirecard_CheckoutPage.csv
CHANGED
@@ -22,32 +22,4 @@
|
|
22 |
"Order has been canceled.","Die Bestellung wurde abgebrochen."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Die Zahlung wurde leider nicht durch den Finanzdienstleister bestätigt."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Ihre Bestellung wird verarbeitet sobald wir die Zahlungsbestätigung Ihrer Bank erhalten haben."
|
25 |
-
"The payment has been successfully completed.","Die Zahlung wurde erfolgreich durchgeführt."
|
26 |
-
"SELECT","Zahlungsmittelauswahl"
|
27 |
-
"BANCONTACT_MISTERCASH","Bancontact/Mister Cash"
|
28 |
-
"CCARD","Kreditkarte / Maestro SecureCode"
|
29 |
-
"CCARD-MOTO","Kreditkarte - Mail Order / Telephone Order"
|
30 |
-
"EKONTO","eKonto"
|
31 |
-
"EPAY_BG","ePay.bg"
|
32 |
-
"EPS","eps Online-Überweisung"
|
33 |
-
"GIROPAY","giropay"
|
34 |
-
"IDL","iDEAL"
|
35 |
-
"INSTALLMENT","Kauf auf Raten"
|
36 |
-
"INVOICEB2B","Kauf auf Rechnung B2B"
|
37 |
-
"INVOICE","Kauf auf Rechnung"
|
38 |
-
"MONETA","moneta.ru"
|
39 |
-
"MPASS","mpass"
|
40 |
-
"PRZELEWY24',"Przelewy24"
|
41 |
-
"PAYPAL","PayPal"
|
42 |
-
"PBX","paybox"
|
43 |
-
"POLI","POLi"
|
44 |
-
"PSC","paysafecard"
|
45 |
-
"QUICK","@Quick"
|
46 |
-
"SEPA-DD","SEPA Lastschrift"
|
47 |
-
"SKRILLDIRECT","Skrill Direct"
|
48 |
-
"SKRILLWALLET","Skrill Digital Wallet"
|
49 |
-
"SOFORTUEBERWEISUNG","SOFORT Überweisung"
|
50 |
-
"TATRAPAY","TatraPay"
|
51 |
-
"TRUSTLY","Trustly"
|
52 |
-
"TRUSTPAY","TrustPay"
|
53 |
-
"VOUCHER","Mein Gutschein"
|
22 |
"Order has been canceled.","Die Bestellung wurde abgebrochen."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Die Zahlung wurde leider nicht durch den Finanzdienstleister bestätigt."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Ihre Bestellung wird verarbeitet sobald wir die Zahlungsbestätigung Ihrer Bank erhalten haben."
|
25 |
+
"The payment has been successfully completed.","Die Zahlung wurde erfolgreich durchgeführt."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/en_US/Wirecard_CheckoutPage.csv
CHANGED
@@ -22,33 +22,4 @@
|
|
22 |
"Order has been canceled.","Order has been canceled."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Sorry, your payment has not been confirmed by the financial service provider."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Your order will be processed as soon as we receive the payment confirmation from you bank."
|
25 |
-
"The payment has been successfully completed.","The payment has been successfully completed."
|
26 |
-
"SELECT","Select"
|
27 |
-
"BANCONTACT_MISTERCASH","Bancontact/Mister Cash"
|
28 |
-
"CCARD","Credit Card / Maestro SecureCode"
|
29 |
-
"CCARD-MOTO","Credit Card - Mail Order / Telephone Order"
|
30 |
-
"EKONTO","eKonto"
|
31 |
-
"EPAY_BG","ePay.bg"
|
32 |
-
"EPS","eps Online-Überweisung"
|
33 |
-
"GIROPAY","giropay"
|
34 |
-
"IDL","iDEAL"
|
35 |
-
"INSTALLMENT","Installment"
|
36 |
-
"INVOICEB2B","Invoice B2B"
|
37 |
-
"INVOICE","Invoice"
|
38 |
-
"MAESTRO","Maestro Secure Code"
|
39 |
-
"MONETA","moneta.ru"
|
40 |
-
"MPASS","mpass"
|
41 |
-
"PRZELEWY24',"Przelewy24"
|
42 |
-
"PAYPAL","PayPal"
|
43 |
-
"PBX","paybox"
|
44 |
-
"POLI","POLi"
|
45 |
-
"PSC","paysafecard"
|
46 |
-
"QUICK","@Quick"
|
47 |
-
"SEPA-DD","SEPA Direct Debit"
|
48 |
-
"SKRILLDIRECT","Skrill Direct"
|
49 |
-
"SKRILLWALLET","Skrill Digital Wallet"
|
50 |
-
"SOFORTUEBERWEISUNG","SOFORT Banking"
|
51 |
-
"TATRAPAY","TatraPay"
|
52 |
-
"TRUSTLY","Trustly"
|
53 |
-
"TRUSTPAY","TrustPay"
|
54 |
-
"VOUCHER","My Voucher"
|
22 |
"Order has been canceled.","Order has been canceled."
|
23 |
"Sorry, your payment has not been confirmed by the financial service provider.","Sorry, your payment has not been confirmed by the financial service provider."
|
24 |
"Your order will be processed as soon as we receive the payment confirmation from your bank.","Your order will be processed as soon as we receive the payment confirmation from you bank."
|
25 |
+
"The payment has been successfully completed.","The payment has been successfully completed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>wirecard_checkout_page</name>
|
4 |
-
<version>4.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License Version 2 (GPLv2)</license>
|
7 |
<channel>community</channel>
|
@@ -23,8 +23,8 @@ With Wirecard Collecting only a single contract is required for payouts within v
|
|
23 |
Support of recurring payments (subscriptions, one-click checkout).
|
24 |
Our Online Guides provide technical documentation, installation and configuration instructions for the plugin as well as further information on payment methods and additional features: https://guides.wirecard.com/</description>
|
25 |
<notes>initial release</notes>
|
26 |
-
<authors><author><name>WirecardCEE</name><user>
|
27 |
-
<date>2016-
|
28 |
<time>10:00:00</time>
|
29 |
<contents></contents>
|
30 |
<compatible/>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>wirecard_checkout_page</name>
|
4 |
+
<version>4.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License Version 2 (GPLv2)</license>
|
7 |
<channel>community</channel>
|
23 |
Support of recurring payments (subscriptions, one-click checkout).
|
24 |
Our Online Guides provide technical documentation, installation and configuration instructions for the plugin as well as further information on payment methods and additional features: https://guides.wirecard.com/</description>
|
25 |
<notes>initial release</notes>
|
26 |
+
<authors><author><name>WirecardCEE</name><user>MAG002460406</user><email>shoplogins@wirecard.com</email></author></authors>
|
27 |
+
<date>2016-02-23</date>
|
28 |
<time>10:00:00</time>
|
29 |
<contents></contents>
|
30 |
<compatible/>
|