Version Notes
This version has the following changes compared to the previous one:
- Set the locale to 'en' for languages other than 'de' and 'en' in creditcard payment method.
- Add the discount coupon to paydirect payment method.
Download this release
Release Info
Developer | Oliver Marx |
Extension | GiroCheckout |
Version | 4.0.0.9 |
Comparing to | |
See all releases |
Code changes from version 4.0.0.8 to 4.0.0.9
- app/code/community/Girosolution/Giroconnect/Helper/AbstractPaymentProxy.php +2 -0
- app/code/community/Girosolution/Giroconnect/Helper/CreditcardPaymentProxy.php +10 -2
- app/code/community/Girosolution/Giroconnect/Helper/PaydirektPaymentProxy.php +6 -1
- app/code/community/Girosolution/Giroconnect/etc/config.xml +1 -1
- app/design/frontend/base/default/layout/giroconnect/giroconnectlayout.xml +17 -3
- package.xml +7 -7
app/code/community/Girosolution/Giroconnect/Helper/AbstractPaymentProxy.php
CHANGED
@@ -160,6 +160,8 @@ class Girosolution_Giroconnect_Helper_AbstractPaymentProxy {
|
|
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'] = '';
|
160 |
$aShippingInfo['FirstName'] = $aAddress['firstname'];
|
161 |
$aShippingInfo['Mail'] = $aAddress['email'];
|
162 |
$aShippingInfo['Amount'] = round($aOrderData['shipping_amount'], 2);
|
163 |
+
$aShippingInfo['DiscountAmount'] = round($aOrderData['discount_amount'], 2);
|
164 |
+
$aShippingInfo['CouponCode'] = $aOrderData['coupon_code'];
|
165 |
$aShippingInfo['orderAmount'] = round($aOrderData['subtotal'], 2);
|
166 |
$aShippingInfo['Company'] = $aAddress['company'];
|
167 |
$aShippingInfo['AdditionalAddressInformation'] = '';
|
app/code/community/Girosolution/Giroconnect/Helper/CreditcardPaymentProxy.php
CHANGED
@@ -81,6 +81,14 @@ class Girosolution_Giroconnect_Helper_CreditcardPaymentProxy extends Girosolutio
|
|
81 |
'status' => 1002,
|
82 |
);
|
83 |
try {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
//Sends request to Girocheckout.
|
86 |
$request = new GiroCheckout_SDK_Request('creditCardTransaction');
|
@@ -91,14 +99,14 @@ class Girosolution_Giroconnect_Helper_CreditcardPaymentProxy extends Girosolutio
|
|
91 |
->addParam('amount', $amount * 100)
|
92 |
->addParam('currency', $currency)
|
93 |
->addParam('purpose', $purpose)
|
94 |
-
->addParam('locale', $
|
95 |
->addParam('urlRedirect', $this->urlRedirect)
|
96 |
->addParam('urlNotify', $this->urlNotify)
|
97 |
->addParam('sourceId', $sourceParam)
|
98 |
->addParam('orderId', $realorderId)
|
99 |
->addParam('customerId', $clientId)
|
100 |
->submit();
|
101 |
-
|
102 |
if ($request->requestHasSucceeded()) {
|
103 |
$strUrlRedirect = $request->getResponseParam('redirect');
|
104 |
|
81 |
'status' => 1002,
|
82 |
);
|
83 |
try {
|
84 |
+
// Set language to EN in case it is distinct DE or EN
|
85 |
+
if( strtoupper($this->languageCode) != 'DE' && strtoupper($this->languageCode) != 'EN' )
|
86 |
+
{
|
87 |
+
$strLanguage = 'en';
|
88 |
+
}
|
89 |
+
else {
|
90 |
+
$strLanguage = $this->languageCode;
|
91 |
+
}
|
92 |
|
93 |
//Sends request to Girocheckout.
|
94 |
$request = new GiroCheckout_SDK_Request('creditCardTransaction');
|
99 |
->addParam('amount', $amount * 100)
|
100 |
->addParam('currency', $currency)
|
101 |
->addParam('purpose', $purpose)
|
102 |
+
->addParam('locale', $strLanguage)
|
103 |
->addParam('urlRedirect', $this->urlRedirect)
|
104 |
->addParam('urlNotify', $this->urlNotify)
|
105 |
->addParam('sourceId', $sourceParam)
|
106 |
->addParam('orderId', $realorderId)
|
107 |
->addParam('customerId', $clientId)
|
108 |
->submit();
|
109 |
+
|
110 |
if ($request->requestHasSucceeded()) {
|
111 |
$strUrlRedirect = $request->getResponseParam('redirect');
|
112 |
|
app/code/community/Girosolution/Giroconnect/Helper/PaydirektPaymentProxy.php
CHANGED
@@ -83,6 +83,11 @@ class Girosolution_Giroconnect_Helper_PaydirektPaymentProxy extends Girosolution
|
|
83 |
$oCart->addItem( $item[0], $item[1], $item[2], $item[3]);
|
84 |
}
|
85 |
|
|
|
|
|
|
|
|
|
|
|
86 |
//Sends request to Girocheckout.
|
87 |
$request = new GiroCheckout_SDK_Request('paydirektTransaction');
|
88 |
$request->setSecret($this->projectPassword);
|
@@ -110,7 +115,7 @@ class Girosolution_Giroconnect_Helper_PaydirektPaymentProxy extends Girosolution
|
|
110 |
->addParam('orderId', $realorderId)
|
111 |
->addParam('customerId', $clientId)
|
112 |
->submit();
|
113 |
-
|
114 |
if ($request->requestHasSucceeded()) {
|
115 |
$strUrlRedirect = $request->getResponseParam('redirect');
|
116 |
|
83 |
$oCart->addItem( $item[0], $item[1], $item[2], $item[3]);
|
84 |
}
|
85 |
|
86 |
+
// Apply discount coupon Rabatt (Gutschein ...)
|
87 |
+
if( isset($aShippingData['CouponCode']) && isset($aShippingData['DiscountAmount']) ) {
|
88 |
+
$oCart->addItem( "Rabatt (Gutschein " . $aShippingData['CouponCode'] . ")", 1, $aShippingData['DiscountAmount']*100, "");
|
89 |
+
}
|
90 |
+
|
91 |
//Sends request to Girocheckout.
|
92 |
$request = new GiroCheckout_SDK_Request('paydirektTransaction');
|
93 |
$request->setSecret($this->projectPassword);
|
115 |
->addParam('orderId', $realorderId)
|
116 |
->addParam('customerId', $clientId)
|
117 |
->submit();
|
118 |
+
|
119 |
if ($request->requestHasSucceeded()) {
|
120 |
$strUrlRedirect = $request->getResponseParam('redirect');
|
121 |
|
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.9</version>
|
6 |
</Girosolution_Giroconnect>
|
7 |
</modules>
|
8 |
<global>
|
app/design/frontend/base/default/layout/giroconnect/giroconnectlayout.xml
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<![CDATA[
|
9 |
<link rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v2/style.css" />
|
10 |
<script src="https://bankauswahl.giropay.de/widget/v2/girocheckoutwidget.js"></script>
|
11 |
-
|
12 |
</text>
|
13 |
</action>
|
14 |
</block>
|
@@ -18,14 +18,28 @@
|
|
18 |
<reference name="head">
|
19 |
<block type="core/text" name="girocheckoutwidget">
|
20 |
<action method="setText">
|
21 |
-
|
22 |
<![CDATA[
|
23 |
<link rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v2/style.css" />
|
24 |
<script src="https://bankauswahl.giropay.de/widget/v2/girocheckoutwidget.js"></script>
|
25 |
-
|
26 |
</text>
|
27 |
</action>
|
28 |
</block>
|
29 |
</reference>
|
30 |
</ultimatecheckout_index_index>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
</layout>
|
8 |
<![CDATA[
|
9 |
<link rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v2/style.css" />
|
10 |
<script src="https://bankauswahl.giropay.de/widget/v2/girocheckoutwidget.js"></script>
|
11 |
+
]]>
|
12 |
</text>
|
13 |
</action>
|
14 |
</block>
|
18 |
<reference name="head">
|
19 |
<block type="core/text" name="girocheckoutwidget">
|
20 |
<action method="setText">
|
21 |
+
<text>
|
22 |
<![CDATA[
|
23 |
<link rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v2/style.css" />
|
24 |
<script src="https://bankauswahl.giropay.de/widget/v2/girocheckoutwidget.js"></script>
|
25 |
+
]]>
|
26 |
</text>
|
27 |
</action>
|
28 |
</block>
|
29 |
</reference>
|
30 |
</ultimatecheckout_index_index>
|
31 |
+
<typostores_onestepcheckout_index_index>
|
32 |
+
<reference name="head">
|
33 |
+
<block type="core/text" name="girocheckoutwidget">
|
34 |
+
<action method="setText">
|
35 |
+
<text>
|
36 |
+
<![CDATA[
|
37 |
+
<link rel="stylesheet" href="https://bankauswahl.giropay.de/widget/v2/style.css" />
|
38 |
+
<script src="https://bankauswahl.giropay.de/widget/v2/girocheckoutwidget.js"></script>
|
39 |
+
]]>
|
40 |
+
</text>
|
41 |
+
</action>
|
42 |
+
</block>
|
43 |
+
</reference>
|
44 |
+
</typostores_onestepcheckout_index_index>
|
45 |
</layout>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
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>
|
@@ -56,12 +56,12 @@
|
|
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 |
-
-
|
60 |
-
-
|
61 |
<authors><author><name>Oliver Marx</name><user>girosolution</user><email>support@girosolution.de</email></author></authors>
|
62 |
-
<date>2017-
|
63 |
-
<time>
|
64 |
-
<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="825f22d549f76755f883a5328b1bf5b0"/><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="81a054c667651544e09bdf861293f3a4"/><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="95dbb812d710778fe09ea21c529f079e"/><file name="DirectdebitController.php" hash="11d96131c13c2155470d0ddb95343c39"/><file name="EpsController.php" hash="ff1de92a621efc0caaf4245751815213"/><file name="GiropayController.php" hash="e418f3d0e6f7d332fb84eaf9d2f8d4c1"/><file name="IdealController.php" hash="eeb2b144abe63b9e763e0d7c6a61f87f"/><file name="PaydirektController.php" hash="ae6633f153d6abfa70b6bb5b6566b444"/><file name="SofortuwController.php" hash="5d159579aa94633848509225f50a5162"/></dir><dir name="etc"><file name="config.xml" hash="f8c7520df542a971c817ef65b547fc35"/><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="857f2b01bd42f8efdcc9dc664f877b76"/></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="23ca62f8db55f22c50c4b6ac42490863"/><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>
|
65 |
<compatible/>
|
66 |
-
<dependencies><required><php><min>5.2.0</min><max>7.0.
|
67 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>GiroCheckout</name>
|
4 |
+
<version>4.0.0.9</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>
|
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 |
+
- Set the locale to 'en' for languages other than 'de' and 'en' in creditcard payment method.
|
60 |
+
- Add the discount coupon to paydirect payment method.</notes>
|
61 |
<authors><author><name>Oliver Marx</name><user>girosolution</user><email>support@girosolution.de</email></author></authors>
|
62 |
+
<date>2017-07-03</date>
|
63 |
+
<time>21:50:36</time>
|
64 |
+
<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="2c4d12db1b645e58fae0f86335639de0"/><file name="Creditcard.php" hash="f507043844aaf9b88fa72c0475b28855"/><file name="CreditcardPaymentProxy.php" hash="e02763a94c1ad84ef375d84fd01f2dcf"/><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="e6eed94db836f69bd08ccf906be2e02b"/><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="81a054c667651544e09bdf861293f3a4"/><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="95dbb812d710778fe09ea21c529f079e"/><file name="DirectdebitController.php" hash="11d96131c13c2155470d0ddb95343c39"/><file name="EpsController.php" hash="ff1de92a621efc0caaf4245751815213"/><file name="GiropayController.php" hash="e418f3d0e6f7d332fb84eaf9d2f8d4c1"/><file name="IdealController.php" hash="eeb2b144abe63b9e763e0d7c6a61f87f"/><file name="PaydirektController.php" hash="ae6633f153d6abfa70b6bb5b6566b444"/><file name="SofortuwController.php" hash="5d159579aa94633848509225f50a5162"/></dir><dir name="etc"><file name="config.xml" hash="bf07467c4970d3dc65e16737de4ea2f8"/><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="d4c1347068040556945f31df7645707c"/></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="857f2b01bd42f8efdcc9dc664f877b76"/></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="23ca62f8db55f22c50c4b6ac42490863"/><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>
|
65 |
<compatible/>
|
66 |
+
<dependencies><required><php><min>5.2.0</min><max>7.0.20</max></php></required></dependencies>
|
67 |
</package>
|