Version Notes
This version has the following changes compared to the previous one:
- Added payment method giropay+giropay-ID
- Added payment method Paydirekt
- Added payment method Sofort Überweisung
- Bank selection widget is now pure JS
- Enhanced logos for credit cards
- New eps logo
- Minor corrections and enhancements
Download this release
Release Info
Developer | Oliver Marx |
Extension | GiroCheckout |
Version | 4.0.0.5 |
Comparing to | |
See all releases |
Code changes from version 4.0.0.3 to 4.0.0.5
- app/code/community/Girosolution/Giroconnect/Helper/AbstractPaymentProxy.php +31 -14
- app/code/community/Girosolution/Giroconnect/Helper/DirectdebitPaymentProxy.php +2 -2
- app/code/community/Girosolution/Giroconnect/Helper/GiropayPaymentProxy.php +2 -1
- app/code/community/Girosolution/Giroconnect/Model/Observer.php +2 -0
- app/code/community/Girosolution/Giroconnect/controllers/DirectdebitController.php +1 -1
- app/code/community/Girosolution/Giroconnect/controllers/SofortuwController.php +1 -1
- app/code/community/Girosolution/Giroconnect/etc/config.xml +1 -1
- app/code/community/Girosolution/Giroconnect/etc/system.xml +30 -30
- app/locale/de_DE/Girosolution_Giroconnect.csv +10 -6
- lib/GiroCheckout_SDK/.DS_Store +0 -0
- lib/GiroCheckout_SDK/GiroCheckout_SDK.php +2 -2
- lib/GiroCheckout_SDK/GiroCheckout_SDK_Notify.php +1 -1
- lib/GiroCheckout_SDK/GiroCheckout_SDK_Request.php +1 -1
- lib/GiroCheckout_SDK/api/.DS_Store +0 -0
- lib/GiroCheckout_SDK/api/GiroCheckout_SDK_AbstractApi.php +1 -1
- lib/GiroCheckout_SDK/api/GiroCheckout_SDK_InterfaceApi.php +1 -1
- lib/GiroCheckout_SDK/api/creditcard/GiroCheckout_SDK_CreditCardRecurringTransaction.php +1 -1
- lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitCapture.php +1 -1
- lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitRefund.php +1 -1
- lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitTransaction.php +1 -1
- lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage.php +1 -1
- lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayBankstatus.php +1 -1
- lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayIDCheck.php +1 -1
- lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayTransaction.php +1 -1
- lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayTransactionWithGiropayID.php +1 -1
- lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealIssuerList.php +1 -1
- lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPayment.php +1 -1
- lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPaymentRefund.php +1 -1
- lib/GiroCheckout_SDK/api/paypal/GiroCheckout_SDK_PaypalTransaction.php +1 -1
- lib/GiroCheckout_SDK/api/tools/GiroCheckout_SDK_Tools_GetTransaction.php +1 -1
- lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_Curl_helper.php +1 -1
- lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_Hash_helper.php +1 -1
- lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_ResponseCode_helper.php +1 -1
- lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_TransactionType_helper.php +1 -1
- lib/GiroCheckout_SDK/log/.DS_Store +0 -0
- package.xml +22 -9
- skin/frontend/base/default/images/giroconnect/Logo_bluecode_50_px.jpg +0 -0
app/code/community/Girosolution/Giroconnect/Helper/AbstractPaymentProxy.php
CHANGED
@@ -107,12 +107,20 @@ class Girosolution_Giroconnect_Helper_AbstractPaymentProxy {
|
|
107 |
$strLastName = "";
|
108 |
$strFirstName = "";
|
109 |
$strShopName = "";
|
|
|
110 |
$orderid = $order->getRealOrderId();
|
111 |
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
$strName = $strFirstName . " " . $strLastName;
|
117 |
$iCustomerNr = $order->getCustomerId();
|
118 |
$strShopName = Mage::app()->getStore()->getName();
|
@@ -129,27 +137,36 @@ class Girosolution_Giroconnect_Helper_AbstractPaymentProxy {
|
|
129 |
|
130 |
public function getShippingOrderInfo($order) {
|
131 |
$aShippingInfo = array();
|
|
|
132 |
|
133 |
$aOrderData = $order->getData();
|
134 |
-
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
$aProducts = array();
|
137 |
foreach( $order->getAllItems() as $item ) {
|
138 |
$aProduct = $item->getData();
|
139 |
$aProducts[] = array( $aProduct['name'], round($aProduct['qty_ordered'],2), round($aProduct['price'],2)*100, $aProduct['sku'] );
|
140 |
}
|
141 |
|
142 |
-
$aShippingInfo['LastName'] = $
|
143 |
-
$aShippingInfo['FirstName'] = $
|
144 |
-
$aShippingInfo['Mail'] = $
|
145 |
$aShippingInfo['Amount'] = round($aOrderData['shipping_amount'], 2);
|
146 |
$aShippingInfo['orderAmount'] = round($aOrderData['subtotal'], 2);
|
147 |
-
$aShippingInfo['Company'] = $
|
148 |
$aShippingInfo['AdditionalAddressInformation'] = '';
|
149 |
-
$aShippingInfo['Street'] = $
|
150 |
-
$aShippingInfo['ZipCode'] = $
|
151 |
-
$aShippingInfo['City'] = $
|
152 |
-
$aShippingInfo['CountryIso'] = $
|
153 |
$aShippingInfo['Products'] = $aProducts;
|
154 |
|
155 |
return $aShippingInfo;
|
107 |
$strLastName = "";
|
108 |
$strFirstName = "";
|
109 |
$strShopName = "";
|
110 |
+
$aAddress = array();
|
111 |
$orderid = $order->getRealOrderId();
|
112 |
|
113 |
+
if( is_object($order->getShippingAddress()) ) {
|
114 |
+
$aAddress = $order->getShippingAddress()->getData();
|
115 |
+
}
|
116 |
+
else {
|
117 |
+
if( is_object($order->getBillingAddress()) ) {
|
118 |
+
$aAddress = $order->getBillingAddress()->getData();
|
119 |
+
}
|
120 |
+
}
|
121 |
+
|
122 |
+
$strLastName = $aAddress['lastname'];
|
123 |
+
$strFirstName = $aAddress['firstname'];
|
124 |
$strName = $strFirstName . " " . $strLastName;
|
125 |
$iCustomerNr = $order->getCustomerId();
|
126 |
$strShopName = Mage::app()->getStore()->getName();
|
137 |
|
138 |
public function getShippingOrderInfo($order) {
|
139 |
$aShippingInfo = array();
|
140 |
+
$aAddress = array();
|
141 |
|
142 |
$aOrderData = $order->getData();
|
143 |
+
|
144 |
+
if( is_object($order->getShippingAddress()) ) {
|
145 |
+
$aAddress = $order->getShippingAddress()->getData();
|
146 |
+
}
|
147 |
+
else {
|
148 |
+
if( is_object($order->getBillingAddress()) ) {
|
149 |
+
$aAddress = $order->getBillingAddress()->getData();
|
150 |
+
}
|
151 |
+
}
|
152 |
+
|
153 |
$aProducts = array();
|
154 |
foreach( $order->getAllItems() as $item ) {
|
155 |
$aProduct = $item->getData();
|
156 |
$aProducts[] = array( $aProduct['name'], round($aProduct['qty_ordered'],2), round($aProduct['price'],2)*100, $aProduct['sku'] );
|
157 |
}
|
158 |
|
159 |
+
$aShippingInfo['LastName'] = $aAddress['lastname'];
|
160 |
+
$aShippingInfo['FirstName'] = $aAddress['firstname'];
|
161 |
+
$aShippingInfo['Mail'] = $aAddress['email'];
|
162 |
$aShippingInfo['Amount'] = round($aOrderData['shipping_amount'], 2);
|
163 |
$aShippingInfo['orderAmount'] = round($aOrderData['subtotal'], 2);
|
164 |
+
$aShippingInfo['Company'] = $aAddress['company'];
|
165 |
$aShippingInfo['AdditionalAddressInformation'] = '';
|
166 |
+
$aShippingInfo['Street'] = $aAddress['street'];
|
167 |
+
$aShippingInfo['ZipCode'] = $aAddress['postcode'];
|
168 |
+
$aShippingInfo['City'] = $aAddress['city'];
|
169 |
+
$aShippingInfo['CountryIso'] = $aAddress['country_id'];
|
170 |
$aShippingInfo['Products'] = $aProducts;
|
171 |
|
172 |
return $aShippingInfo;
|
app/code/community/Girosolution/Giroconnect/Helper/DirectdebitPaymentProxy.php
CHANGED
@@ -174,9 +174,9 @@ class Girosolution_Giroconnect_Helper_DirectdebitPaymentProxy extends Girosoluti
|
|
174 |
} else {
|
175 |
|
176 |
if (!$request->requestHasSucceeded()) {
|
177 |
-
$strResponseMsg = GiroCheckout_SDK_ResponseCode_helper::getMessage($request->getResponseParam('rc'), $
|
178 |
} else if (!$request->paymentSuccessful()) {
|
179 |
-
$strResponseMsg = GiroCheckout_SDK_ResponseCode_helper::getMessage($request->getResponseParam('resultPayment'), $
|
180 |
}
|
181 |
|
182 |
$controller = Girosolution_Giroconnect_DirectdebitController::getInstance();
|
174 |
} else {
|
175 |
|
176 |
if (!$request->requestHasSucceeded()) {
|
177 |
+
$strResponseMsg = GiroCheckout_SDK_ResponseCode_helper::getMessage($request->getResponseParam('rc'), $this->languageCode);
|
178 |
} else if (!$request->paymentSuccessful()) {
|
179 |
+
$strResponseMsg = GiroCheckout_SDK_ResponseCode_helper::getMessage($request->getResponseParam('resultPayment'), $this->languageCode);
|
180 |
}
|
181 |
|
182 |
$controller = Girosolution_Giroconnect_DirectdebitController::getInstance();
|
app/code/community/Girosolution/Giroconnect/Helper/GiropayPaymentProxy.php
CHANGED
@@ -96,7 +96,8 @@ class Girosolution_Giroconnect_Helper_GiropayPaymentProxy extends Girosolution_G
|
|
96 |
}
|
97 |
|
98 |
} catch (Exception $e) {
|
99 |
-
|
|
|
100 |
}
|
101 |
return $result;
|
102 |
}
|
96 |
}
|
97 |
|
98 |
} catch (Exception $e) {
|
99 |
+
$result["msg"] = $e->getMessage();
|
100 |
+
$result["status"] = 1002;
|
101 |
}
|
102 |
return $result;
|
103 |
}
|
app/code/community/Girosolution/Giroconnect/Model/Observer.php
CHANGED
@@ -28,6 +28,8 @@ class Girosolution_Giroconnect_Model_Observer {
|
|
28 |
$result->isAvailable = false;
|
29 |
}else if($method->getCode() == 'giroconnect_paydirekt' ){
|
30 |
$result->isAvailable = false;
|
|
|
|
|
31 |
}
|
32 |
}
|
33 |
}
|
28 |
$result->isAvailable = false;
|
29 |
}else if($method->getCode() == 'giroconnect_paydirekt' ){
|
30 |
$result->isAvailable = false;
|
31 |
+
}else if($method->getCode() == 'giroconnect_bluecode' ){
|
32 |
+
$result->isAvailable = false;
|
33 |
}
|
34 |
}
|
35 |
}
|
app/code/community/Girosolution/Giroconnect/controllers/DirectdebitController.php
CHANGED
@@ -68,7 +68,7 @@ class Girosolution_Giroconnect_DirectdebitController extends Mage_Core_Controlle
|
|
68 |
}
|
69 |
else {
|
70 |
$orderFound = $proxy->modifyOrderAfterPayment(FALSE, $transactionId, TRUE,$resultTransaction["gcRef"], $resultTransaction["gcTransInfo"]);
|
71 |
-
Mage::getSingleton('core/session')->addError(Mage::helper('giroconnect')->__('Payment with
|
72 |
$this->_redirect('checkout/onepage', array('_secure' => true));
|
73 |
}
|
74 |
} // End indexAction
|
68 |
}
|
69 |
else {
|
70 |
$orderFound = $proxy->modifyOrderAfterPayment(FALSE, $transactionId, TRUE,$resultTransaction["gcRef"], $resultTransaction["gcTransInfo"]);
|
71 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('giroconnect')->__('Payment with Direct Debit failed'));
|
72 |
$this->_redirect('checkout/onepage', array('_secure' => true));
|
73 |
}
|
74 |
} // End indexAction
|
app/code/community/Girosolution/Giroconnect/controllers/SofortuwController.php
CHANGED
@@ -95,7 +95,7 @@ class Girosolution_Giroconnect_SofortuwController extends Mage_Core_Controller_F
|
|
95 |
|
96 |
//Checks if the payment was successful and redirects the user
|
97 |
if (!$notify->paymentSuccessful()) {
|
98 |
-
Mage::getSingleton('core/session')->addError(Mage::helper('giroconnect')->__('Payment with
|
99 |
$this->_redirect('checkout/onepage', array('_secure' => true));
|
100 |
} else {
|
101 |
// Set customers shopping cart inactive
|
95 |
|
96 |
//Checks if the payment was successful and redirects the user
|
97 |
if (!$notify->paymentSuccessful()) {
|
98 |
+
Mage::getSingleton('core/session')->addError(Mage::helper('giroconnect')->__('Payment with SOFORT Überweisung failed'));
|
99 |
$this->_redirect('checkout/onepage', array('_secure' => true));
|
100 |
} else {
|
101 |
// Set customers shopping cart inactive
|
app/code/community/Girosolution/Giroconnect/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Girosolution_Giroconnect>
|
5 |
-
<version>4.0.0.
|
6 |
</Girosolution_Giroconnect>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Girosolution_Giroconnect>
|
5 |
+
<version>4.0.0.5</version>
|
6 |
</Girosolution_Giroconnect>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/Girosolution/Giroconnect/etc/system.xml
CHANGED
@@ -98,7 +98,7 @@
|
|
98 |
<show_in_default>1</show_in_default>
|
99 |
<show_in_website>1</show_in_website>
|
100 |
<show_in_store>1</show_in_store>
|
101 |
-
</sort_order>
|
102 |
<giropay_purpose translate="label">
|
103 |
<label>Purpose</label>
|
104 |
<frontend_type>text</frontend_type>
|
@@ -109,9 +109,9 @@
|
|
109 |
<comment>You can define your own purpose using this placeholders:
|
110 |
{ORDERID}: Bestellnummer
|
111 |
{CUSTOMERID}: Kundennummer
|
112 |
-
{SHOPNAME}: Shop Name
|
113 |
{CUSTOMERNAME}: Kundenname
|
114 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
115 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
116 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
117 |
The maximum length of the purpose is 27 characters.</comment>
|
@@ -224,9 +224,9 @@
|
|
224 |
<comment>You can define your own purpose using this placeholders:
|
225 |
{ORDERID}: Bestellnummer
|
226 |
{CUSTOMERID}: Kundennummer
|
227 |
-
{SHOPNAME}: Shop Name
|
228 |
{CUSTOMERNAME}: Kundenname
|
229 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
230 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
231 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
232 |
The maximum length of the purpose is 27 characters.</comment>
|
@@ -329,7 +329,7 @@
|
|
329 |
<show_in_default>1</show_in_default>
|
330 |
<show_in_website>1</show_in_website>
|
331 |
<show_in_store>1</show_in_store>
|
332 |
-
</creditcard_createinvoice>
|
333 |
<sort_order translate="label">
|
334 |
<label>Sort Order</label>
|
335 |
<frontend_type>text</frontend_type>
|
@@ -337,7 +337,7 @@
|
|
337 |
<show_in_default>1</show_in_default>
|
338 |
<show_in_website>1</show_in_website>
|
339 |
<show_in_store>1</show_in_store>
|
340 |
-
</sort_order>
|
341 |
<creditcard_purpose translate="label">
|
342 |
<label>Purpose</label>
|
343 |
<frontend_type>text</frontend_type>
|
@@ -348,13 +348,13 @@
|
|
348 |
<comment>You can define your own purpose using this placeholders:
|
349 |
{ORDERID}: Bestellnummer
|
350 |
{CUSTOMERID}: Kundennummer
|
351 |
-
{SHOPNAME}: Shop Name
|
352 |
{CUSTOMERNAME}: Kundenname
|
353 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
354 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
355 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
356 |
The maximum length of the purpose is 27 characters.</comment>
|
357 |
-
</creditcard_purpose>
|
358 |
<creditcard_visamaster translate="label">
|
359 |
<label>Enable Visa/Mastercard</label>
|
360 |
<frontend_type>select</frontend_type>
|
@@ -363,7 +363,7 @@
|
|
363 |
<show_in_default>1</show_in_default>
|
364 |
<show_in_website>1</show_in_website>
|
365 |
<show_in_store>1</show_in_store>
|
366 |
-
</creditcard_visamaster>
|
367 |
<creditcard_amex translate="label">
|
368 |
<label>Enable AMEX</label>
|
369 |
<frontend_type>select</frontend_type>
|
@@ -372,7 +372,7 @@
|
|
372 |
<show_in_default>1</show_in_default>
|
373 |
<show_in_website>1</show_in_website>
|
374 |
<show_in_store>1</show_in_store>
|
375 |
-
</creditcard_amex>
|
376 |
<creditcard_jcb translate="label">
|
377 |
<label>Enable JCB</label>
|
378 |
<frontend_type>select</frontend_type>
|
@@ -381,7 +381,7 @@
|
|
381 |
<show_in_default>1</show_in_default>
|
382 |
<show_in_website>1</show_in_website>
|
383 |
<show_in_store>1</show_in_store>
|
384 |
-
</creditcard_jcb>
|
385 |
</fields>
|
386 |
</giroconnect_creditcard>
|
387 |
<giroconnect_ideal translate="label">
|
@@ -490,13 +490,13 @@
|
|
490 |
<comment>You can define your own purpose using this placeholders:
|
491 |
{ORDERID}: Bestellnummer
|
492 |
{CUSTOMERID}: Kundennummer
|
493 |
-
{SHOPNAME}: Shop Name
|
494 |
{CUSTOMERNAME}: Kundenname
|
495 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
496 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
497 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
498 |
The maximum length of the purpose is 27 characters.</comment>
|
499 |
-
</ideal_purpose>
|
500 |
</fields>
|
501 |
</giroconnect_ideal>
|
502 |
<giroconnect_eps translate="label">
|
@@ -605,15 +605,15 @@
|
|
605 |
<comment>You can define your own purpose using this placeholders:
|
606 |
{ORDERID}: Bestellnummer
|
607 |
{CUSTOMERID}: Kundennummer
|
608 |
-
{SHOPNAME}: Shop Name
|
609 |
{CUSTOMERNAME}: Kundenname
|
610 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
611 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
612 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
613 |
The maximum length of the purpose is 27 characters.</comment>
|
614 |
-
</eps_purpose>
|
615 |
</fields>
|
616 |
-
</giroconnect_eps>
|
617 |
<giroconnect_sofortuw translate="label">
|
618 |
<label>SOFORT Überweisung (GiroCheckout)</label>
|
619 |
<sort_order>995</sort_order>
|
@@ -701,7 +701,7 @@
|
|
701 |
<show_in_default>1</show_in_default>
|
702 |
<show_in_website>1</show_in_website>
|
703 |
<show_in_store>1</show_in_store>
|
704 |
-
</sofortuw_createinvoice>
|
705 |
<sort_order translate="label">
|
706 |
<label>Sort Order</label>
|
707 |
<frontend_type>text</frontend_type>
|
@@ -709,7 +709,7 @@
|
|
709 |
<show_in_default>1</show_in_default>
|
710 |
<show_in_website>1</show_in_website>
|
711 |
<show_in_store>1</show_in_store>
|
712 |
-
</sort_order>
|
713 |
<sofortuw_purpose translate="label">
|
714 |
<label>Purpose</label>
|
715 |
<frontend_type>text</frontend_type>
|
@@ -720,15 +720,15 @@
|
|
720 |
<comment>You can define your own purpose using this placeholders:
|
721 |
{ORDERID}: Bestellnummer
|
722 |
{CUSTOMERID}: Kundennummer
|
723 |
-
{SHOPNAME}: Shop Name
|
724 |
{CUSTOMERNAME}: Kundenname
|
725 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
726 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
727 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
728 |
The maximum length of the purpose is 27 characters.</comment>
|
729 |
-
</sofortuw_purpose>
|
730 |
</fields>
|
731 |
-
</giroconnect_sofortuw>
|
732 |
<giroconnect_paydirekt translate="label">
|
733 |
<label>Paydirekt (GiroCheckout)</label>
|
734 |
<sort_order>996</sort_order>
|
@@ -824,7 +824,7 @@
|
|
824 |
<show_in_default>1</show_in_default>
|
825 |
<show_in_website>1</show_in_website>
|
826 |
<show_in_store>1</show_in_store>
|
827 |
-
</sort_order>
|
828 |
<paydirekt_purpose translate="label">
|
829 |
<label>Purpose</label>
|
830 |
<frontend_type>text</frontend_type>
|
@@ -835,15 +835,15 @@
|
|
835 |
<comment>You can define your own purpose using this placeholders:
|
836 |
{ORDERID}: Bestellnummer
|
837 |
{CUSTOMERID}: Kundennummer
|
838 |
-
{SHOPNAME}: Shop Name
|
839 |
{CUSTOMERNAME}: Kundenname
|
840 |
-
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
841 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
842 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
843 |
The maximum length of the purpose is 27 characters.</comment>
|
844 |
</paydirekt_purpose>
|
845 |
</fields>
|
846 |
-
</giroconnect_paydirekt>
|
847 |
</groups>
|
848 |
</payment>
|
849 |
</sections>
|
98 |
<show_in_default>1</show_in_default>
|
99 |
<show_in_website>1</show_in_website>
|
100 |
<show_in_store>1</show_in_store>
|
101 |
+
</sort_order>
|
102 |
<giropay_purpose translate="label">
|
103 |
<label>Purpose</label>
|
104 |
<frontend_type>text</frontend_type>
|
109 |
<comment>You can define your own purpose using this placeholders:
|
110 |
{ORDERID}: Bestellnummer
|
111 |
{CUSTOMERID}: Kundennummer
|
112 |
+
{SHOPNAME}: Shop Name
|
113 |
{CUSTOMERNAME}: Kundenname
|
114 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
115 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
116 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
117 |
The maximum length of the purpose is 27 characters.</comment>
|
224 |
<comment>You can define your own purpose using this placeholders:
|
225 |
{ORDERID}: Bestellnummer
|
226 |
{CUSTOMERID}: Kundennummer
|
227 |
+
{SHOPNAME}: Shop Name
|
228 |
{CUSTOMERNAME}: Kundenname
|
229 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
230 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
231 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
232 |
The maximum length of the purpose is 27 characters.</comment>
|
329 |
<show_in_default>1</show_in_default>
|
330 |
<show_in_website>1</show_in_website>
|
331 |
<show_in_store>1</show_in_store>
|
332 |
+
</creditcard_createinvoice>
|
333 |
<sort_order translate="label">
|
334 |
<label>Sort Order</label>
|
335 |
<frontend_type>text</frontend_type>
|
337 |
<show_in_default>1</show_in_default>
|
338 |
<show_in_website>1</show_in_website>
|
339 |
<show_in_store>1</show_in_store>
|
340 |
+
</sort_order>
|
341 |
<creditcard_purpose translate="label">
|
342 |
<label>Purpose</label>
|
343 |
<frontend_type>text</frontend_type>
|
348 |
<comment>You can define your own purpose using this placeholders:
|
349 |
{ORDERID}: Bestellnummer
|
350 |
{CUSTOMERID}: Kundennummer
|
351 |
+
{SHOPNAME}: Shop Name
|
352 |
{CUSTOMERNAME}: Kundenname
|
353 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
354 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
355 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
356 |
The maximum length of the purpose is 27 characters.</comment>
|
357 |
+
</creditcard_purpose>
|
358 |
<creditcard_visamaster translate="label">
|
359 |
<label>Enable Visa/Mastercard</label>
|
360 |
<frontend_type>select</frontend_type>
|
363 |
<show_in_default>1</show_in_default>
|
364 |
<show_in_website>1</show_in_website>
|
365 |
<show_in_store>1</show_in_store>
|
366 |
+
</creditcard_visamaster>
|
367 |
<creditcard_amex translate="label">
|
368 |
<label>Enable AMEX</label>
|
369 |
<frontend_type>select</frontend_type>
|
372 |
<show_in_default>1</show_in_default>
|
373 |
<show_in_website>1</show_in_website>
|
374 |
<show_in_store>1</show_in_store>
|
375 |
+
</creditcard_amex>
|
376 |
<creditcard_jcb translate="label">
|
377 |
<label>Enable JCB</label>
|
378 |
<frontend_type>select</frontend_type>
|
381 |
<show_in_default>1</show_in_default>
|
382 |
<show_in_website>1</show_in_website>
|
383 |
<show_in_store>1</show_in_store>
|
384 |
+
</creditcard_jcb>
|
385 |
</fields>
|
386 |
</giroconnect_creditcard>
|
387 |
<giroconnect_ideal translate="label">
|
490 |
<comment>You can define your own purpose using this placeholders:
|
491 |
{ORDERID}: Bestellnummer
|
492 |
{CUSTOMERID}: Kundennummer
|
493 |
+
{SHOPNAME}: Shop Name
|
494 |
{CUSTOMERNAME}: Kundenname
|
495 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
496 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
497 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
498 |
The maximum length of the purpose is 27 characters.</comment>
|
499 |
+
</ideal_purpose>
|
500 |
</fields>
|
501 |
</giroconnect_ideal>
|
502 |
<giroconnect_eps translate="label">
|
605 |
<comment>You can define your own purpose using this placeholders:
|
606 |
{ORDERID}: Bestellnummer
|
607 |
{CUSTOMERID}: Kundennummer
|
608 |
+
{SHOPNAME}: Shop Name
|
609 |
{CUSTOMERNAME}: Kundenname
|
610 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
611 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
612 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
613 |
The maximum length of the purpose is 27 characters.</comment>
|
614 |
+
</eps_purpose>
|
615 |
</fields>
|
616 |
+
</giroconnect_eps>
|
617 |
<giroconnect_sofortuw translate="label">
|
618 |
<label>SOFORT Überweisung (GiroCheckout)</label>
|
619 |
<sort_order>995</sort_order>
|
701 |
<show_in_default>1</show_in_default>
|
702 |
<show_in_website>1</show_in_website>
|
703 |
<show_in_store>1</show_in_store>
|
704 |
+
</sofortuw_createinvoice>
|
705 |
<sort_order translate="label">
|
706 |
<label>Sort Order</label>
|
707 |
<frontend_type>text</frontend_type>
|
709 |
<show_in_default>1</show_in_default>
|
710 |
<show_in_website>1</show_in_website>
|
711 |
<show_in_store>1</show_in_store>
|
712 |
+
</sort_order>
|
713 |
<sofortuw_purpose translate="label">
|
714 |
<label>Purpose</label>
|
715 |
<frontend_type>text</frontend_type>
|
720 |
<comment>You can define your own purpose using this placeholders:
|
721 |
{ORDERID}: Bestellnummer
|
722 |
{CUSTOMERID}: Kundennummer
|
723 |
+
{SHOPNAME}: Shop Name
|
724 |
{CUSTOMERNAME}: Kundenname
|
725 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
726 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
727 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
728 |
The maximum length of the purpose is 27 characters.</comment>
|
729 |
+
</sofortuw_purpose>
|
730 |
</fields>
|
731 |
+
</giroconnect_sofortuw>
|
732 |
<giroconnect_paydirekt translate="label">
|
733 |
<label>Paydirekt (GiroCheckout)</label>
|
734 |
<sort_order>996</sort_order>
|
824 |
<show_in_default>1</show_in_default>
|
825 |
<show_in_website>1</show_in_website>
|
826 |
<show_in_store>1</show_in_store>
|
827 |
+
</sort_order>
|
828 |
<paydirekt_purpose translate="label">
|
829 |
<label>Purpose</label>
|
830 |
<frontend_type>text</frontend_type>
|
835 |
<comment>You can define your own purpose using this placeholders:
|
836 |
{ORDERID}: Bestellnummer
|
837 |
{CUSTOMERID}: Kundennummer
|
838 |
+
{SHOPNAME}: Shop Name
|
839 |
{CUSTOMERNAME}: Kundenname
|
840 |
+
{CUSTOMERFIRSTNAME}: Kunde Vorname
|
841 |
{CUSTOMERLASTNAME}: Kunde Nachname
|
842 |
For example: If your purpose is Best. {ORDERID}, {SHOPNAME} then the submitted purpose must be Best. 55342, TestShop
|
843 |
The maximum length of the purpose is 27 characters.</comment>
|
844 |
</paydirekt_purpose>
|
845 |
</fields>
|
846 |
+
</giroconnect_paydirekt>
|
847 |
</groups>
|
848 |
</payment>
|
849 |
</sections>
|
app/locale/de_DE/Girosolution_Giroconnect.csv
CHANGED
@@ -13,8 +13,8 @@
|
|
13 |
"Project-Password","Projekt-Passwort"
|
14 |
"Information from GiroCockpit","Information aus dem GiroCockpit"
|
15 |
"The customer was redirected to GiroMobile.","Der Kunde wurde zu GiroMobile geleitet."
|
16 |
-
"Payment with
|
17 |
-
"Payment with
|
18 |
"Error while creating GiroMobile transaction","Fehler beim Erzeugen der Giromobile Transaktion"
|
19 |
"Cancel","Abbrechen"
|
20 |
"New order status","Status einer neuen Order"
|
@@ -32,10 +32,6 @@
|
|
32 |
"Payment with giropay failed","Bezahlung mit giropay fehlgeschlagen"
|
33 |
"Payment with giropay was successful","Bezahlung mit giropay war erfolgreich"
|
34 |
"Giropay general error","Genereller Giropay Fehler"
|
35 |
-
"The customer pays with Girotrust.","Der Kunde bezahlt mit GiroTrust"
|
36 |
-
"Payment with Girotrust failed","Bezahlung mit GiroTrust fehlgeschlagen"
|
37 |
-
"Payment with Girotrust was successful","Bezahlung mit GrioTrust war erfolgreich"
|
38 |
-
"Payment with Girotrust failed","Bezahlung mit GiroTrust fehlgeschlagen"
|
39 |
"Creator ID","Ersteller-ID"
|
40 |
"Trustee ID","Treuhand-ID"
|
41 |
"Payment result data are invalid","Bezahlungs Resultat Daten sind ungültig"
|
@@ -104,3 +100,11 @@ Die maximale Länge beträgt 27 Zeichen."
|
|
104 |
"Enable Visa/Mastercard", "Aktiviert Visa/Mastercard"
|
105 |
"Enable AMEX","Aktiviert AMEX"
|
106 |
"Enable JCB","Aktiviert JCB"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
"Project-Password","Projekt-Passwort"
|
14 |
"Information from GiroCockpit","Information aus dem GiroCockpit"
|
15 |
"The customer was redirected to GiroMobile.","Der Kunde wurde zu GiroMobile geleitet."
|
16 |
+
"Payment with iDEAL was successful","Bezahlung mit iDEAL war erfolgreich"
|
17 |
+
"Payment with iDEAL failed","Bezahlung mit iDEAL ist fehlgeschlagen"
|
18 |
"Error while creating GiroMobile transaction","Fehler beim Erzeugen der Giromobile Transaktion"
|
19 |
"Cancel","Abbrechen"
|
20 |
"New order status","Status einer neuen Order"
|
32 |
"Payment with giropay failed","Bezahlung mit giropay fehlgeschlagen"
|
33 |
"Payment with giropay was successful","Bezahlung mit giropay war erfolgreich"
|
34 |
"Giropay general error","Genereller Giropay Fehler"
|
|
|
|
|
|
|
|
|
35 |
"Creator ID","Ersteller-ID"
|
36 |
"Trustee ID","Treuhand-ID"
|
37 |
"Payment result data are invalid","Bezahlungs Resultat Daten sind ungültig"
|
100 |
"Enable Visa/Mastercard", "Aktiviert Visa/Mastercard"
|
101 |
"Enable AMEX","Aktiviert AMEX"
|
102 |
"Enable JCB","Aktiviert JCB"
|
103 |
+
"Branch","Branche"
|
104 |
+
"Please specify the branch as agreed with your PSP","Geben Sie die Branche an, die Sie mit Ihrem PSP vereinbart haben"
|
105 |
+
"The customer pays with Paydirekt.","Der Kunde bezahlt mit Paydirekt"
|
106 |
+
"Payment with Paydirekt was successful","Bezahlung mit Paydirekt war erfolgreich"
|
107 |
+
"Payment with Paydirekt failed","Bezahlung mit Paydirekt fehlgeschlagen"
|
108 |
+
"The customer pays with SOFORT Überweisung.","Der Kunde bezahlt mit SOFORT Überweisung"
|
109 |
+
"Payment with SOFORT Überweisung was successful","Bezahlung mit SOFORT Überweisung war erfolgreich"
|
110 |
+
"Payment with SOFORT Überweisung failed","Bezahlung mit SOFORT Überweisung fehlgeschlagen"
|
lib/GiroCheckout_SDK/.DS_Store
ADDED
Binary file
|
lib/GiroCheckout_SDK/GiroCheckout_SDK.php
CHANGED
@@ -6,9 +6,9 @@
|
|
6 |
* View examples for API calls.
|
7 |
*
|
8 |
* @package GiroCheckout
|
9 |
-
* @version $Revision:
|
10 |
*/
|
11 |
-
define('__GIROCHECKOUT_SDK_VERSION__', '2.0.
|
12 |
|
13 |
spl_autoload_register( array('GiroCheckout_SDK_Autoloader', 'load'), TRUE, TRUE );
|
14 |
|
6 |
* View examples for API calls.
|
7 |
*
|
8 |
* @package GiroCheckout
|
9 |
+
* @version $Revision: 156 $ / $Date: 2016-06-29 13:17:03 -0400 (Wed, 29 Jun 2016) $
|
10 |
*/
|
11 |
+
define('__GIROCHECKOUT_SDK_VERSION__', '2.0.3');
|
12 |
|
13 |
spl_autoload_register( array('GiroCheckout_SDK_Autoloader', 'load'), TRUE, TRUE );
|
14 |
|
lib/GiroCheckout_SDK/GiroCheckout_SDK_Notify.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* 3. Check the success of the transaction.
|
13 |
*
|
14 |
* @package GiroCheckout
|
15 |
-
* @version $Revision: 123 $ / $Date: 2016-04-13 12:36:55 -0300 (
|
16 |
*/
|
17 |
|
18 |
class GiroCheckout_SDK_Notify {
|
12 |
* 3. Check the success of the transaction.
|
13 |
*
|
14 |
* @package GiroCheckout
|
15 |
+
* @version $Revision: 123 $ / $Date: 2016-04-13 12:36:55 -0300 (Wed, 13 Apr 2016) $
|
16 |
*/
|
17 |
|
18 |
class GiroCheckout_SDK_Notify {
|
lib/GiroCheckout_SDK/GiroCheckout_SDK_Request.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* 3. Use the getResponseParam to retrieve the result.
|
9 |
*
|
10 |
* @package GiroCheckout
|
11 |
-
* @version $Revision: 123 $ / $Date: 2016-04-13 12:36:55 -0300 (
|
12 |
*/
|
13 |
|
14 |
class GiroCheckout_SDK_Request {
|
8 |
* 3. Use the getResponseParam to retrieve the result.
|
9 |
*
|
10 |
* @package GiroCheckout
|
11 |
+
* @version $Revision: 123 $ / $Date: 2016-04-13 12:36:55 -0300 (Wed, 13 Apr 2016) $
|
12 |
*/
|
13 |
|
14 |
class GiroCheckout_SDK_Request {
|
lib/GiroCheckout_SDK/api/.DS_Store
ADDED
Binary file
|
lib/GiroCheckout_SDK/api/GiroCheckout_SDK_AbstractApi.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Provides most of the interfaces functions. A new payment method should use this class.
|
5 |
*
|
6 |
* @package GiroCheckout
|
7 |
-
* @version $Revision: 151 $ / $Date: 2016-06-08
|
8 |
*/
|
9 |
|
10 |
class GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi{
|
4 |
* Provides most of the interfaces functions. A new payment method should use this class.
|
5 |
*
|
6 |
* @package GiroCheckout
|
7 |
+
* @version $Revision: 151 $ / $Date: 2016-06-08 15:02:47 -0400 (Wed, 08 Jun 2016) $
|
8 |
*/
|
9 |
|
10 |
class GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi{
|
lib/GiroCheckout_SDK/api/GiroCheckout_SDK_InterfaceApi.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Interface API has to be implemented, if a a new payment method has to be created
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (
|
7 |
*/
|
8 |
|
9 |
interface GiroCheckout_SDK_InterfaceApi {
|
3 |
* Interface API has to be implemented, if a a new payment method has to be created
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (Thu, 22 May 2014) $
|
7 |
*/
|
8 |
|
9 |
interface GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/creditcard/GiroCheckout_SDK_CreditCardRecurringTransaction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an credit card API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 80 $ / $Date: 2014-10-21 13:49:14 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_CreditCardRecurringTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an credit card API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 80 $ / $Date: 2014-10-21 13:49:14 -0300 (Tue, 21 Oct 2014) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_CreditCardRecurringTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitCapture.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitCapture extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (Wed, 27 Apr 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitCapture extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitRefund.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitRefund extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (Wed, 27 Apr 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitRefund extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitTransaction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (Wed, 27 Apr 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/directdebit/GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an direct debit API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 139 $ / $Date: 2016-04-27 16:25:30 -0300 (Wed, 27 Apr 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayBankstatus.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayBankstatus extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (Thu, 22 May 2014) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayBankstatus extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayIDCheck.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 111 $ / $Date: 2015-06-19 07:49:36 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayIDCheck extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 111 $ / $Date: 2015-06-19 07:49:36 -0300 (Fri, 19 Jun 2015) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayIDCheck extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayTransaction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 146 $ / $Date: 2016-05-11 16:47:29 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 146 $ / $Date: 2016-05-11 16:47:29 -0300 (Wed, 11 May 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/giropay/GiroCheckout_SDK_GiropayTransactionWithGiropayID.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 136 $ / $Date: 2016-04-25 18:54:50 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayTransactionWithGiropayID extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an giropay API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 136 $ / $Date: 2016-04-25 18:54:50 -0300 (Mon, 25 Apr 2016) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_GiropayTransactionWithGiropayID extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealIssuerList.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealIssuerList extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (Thu, 22 May 2014) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealIssuerList extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPayment.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealPayment extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (Thu, 22 May 2014) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealPayment extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
lib/GiroCheckout_SDK/api/ideal/GiroCheckout_SDK_IdealPaymentRefund.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 138 $ / $Date: 2016-04-27 12:23:07 -0300 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealPaymentRefund extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
3 |
* Provides configuration for an iDEAL API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 138 $ / $Date: 2016-04-27 12:23:07 -0300 (Wed, 27 Apr 2016) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_IdealPaymentRefund extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
lib/GiroCheckout_SDK/api/paypal/GiroCheckout_SDK_PaypalTransaction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an PayPal API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_PaypalTransaction extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
3 |
* Provides configuration for an PayPal API call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 24 $ / $Date: 2014-05-22 08:30:12 -0400 (Thu, 22 May 2014) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_PaypalTransaction extends GiroCheckout_SDK_AbstractApi{
|
9 |
|
lib/GiroCheckout_SDK/api/tools/GiroCheckout_SDK_Tools_GetTransaction.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Provides configuration for an get transaction call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 111 $ / $Date: 2015-06-19 07:49:36 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Tools_GetTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
3 |
* Provides configuration for an get transaction call.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 111 $ / $Date: 2015-06-19 07:49:36 -0300 (Fri, 19 Jun 2015) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Tools_GetTransaction extends GiroCheckout_SDK_AbstractApi implements GiroCheckout_SDK_InterfaceApi {
|
lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_Curl_helper.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Helper class which manages sending data
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 109 $ / $Date: 2015-06-01 08:37:30 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Curl_helper {
|
3 |
* Helper class which manages sending data
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 109 $ / $Date: 2015-06-01 08:37:30 -0300 (Mon, 01 Jun 2015) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Curl_helper {
|
lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_Hash_helper.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Helper class which manages hash generation
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 69 $ / $Date: 2014-10-01 11:57:27 -0300 (
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Hash_helper {
|
3 |
* Helper class which manages hash generation
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 69 $ / $Date: 2014-10-01 11:57:27 -0300 (Wed, 01 Oct 2014) $
|
7 |
*/
|
8 |
|
9 |
class GiroCheckout_SDK_Hash_helper {
|
lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_ResponseCode_helper.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Helper class which manages response codes and its meanings.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 102 $ / $Date: 2015-03-24 18:36:12 -0300 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_ResponseCode_helper
|
9 |
{
|
3 |
* Helper class which manages response codes and its meanings.
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 102 $ / $Date: 2015-03-24 18:36:12 -0300 (Tue, 24 Mar 2015) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_ResponseCode_helper
|
9 |
{
|
lib/GiroCheckout_SDK/helper/GiroCheckout_SDK_TransactionType_helper.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Helper class which manages api call instances
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
-
* @version $Revision: 146 $ / $Date: 2016-05-11 16:47:29 -0300 (
|
7 |
*/
|
8 |
class GiroCheckout_SDK_TransactionType_helper {
|
9 |
|
3 |
* Helper class which manages api call instances
|
4 |
*
|
5 |
* @package GiroCheckout
|
6 |
+
* @version $Revision: 146 $ / $Date: 2016-05-11 16:47:29 -0300 (Wed, 11 May 2016) $
|
7 |
*/
|
8 |
class GiroCheckout_SDK_TransactionType_helper {
|
9 |
|
lib/GiroCheckout_SDK/log/.DS_Store
ADDED
Binary file
|
package.xml
CHANGED
@@ -1,19 +1,25 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>GiroCheckout</name>
|
4 |
-
<version>4.0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>German payment plugin that provides 7 payment methods.</summary>
|
10 |
-
<description><p>
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
<ul>
|
12 |
<li>giropay (Guaranteed online credit transfer for Germany) – also in combination with the age verification service giropay-ID</li>
|
13 |
<li>eps (Guaranteed online credit transfer for Austria)</li>
|
14 |
<li>iDEAL (Guaranteed online credit transfer for the Netherlands)</li>
|
15 |
-
<li>Direct debit with/without black list check</li>
|
16 |
-
<li>Credit card payments</li>
|
17 |
<li>Paydirekt (Guaranteed online credit transfer for Germany)</li>
|
18 |
<li>Sofort-Überweisung (Online credit transfer for Germany)</li>
|
19 |
</ul>
|
@@ -25,7 +31,14 @@
|
|
25 |
<li><strong>Telephone: </strong>+49 7554 97090-00</li>
|
26 |
</ul>
|
27 |
<hr />
|
28 |
-
<p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
<ul>
|
30 |
<li>giropay (Garantierte Online-Überweisung für Deutschland) - auch in Kombination mit der Altersverifikation giropay-ID</li>
|
31 |
<li>eps (Garantierte Online-Überweisungen in Österreich)</li>
|
@@ -42,7 +55,7 @@
|
|
42 |
<li><strong>E-Mail: </strong><a href="mailto:support@girosolution.de">support@girosolution.de</a></li>
|
43 |
<li><strong>Telefon: </strong>+49 7554 97090-00</li>
|
44 |
</ul></description>
|
45 |
-
<notes>This version has the following changes compared to the previous
|
46 |
- Added payment method giropay+giropay-ID
|
47 |
- Added payment method Paydirekt
|
48 |
- Added payment method Sofort Überweisung
|
@@ -51,9 +64,9 @@
|
|
51 |
- New eps logo
|
52 |
- Minor corrections and enhancements</notes>
|
53 |
<authors><author><name>Oliver Marx</name><user>girosolution</user><email>support@girosolution.de</email></author></authors>
|
54 |
-
<date>2016-
|
55 |
-
<time>
|
56 |
-
<contents><target name="magecommunity"><dir name="Girosolution"><dir name="Giroconnect"><dir name="Block"><dir name="Form"><file name="Creditcard.php" hash="da9f4268d3f73306fa2f5cec67de3dc9"/><file name="Directdebit.php" hash="d59b31a9942c4bd274875d76cf7dada9"/><file name="Eps.php" hash="a1affac46e4b74313656ceb7c58ad825"/><file name="Giropay.php" hash="5d57b4e42bb4078539082f6a7c8bdf43"/><file name="Ideal.php" hash="1dbf48d19f36fba70c6eeaa8859290a9"/><file name="Paydirekt.php" hash="e3674caa600ce3a4c15d791ea213413d"/><file name="Sofortuw.php" hash="fed0607b49d8edecf573ac2287579abb"/></dir></dir><dir name="Helper"><file name="AbstractPaymentProxy.php" hash="1c4f1bd341072b9bdddc7d77450f684c"/><file name="Creditcard.php" hash="f507043844aaf9b88fa72c0475b28855"/><file name="CreditcardPaymentProxy.php" hash="0655730ee36024816a213bf08ed4cde3"/><file name="Data.php" hash="1ca59ed42becc6b9e8cabd9f25167b9d"/><file name="Directdebit.php" hash="0d279e6d3b482c88734b8812ad8ac3b6"/><file name="DirectdebitPaymentProxy.php" hash="49f4603b1fbcd15a548565a748289f9e"/><file name="Eps.php" hash="fb68581068ab53996796d0703463d580"/><file name="EpsPaymentProxy.php" hash="ca2b731d082e4b932b1c471c6419db91"/><file name="Giropay.php" hash="71fc3d8d01372a3e5fc1a7ea53ee3b94"/><file name="GiropayPaymentProxy.php" hash="4ceb3a2320fb2fe128861d0e6218eaad"/><file name="Ideal.php" hash="27d8e79434fc7ba1d89c4f73a68b4128"/><file name="IdealPaymentProxy.php" hash="4745f2dd05aac5c7b284db1c9eaf4147"/><file name="Paydirekt.php" hash="ecbf9cd022c72c60485c2149ddecc88a"/><file name="PaydirektPaymentProxy.php" hash="3be6e33940b7cdaa9b1e3a170a164dcd"/><file name="Sofortuw.php" hash="21df61ae435de8a57b7ce3eef69b1901"/><file name="SofortuwPaymentProxy.php" hash="647d463b34fff6e8e6182249786d4866"/></dir><dir name="Model"><file name="Observer.php" hash="9bfd651c462cc4704be8dad2b0d7932a"/><dir name="Payment"><file name="Abstract.php" hash="bae4440864c63892d62e678748ee41d0"/><file name="Creditcard.php" hash="12e9474083f3ba3725ef0e42cc23756e"/><file name="Directdebit.php" hash="f8520809fcf0be702072a3fe8db6db76"/><file name="Eps.php" hash="c12b0ff1445c89fa350efd5b4c2d25ec"/><file name="Giropay.php" hash="b5620d92f7e54cafa89752ad15ddbeeb"/><file name="Ideal.php" hash="659f834b3e383dc86f593eb80f40fb24"/><file name="Paydirekt.php" hash="89eb8dc8bef8c6af6317722eff0ce3fd"/><file name="Sofortuw.php" hash="85ee90b85510fd655d15deda61557232"/></dir></dir><dir name="controllers"><file name="CreditcardController.php" hash="84c55a4341ddf2b3711cfdc29cce5360"/><file name="DirectdebitController.php" hash="c4f866223728cc8fe8e5d19f0d8ef42f"/><file name="EpsController.php" hash="9d446bef9326b0c541674b0a409abcfa"/><file name="GiropayController.php" hash="d130316307b7bb84c0ed3bdd33163b5d"/><file name="IdealController.php" hash="0a3bc6a2357c583105cc10c5febd7dcc"/><file name="PaydirektController.php" hash="f274c4fc0c3d509008f1ea1abf1452b9"/><file name="SofortuwController.php" hash="02014152e0bd84ca4d9c5c480a6cf959"/></dir><dir name="etc"><file name="config.xml" hash="b77aedee055778b0fabc2644367786be"/><file name="system.xml" hash="edb0ddf83f0549ede78ec516c71848c6"/></dir><file name=".DS_Store" hash="9567c71fb3193ad25155b1c371035ddf"/></dir><file name=".DS_Store" hash="e87a74c473c6142d7a1b90396140893f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="giroconnect"><file name="giroconnectlayout.xml" hash="985e589aaa725053ae11bdc351a3c741"/></dir></dir><dir name="template"><dir name="giroconnect"><dir name="creditcard"><file name="form.phtml" hash="1e0e7f1420c85c636b3c65df5759d8aa"/></dir><dir name="directdebit"><file name="form.phtml" hash="2fb7c488b88e6006e77102f9e288ec6f"/></dir><dir name="eps"><file name="form.phtml" hash="776dbe124e12f6352eb5833715f6ad55"/></dir><dir name="giropay"><file name="form.phtml" hash="7a61bce9dfac3aec7293d21a4abad4d2"/></dir><dir name="ideal"><file name="form.phtml" hash="9d27c8d4eb588e560c3c21aea0622fa2"/></dir><dir name="paydirekt"><file name="form.phtml" hash="295e978704cdd2acc7c2dec1eeb2326f"/></dir><dir name="sofortuw"><file name="form.phtml" hash="edf34ca9f6f110ca9c46a6d95f2c0ad0"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Girosolution_Giroconnect.xml" hash="66789673756b5bf7a9900941aa5b31c8"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Girosolution_Giroconnect.csv" hash="bddff84f395dfbdeb8eef5dd615f7963"/></dir></target><target name="magelib"><dir name="GiroCheckout_SDK"><file name="GiroCheckout_SDK.php" hash="0d041b8f8c2966f91ac9ac00e15b2fe1"/><file name="GiroCheckout_SDK_Config.php" hash="ec6d3d3634253edaf350829f23bc9d50"/><file name="GiroCheckout_SDK_Notify.php" hash="d343b6c414ead1e587bdc18f02b05e71"/><file name="GiroCheckout_SDK_Request.php" hash="ce0c448680d3895dc64f95fa18ba02d1"/><file name="GiroCheckout_SDK_Request_Cart.php" hash="d3537fbe56d1c1097fcd525cb9023f3a"/><file name="GiroCheckout_SDK_Tools.php" hash="525192c9077a605bd102775b224d16e2"/><dir name="api"><file name="GiroCheckout_SDK_AbstractApi.php" hash="2f28657c4a7f72bac896edb629e2fce1"/><file name="GiroCheckout_SDK_InterfaceApi.php" hash="81a0c5acf0667c9107803bce72689d80"/><dir name="creditcard"><file name="GiroCheckout_SDK_CreditCardCapture.php" hash="a7119104372e411b64423cff81d08f93"/><file name="GiroCheckout_SDK_CreditCardGetPKN.php" hash="470d9e83f372f5a68af053d49f562c91"/><file name="GiroCheckout_SDK_CreditCardRecurringTransaction.php" hash="3c7f9284d5f8b4421cf316802e062a92"/><file name="GiroCheckout_SDK_CreditCardRefund.php" hash="67a8a1ad1b6357ebec6af520e1ffa3c9"/><file name="GiroCheckout_SDK_CreditCardTransaction.php" hash="cc7b06d6b7e3eac18f5eb4fec6cac4c3"/></dir><dir name="directdebit"><file name="GiroCheckout_SDK_DirectDebitCapture.php" hash="fc0ee8b52e54ff8aed2bba25296e815e"/><file name="GiroCheckout_SDK_DirectDebitGetPKN.php" hash="756d0ac041ffa3d6e94073cac4cf3476"/><file name="GiroCheckout_SDK_DirectDebitRefund.php" hash="365d1597a2bf88b33c83f0ee73da8339"/><file name="GiroCheckout_SDK_DirectDebitTransaction.php" hash="a071ecda028801d5a64af7bc2b0392e2"/><file name="GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage.php" hash="0b20777f4eedcb0e5eec79ef838f8c35"/></dir><dir name="eps"><file name="GiroCheckout_SDK_EpsBankstatus.php" hash="3be0632510730e87408ca889092a44fb"/><file name="GiroCheckout_SDK_EpsIssuerList.php" hash="6ff1d3e0a30433de9271f74d5005b8ba"/><file name="GiroCheckout_SDK_EpsTransaction.php" hash="5eb6eb4c78ecd7977e6fb548ad8133ca"/></dir><dir name="girocode"><file name="GiroCheckout_SDK_GiroCodeCreateEpc.php" hash="28909cefe43707be1b0b2b689b54656d"/><file name="GiroCheckout_SDK_GiroCodeCreatePayment.php" hash="d0339f0a8a60c444ed508ee256593714"/><file name="GiroCheckout_SDK_GiroCodeGetEpc.php" hash="d40c97710371a22321bbcc99171a6f1b"/></dir><dir name="giropay"><file name="GiroCheckout_SDK_GiropayBankstatus.php" hash="40c2259e2adcd65ce810dd1af6482c45"/><file name="GiroCheckout_SDK_GiropayIDCheck.php" hash="64c4dd9d6ca3d83df6f0bc5b650548fd"/><file name="GiroCheckout_SDK_GiropayIssuerList.php" hash="7a5cbdac111badaf5c73d1fcd11ec01a"/><file name="GiroCheckout_SDK_GiropayTransaction.php" hash="06c12aa889d66cf7443d4729ee0dce76"/><file name="GiroCheckout_SDK_GiropayTransactionWithGiropayID.php" hash="337f20fd4cbcad9b75da5be744450644"/></dir><dir name="ideal"><file name="GiroCheckout_SDK_IdealIssuerList.php" hash="84f9c38cbbc37ad41820aff44aaf4fd1"/><file name="GiroCheckout_SDK_IdealPayment.php" hash="e1587535d9acb7ac93531863337b9da8"/><file name="GiroCheckout_SDK_IdealPaymentRefund.php" hash="9e398951aad773130171ea33ed686e2f"/></dir><dir name="paydirekt"><file name="GiroCheckout_SDK_PaydirektCapture.php" hash="40b721a3273d67e093f5769ce06e537f"/><file name="GiroCheckout_SDK_PaydirektRefund.php" hash="adf8441f59c1ee4e7f30302495d2f623"/><file name="GiroCheckout_SDK_PaydirektTransaction.php" hash="21849effd5c839692792cbf0eb1fb4cd"/></dir><dir name="paypal"><file name="GiroCheckout_SDK_PaypalTransaction.php" hash="76861442a2f0a2cbcc670ca6f681d214"/></dir><dir name="sofortuw"><file name="GiroCheckout_SDK_SofortUwTransaction.php" hash="a5464cad74340395267c7c367732a4c7"/></dir><dir name="tools"><file name="GiroCheckout_SDK_Tools_GetTransaction.php" hash="f49b8474feb469e526d8b7dbbe248117"/></dir></dir><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/><dir name="helper"><file name="GiroCheckout_SDK_Curl_helper.php" hash="a96738188d1f3b35a7385d23acd138cd"/><file name="GiroCheckout_SDK_Debug_helper.php" hash="93782e71d487dd90f190ec69b203a627"/><file name="GiroCheckout_SDK_Exception_helper.php" hash="8b7e594f96d27d34094ca48cc987f924"/><file name="GiroCheckout_SDK_Hash_helper.php" hash="9e9662c33e526495cc815c4dbf7d64da"/><file name="GiroCheckout_SDK_ResponseCode_helper.php" hash="df9f0652970e02eaac62932035f99407"/><file name="GiroCheckout_SDK_TransactionType_helper.php" hash="cf4be96348522879677de4e59747fbd7"/></dir><dir name="log"><file name=".htaccess" hash="6f90e67e1aa0ea2a524430a1d554b7f9"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="giroconnect"><file name="Logo_EC_40_px.jpg" hash="aef230161c29ed7d3823f7f551060c65"/><file name="Logo_EC_50_px.jpg" hash="425c170e1df787dbf19de9dff2e56114"/><file name="Logo_EC_60_px.jpg" hash="f17b079d7e5602bf5b1f3e07606b448d"/><file name="Logo_VISA_MC_40_px.jpg" hash="91c95f1da4f0bac7d74f8b858e3a959d"/><file name="Logo_VISA_MC_50_px.jpg" hash="b8d75f4b45cace78e9f34e95f844f300"/><file name="Logo_VISA_MC_60_px.jpg" hash="6b0cd4e564bef980a895a60495456ee5"/><file name="Logo_eps_40_px.jpg" hash="854d254e82f992ae18e26deaac188a53"/><file name="Logo_eps_50_px.jpg" hash="b3b0e39121b5f6fe45a2289ede95f2bf"/><file name="Logo_eps_60_px.jpg" hash="e5a42417e574d75ed45cb967b5d0b452"/><file name="Logo_giropay_40_px.jpg" hash="e75ed3616e148349cdff5e4a0ee31ddb"/><file name="Logo_giropay_50_px.jpg" hash="da239a7c5dce1f8f386ae71a47558e27"/><file name="Logo_giropay_60_px.jpg" hash="b239a4381e33daf9a833360f7dc0e8ff"/><file name="Logo_iDeal_40_px.jpg" hash="383d2477aa82b0b12c0858fe58c59785"/><file name="Logo_iDeal_50_px.jpg" hash="b0a845c3b79ca362b48f6fdf58f38251"/><file name="Logo_iDeal_60_px.jpg" hash="afe3029494284474167506b7d293fdf3"/><file name="Logo_paydirekt_40_px.jpg" hash="ac540a86f7eea46a4d6ac63acb6bd697"/><file name="Logo_paydirekt_50_px.jpg" hash="4d6e01e86127c3e65d754d6bea634f87"/><file name="Logo_paydirekt_60_px.jpg" hash="827325f3c9d3ba531354230ccb67627c"/><file name="Logo_sofort_40_px.jpg" hash="5ea04c960f86e2d8c305a0d7a44bd481"/><file name="Logo_sofort_50_px.jpg" hash="f53d3f2e3bfe9fce6c8bc753db04e03f"/><file name="Logo_sofort_60_px.jpg" hash="bae169dcdc9c4b13a68c639eb173858a"/><file name="amex_40px.jpg" hash="6dc37da20756b28105adb1925a85a1d7"/><file name="amex_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="amex_jcb_40px.jpg" hash="9cbd9babe028ba87012d19ac11ccc868"/><file name="jcb_40px.jpg" hash="15bec02c409ab690839b988d809ba438"/><file name="jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_40px.jpg" hash="6b4c9114e1377fc7eee488aa5810be65"/><file name="visa_msc_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_amex_40px.jpg" hash="420bb2a8b31763ec2cc2f16a83f9fd0e"/><file name="visa_msc_amex_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_amex_jcb_40px.jpg" hash="96fe1a2961ca8291a6992243ce7a21e5"/><file name="visa_msc_amex_jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_jcb_40px.jpg" hash="573d32ad0be8ce78ce606c4c14c5297b"/><file name="visa_msc_jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target></contents>
|
57 |
<compatible/>
|
58 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
59 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>GiroCheckout</name>
|
4 |
+
<version>4.0.0.5</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>German payment plugin that provides 7 payment methods.</summary>
|
10 |
+
<description><p>GiroCheckout is a payment module for German and other Central European online businesses offered by the German payment service provider Girosolution AG. If you require a payment module that allows your customers from these regions to pay for your products, this is the proper module to use. It is a simple, fast and secure solution for the integration of several different payment methods in your online store. Please remember that adding payment methods to your shop always requires three steps:
|
11 |
+
<ol>
|
12 |
+
<li>Deciding which payment methods you want to offer (see list below)</li>
|
13 |
+
<li>Signing acceptance contracts with the corresponding payment service provider and issuer (please contact <a href="http://www.girosolution.de">Girosolution</a> for this step)</li>
|
14 |
+
<li>Downloading, installing and configuring the corresponding payment plugin for your shop, starting right here in Magento Connect. For instructions, please see <a href="https://www.girosolution.de/tools-support/shop-plug-ins/magento-plug-in/">our Magento plugin page</a>.</li>
|
15 |
+
</ol>
|
16 |
+
<p>These are the payment methods currently provided by Girosolution/GiroCheckout:</p>
|
17 |
<ul>
|
18 |
<li>giropay (Guaranteed online credit transfer for Germany) – also in combination with the age verification service giropay-ID</li>
|
19 |
<li>eps (Guaranteed online credit transfer for Austria)</li>
|
20 |
<li>iDEAL (Guaranteed online credit transfer for the Netherlands)</li>
|
21 |
+
<li>Direct debit with/without black list check (for Germany)</li>
|
22 |
+
<li>Credit card payments (for any country)</li>
|
23 |
<li>Paydirekt (Guaranteed online credit transfer for Germany)</li>
|
24 |
<li>Sofort-Überweisung (Online credit transfer for Germany)</li>
|
25 |
</ul>
|
31 |
<li><strong>Telephone: </strong>+49 7554 97090-00</li>
|
32 |
</ul>
|
33 |
<hr />
|
34 |
+
<p>GiroCheckout ist eine einfache, schnelle und sichere Komplettlösung für die Integration verschiedener Bezahlverfahren in Ihren Online-Shop (jede Zahlungsart erfordert einen Vertrag, bitte nehmen Sie mit der Girosolution Kontakt auf für weitere Informationen):</p>
|
35 |
+
<p>GiroCheckout ist ein Zahlungsmodul für Online-Geschäfte in Deutschland und anderen Mitteleuropäischen Ländern, das vom deutschen Payment Service Provider Girosolution AG angeboten wird. Wenn Sie ein Zahlungsmodul benötigen, das Kunden aus den genannten Regionen eine Bezahlung Ihrer Produkte erlaubt, ist dies das geeignete Modul für Sie. Es bietet eine einfache, schnelle und sichere Lösung für die Einbindung mehrerer verschiedener Bezahlverfahren in Ihren Online-Shop. Bitte denken Sie daran, dass die Anbindung Ihres Shops an Bezahlverfahren immer drei Schritte erfordert:
|
36 |
+
<ol>
|
37 |
+
<li>Entscheiden, welche Bezahlverfahren Sie anbieten möchten (s. Liste weiter unten)</li>
|
38 |
+
<li>Unterzeichnung von Akteptanzverträgen für jede Zahlungsart mit dem Payment Service Provider und dem Herausgeber des Zahlungsverfahrens (bitte nehmen Sie hierfür Kontakt mit <a href="http://www.girosolution.de">Girosolution</a> auf)</li>
|
39 |
+
<li>Download, Installation und Konfiguration des entsprechenden Zahlungsplugins für Ihren Shop, am besten gleich direkt hier aus Magento Connect heraus. Anleitungen finden Sie auf <a href="https://www.girosolution.de/tools-support/shop-plug-ins/magento-plug-in/">unserer Webseite zum Magento-Plugin</a>.</li>
|
40 |
+
</ol>
|
41 |
+
<p>Dies ist die Liste der von Girosolution/GiroCheckout angebotenen Bezahlverfahren:</p>
|
42 |
<ul>
|
43 |
<li>giropay (Garantierte Online-Überweisung für Deutschland) - auch in Kombination mit der Altersverifikation giropay-ID</li>
|
44 |
<li>eps (Garantierte Online-Überweisungen in Österreich)</li>
|
55 |
<li><strong>E-Mail: </strong><a href="mailto:support@girosolution.de">support@girosolution.de</a></li>
|
56 |
<li><strong>Telefon: </strong>+49 7554 97090-00</li>
|
57 |
</ul></description>
|
58 |
+
<notes>This version has the following changes compared to the previous one:
|
59 |
- Added payment method giropay+giropay-ID
|
60 |
- Added payment method Paydirekt
|
61 |
- Added payment method Sofort Überweisung
|
64 |
- New eps logo
|
65 |
- Minor corrections and enhancements</notes>
|
66 |
<authors><author><name>Oliver Marx</name><user>girosolution</user><email>support@girosolution.de</email></author></authors>
|
67 |
+
<date>2016-08-29</date>
|
68 |
+
<time>16:30:34</time>
|
69 |
+
<contents><target name="magecommunity"><dir name="Girosolution"><dir name="Giroconnect"><dir name="Block"><dir name="Form"><file name="Creditcard.php" hash="da9f4268d3f73306fa2f5cec67de3dc9"/><file name="Directdebit.php" hash="d59b31a9942c4bd274875d76cf7dada9"/><file name="Eps.php" hash="a1affac46e4b74313656ceb7c58ad825"/><file name="Giropay.php" hash="5d57b4e42bb4078539082f6a7c8bdf43"/><file name="Ideal.php" hash="1dbf48d19f36fba70c6eeaa8859290a9"/><file name="Paydirekt.php" hash="e3674caa600ce3a4c15d791ea213413d"/><file name="Sofortuw.php" hash="fed0607b49d8edecf573ac2287579abb"/></dir></dir><dir name="Helper"><file name="AbstractPaymentProxy.php" hash="52d84cbd77fdea5a03ff82b5fbd35d08"/><file name="Creditcard.php" hash="f507043844aaf9b88fa72c0475b28855"/><file name="CreditcardPaymentProxy.php" hash="0655730ee36024816a213bf08ed4cde3"/><file name="Data.php" hash="1ca59ed42becc6b9e8cabd9f25167b9d"/><file name="Directdebit.php" hash="0d279e6d3b482c88734b8812ad8ac3b6"/><file name="DirectdebitPaymentProxy.php" hash="a0754d004acc3d1f01ff81a73e7321b2"/><file name="Eps.php" hash="fb68581068ab53996796d0703463d580"/><file name="EpsPaymentProxy.php" hash="ca2b731d082e4b932b1c471c6419db91"/><file name="Giropay.php" hash="71fc3d8d01372a3e5fc1a7ea53ee3b94"/><file name="GiropayPaymentProxy.php" hash="afe8e6da24316097141e4d92013c9e94"/><file name="Ideal.php" hash="27d8e79434fc7ba1d89c4f73a68b4128"/><file name="IdealPaymentProxy.php" hash="4745f2dd05aac5c7b284db1c9eaf4147"/><file name="Paydirekt.php" hash="ecbf9cd022c72c60485c2149ddecc88a"/><file name="PaydirektPaymentProxy.php" hash="3be6e33940b7cdaa9b1e3a170a164dcd"/><file name="Sofortuw.php" hash="21df61ae435de8a57b7ce3eef69b1901"/><file name="SofortuwPaymentProxy.php" hash="647d463b34fff6e8e6182249786d4866"/></dir><dir name="Model"><file name="Observer.php" hash="fad2eed21c476a32444098dc0c55856d"/><dir name="Payment"><file name="Abstract.php" hash="bae4440864c63892d62e678748ee41d0"/><file name="Creditcard.php" hash="12e9474083f3ba3725ef0e42cc23756e"/><file name="Directdebit.php" hash="f8520809fcf0be702072a3fe8db6db76"/><file name="Eps.php" hash="c12b0ff1445c89fa350efd5b4c2d25ec"/><file name="Giropay.php" hash="b5620d92f7e54cafa89752ad15ddbeeb"/><file name="Ideal.php" hash="659f834b3e383dc86f593eb80f40fb24"/><file name="Paydirekt.php" hash="89eb8dc8bef8c6af6317722eff0ce3fd"/><file name="Sofortuw.php" hash="85ee90b85510fd655d15deda61557232"/></dir></dir><dir name="controllers"><file name="CreditcardController.php" hash="84c55a4341ddf2b3711cfdc29cce5360"/><file name="DirectdebitController.php" hash="3ea16830cbc3e491ca0035e7c8653475"/><file name="EpsController.php" hash="9d446bef9326b0c541674b0a409abcfa"/><file name="GiropayController.php" hash="d130316307b7bb84c0ed3bdd33163b5d"/><file name="IdealController.php" hash="0a3bc6a2357c583105cc10c5febd7dcc"/><file name="PaydirektController.php" hash="f274c4fc0c3d509008f1ea1abf1452b9"/><file name="SofortuwController.php" hash="912310a95576f02aa833fd8865f527d0"/></dir><dir name="etc"><file name="config.xml" hash="7dc43131f0a404f5f646741c3f9ad482"/><file name="system.xml" hash="dbe6d6217504526d5877daa031831dbf"/></dir><file name=".DS_Store" hash="9567c71fb3193ad25155b1c371035ddf"/></dir><file name=".DS_Store" hash="e87a74c473c6142d7a1b90396140893f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="giroconnect"><file name="giroconnectlayout.xml" hash="985e589aaa725053ae11bdc351a3c741"/></dir></dir><dir name="template"><dir name="giroconnect"><dir name="creditcard"><file name="form.phtml" hash="1e0e7f1420c85c636b3c65df5759d8aa"/></dir><dir name="directdebit"><file name="form.phtml" hash="2fb7c488b88e6006e77102f9e288ec6f"/></dir><dir name="eps"><file name="form.phtml" hash="776dbe124e12f6352eb5833715f6ad55"/></dir><dir name="giropay"><file name="form.phtml" hash="7a61bce9dfac3aec7293d21a4abad4d2"/></dir><dir name="ideal"><file name="form.phtml" hash="9d27c8d4eb588e560c3c21aea0622fa2"/></dir><dir name="paydirekt"><file name="form.phtml" hash="295e978704cdd2acc7c2dec1eeb2326f"/></dir><dir name="sofortuw"><file name="form.phtml" hash="edf34ca9f6f110ca9c46a6d95f2c0ad0"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Girosolution_Giroconnect.xml" hash="66789673756b5bf7a9900941aa5b31c8"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="Girosolution_Giroconnect.csv" hash="e3aa1634c8f84b1c75cd3fca5d92efab"/></dir></target><target name="magelib"><dir name="GiroCheckout_SDK"><file name="GiroCheckout_SDK.php" hash="d781f6640be2f22d0a65ddd72f18b500"/><file name="GiroCheckout_SDK_Config.php" hash="ec6d3d3634253edaf350829f23bc9d50"/><file name="GiroCheckout_SDK_Notify.php" hash="2e70bd6f362e7ee91ef1713b82ab30f7"/><file name="GiroCheckout_SDK_Request.php" hash="c85f10e7802875844757ed0c0e53ef99"/><file name="GiroCheckout_SDK_Request_Cart.php" hash="d3537fbe56d1c1097fcd525cb9023f3a"/><file name="GiroCheckout_SDK_Tools.php" hash="525192c9077a605bd102775b224d16e2"/><dir name="api"><file name="GiroCheckout_SDK_AbstractApi.php" hash="465251fdd665596dd7a58a67bca3b012"/><file name="GiroCheckout_SDK_InterfaceApi.php" hash="4212b213e8fe3d805db42ad21affe1ee"/><dir name="creditcard"><file name="GiroCheckout_SDK_CreditCardCapture.php" hash="a7119104372e411b64423cff81d08f93"/><file name="GiroCheckout_SDK_CreditCardGetPKN.php" hash="470d9e83f372f5a68af053d49f562c91"/><file name="GiroCheckout_SDK_CreditCardRecurringTransaction.php" hash="192acc0e19b96d6a2e8e0a6a538261a1"/><file name="GiroCheckout_SDK_CreditCardRefund.php" hash="67a8a1ad1b6357ebec6af520e1ffa3c9"/><file name="GiroCheckout_SDK_CreditCardTransaction.php" hash="cc7b06d6b7e3eac18f5eb4fec6cac4c3"/></dir><dir name="directdebit"><file name="GiroCheckout_SDK_DirectDebitCapture.php" hash="cd436aae0fcc3af2ce8dbb9564a6146f"/><file name="GiroCheckout_SDK_DirectDebitGetPKN.php" hash="756d0ac041ffa3d6e94073cac4cf3476"/><file name="GiroCheckout_SDK_DirectDebitRefund.php" hash="b30bcc0db8a0e0817ab064f1cf95f396"/><file name="GiroCheckout_SDK_DirectDebitTransaction.php" hash="24a0ef00ac4a1939fc6afd617421d150"/><file name="GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage.php" hash="32f6a9458fa4e3e7d7957b68a2ebd6c9"/></dir><dir name="eps"><file name="GiroCheckout_SDK_EpsBankstatus.php" hash="3be0632510730e87408ca889092a44fb"/><file name="GiroCheckout_SDK_EpsIssuerList.php" hash="6ff1d3e0a30433de9271f74d5005b8ba"/><file name="GiroCheckout_SDK_EpsTransaction.php" hash="5eb6eb4c78ecd7977e6fb548ad8133ca"/></dir><dir name="girocode"><file name="GiroCheckout_SDK_GiroCodeCreateEpc.php" hash="28909cefe43707be1b0b2b689b54656d"/><file name="GiroCheckout_SDK_GiroCodeCreatePayment.php" hash="d0339f0a8a60c444ed508ee256593714"/><file name="GiroCheckout_SDK_GiroCodeGetEpc.php" hash="d40c97710371a22321bbcc99171a6f1b"/></dir><dir name="giropay"><file name="GiroCheckout_SDK_GiropayBankstatus.php" hash="618c847dadb0614d3d056b2a8b1e4f9e"/><file name="GiroCheckout_SDK_GiropayIDCheck.php" hash="a91e8275a91485516f2a70e200df61f2"/><file name="GiroCheckout_SDK_GiropayIssuerList.php" hash="7a5cbdac111badaf5c73d1fcd11ec01a"/><file name="GiroCheckout_SDK_GiropayTransaction.php" hash="29c777b71d4bc04e894003114f8c68cb"/><file name="GiroCheckout_SDK_GiropayTransactionWithGiropayID.php" hash="0f47a87701be6083666a58a009466f9d"/></dir><dir name="ideal"><file name="GiroCheckout_SDK_IdealIssuerList.php" hash="57cd398f1397831b7160570cfed3ca5c"/><file name="GiroCheckout_SDK_IdealPayment.php" hash="ec3ca7d81f01c150a0d6e3ca8f3c43f9"/><file name="GiroCheckout_SDK_IdealPaymentRefund.php" hash="d5e38c4b5cdb8960cc5b31faacacd398"/></dir><dir name="paydirekt"><file name="GiroCheckout_SDK_PaydirektCapture.php" hash="40b721a3273d67e093f5769ce06e537f"/><file name="GiroCheckout_SDK_PaydirektRefund.php" hash="adf8441f59c1ee4e7f30302495d2f623"/><file name="GiroCheckout_SDK_PaydirektTransaction.php" hash="21849effd5c839692792cbf0eb1fb4cd"/></dir><dir name="paypal"><file name="GiroCheckout_SDK_PaypalTransaction.php" hash="ed865f1cf8ae7b8b63a17bf679fed060"/></dir><dir name="sofortuw"><file name="GiroCheckout_SDK_SofortUwTransaction.php" hash="a5464cad74340395267c7c367732a4c7"/></dir><dir name="tools"><file name="GiroCheckout_SDK_Tools_GetTransaction.php" hash="976d4665a28e6e732ad6e9d23efd208e"/></dir><file name=".DS_Store" hash="ad7a03e15eaa0ffab00d570c744f4f43"/></dir><file name="cacert.pem" hash="9f92a0d9f605e227ae068e605f4c86fa"/><dir name="helper"><file name="GiroCheckout_SDK_Curl_helper.php" hash="49f9cf964ccc2aa493b4b32482db29a9"/><file name="GiroCheckout_SDK_Debug_helper.php" hash="93782e71d487dd90f190ec69b203a627"/><file name="GiroCheckout_SDK_Exception_helper.php" hash="8b7e594f96d27d34094ca48cc987f924"/><file name="GiroCheckout_SDK_Hash_helper.php" hash="fa18b4830b478f4e3273e78d5ebd607d"/><file name="GiroCheckout_SDK_ResponseCode_helper.php" hash="1138e1942cbb493f03db7a4e7e9807e6"/><file name="GiroCheckout_SDK_TransactionType_helper.php" hash="8b503b8defcc6782aba6ca0838bb44af"/></dir><dir name="log"><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/><file name=".htaccess" hash="6f90e67e1aa0ea2a524430a1d554b7f9"/></dir><file name=".DS_Store" hash="713cb3202752c1278861dfeabccf757b"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="giroconnect"><file name="Logo_EC_40_px.jpg" hash="aef230161c29ed7d3823f7f551060c65"/><file name="Logo_EC_50_px.jpg" hash="425c170e1df787dbf19de9dff2e56114"/><file name="Logo_EC_60_px.jpg" hash="f17b079d7e5602bf5b1f3e07606b448d"/><file name="Logo_VISA_MC_40_px.jpg" hash="91c95f1da4f0bac7d74f8b858e3a959d"/><file name="Logo_VISA_MC_50_px.jpg" hash="b8d75f4b45cace78e9f34e95f844f300"/><file name="Logo_VISA_MC_60_px.jpg" hash="6b0cd4e564bef980a895a60495456ee5"/><file name="Logo_bluecode_50_px.jpg" hash="5be40eacf2ec4e38b869138f46d969a9"/><file name="Logo_eps_40_px.jpg" hash="854d254e82f992ae18e26deaac188a53"/><file name="Logo_eps_50_px.jpg" hash="b3b0e39121b5f6fe45a2289ede95f2bf"/><file name="Logo_eps_60_px.jpg" hash="e5a42417e574d75ed45cb967b5d0b452"/><file name="Logo_giropay_40_px.jpg" hash="e75ed3616e148349cdff5e4a0ee31ddb"/><file name="Logo_giropay_50_px.jpg" hash="da239a7c5dce1f8f386ae71a47558e27"/><file name="Logo_giropay_60_px.jpg" hash="b239a4381e33daf9a833360f7dc0e8ff"/><file name="Logo_iDeal_40_px.jpg" hash="383d2477aa82b0b12c0858fe58c59785"/><file name="Logo_iDeal_50_px.jpg" hash="b0a845c3b79ca362b48f6fdf58f38251"/><file name="Logo_iDeal_60_px.jpg" hash="afe3029494284474167506b7d293fdf3"/><file name="Logo_paydirekt_40_px.jpg" hash="ac540a86f7eea46a4d6ac63acb6bd697"/><file name="Logo_paydirekt_50_px.jpg" hash="4d6e01e86127c3e65d754d6bea634f87"/><file name="Logo_paydirekt_60_px.jpg" hash="827325f3c9d3ba531354230ccb67627c"/><file name="Logo_sofort_40_px.jpg" hash="5ea04c960f86e2d8c305a0d7a44bd481"/><file name="Logo_sofort_50_px.jpg" hash="f53d3f2e3bfe9fce6c8bc753db04e03f"/><file name="Logo_sofort_60_px.jpg" hash="bae169dcdc9c4b13a68c639eb173858a"/><file name="amex_40px.jpg" hash="6dc37da20756b28105adb1925a85a1d7"/><file name="amex_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="amex_jcb_40px.jpg" hash="9cbd9babe028ba87012d19ac11ccc868"/><file name="jcb_40px.jpg" hash="15bec02c409ab690839b988d809ba438"/><file name="jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_40px.jpg" hash="6b4c9114e1377fc7eee488aa5810be65"/><file name="visa_msc_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_amex_40px.jpg" hash="420bb2a8b31763ec2cc2f16a83f9fd0e"/><file name="visa_msc_amex_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_amex_jcb_40px.jpg" hash="96fe1a2961ca8291a6992243ce7a21e5"/><file name="visa_msc_amex_jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name="visa_msc_jcb_40px.jpg" hash="573d32ad0be8ce78ce606c4c14c5297b"/><file name="visa_msc_jcb_40px.png" hash="2d2a6f4ab9df1451c35483ac30cbe368"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></dir></dir></dir></dir></target></contents>
|
70 |
<compatible/>
|
71 |
<dependencies><required><php><min>5.2.0</min><max>7.0.0</max></php></required></dependencies>
|
72 |
</package>
|
skin/frontend/base/default/images/giroconnect/Logo_bluecode_50_px.jpg
ADDED
Binary file
|