Version Notes
In this version the following things were already tested successfully on 1.4.2.0,1.5.0.1,1.5.1.0,1.6.0.0,1.6.1.0,1.6.2.0,1.7.0.0,1.7.0.1,1.7.0.2
Download this release
Release Info
Developer | Magento Core Team |
Extension | ZerebroInternet_Barzahlen |
Version | 1.1.8 |
Comparing to | |
See all releases |
Code changes from version 1.1.7 to 1.1.8
- app/code/community/ZerebroInternet/Barzahlen/Model/Barzahlen.php +3 -3
- app/code/community/ZerebroInternet/Barzahlen/Model/Payment.php +69 -18
- app/code/community/ZerebroInternet/Barzahlen/etc/config.xml +10 -1
- app/design/adminhtml/base/default/template/barzahlen/.DS_Store +0 -0
- app/design/adminhtml/base/default/template/barzahlen/form.phtml +39 -0
- app/design/adminhtml/base/default/template/barzahlen/info.phtml +24 -0
- app/design/adminhtml/base/default/template/barzahlen/mark.phtml +24 -0
- app/design/frontend/base/default/layout/barzahlen.xml +1 -1
- app/locale/de_DE/ZerebroInternet_Barzahlen_Admin.csv +4 -1
- app/locale/en_US/ZerebroInternet_Barzahlen_Admin.csv +4 -1
- package.xml +4 -4
app/code/community/ZerebroInternet/Barzahlen/Model/Barzahlen.php
CHANGED
@@ -37,9 +37,9 @@ class ZerebroInternet_Barzahlen_Model_Barzahlen extends Mage_Payment_Model_Metho
|
|
37 |
*/
|
38 |
protected $_canRefund = true; //!< Barzahlen transactions can be refunded
|
39 |
protected $_canRefundInvoicePartial = true; //!< refunds can be done partial
|
40 |
-
protected $_canUseInternal = true; //!< can be used in admin panel
|
41 |
-
protected $_canUseCheckout = true; //!< can be used as method on checkout
|
42 |
-
protected $_canUseForMultishipping = true; //!<
|
43 |
|
44 |
/**
|
45 |
* Barzahlen payment state possible values
|
37 |
*/
|
38 |
protected $_canRefund = true; //!< Barzahlen transactions can be refunded
|
39 |
protected $_canRefundInvoicePartial = true; //!< refunds can be done partial
|
40 |
+
protected $_canUseInternal = true; //!< can be used in admin panel checkout
|
41 |
+
protected $_canUseCheckout = true; //!< can be used as method on onepage checkout
|
42 |
+
protected $_canUseForMultishipping = true; //!< can be used as method on multipage checkout
|
43 |
|
44 |
/**
|
45 |
* Barzahlen payment state possible values
|
app/code/community/ZerebroInternet/Barzahlen/Model/Payment.php
CHANGED
@@ -22,6 +22,42 @@
|
|
22 |
|
23 |
class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_Model_Barzahlen {
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
/**
|
26 |
* Performs payment handling and order update.
|
27 |
*/
|
@@ -34,6 +70,33 @@ class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_
|
|
34 |
return;
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
$orderAddress = $order->getBillingAddress();
|
38 |
$customerEmail = $order->getCustomerEmail();
|
39 |
$customerStreetNr = $orderAddress->getData("street");
|
@@ -45,7 +108,7 @@ class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_
|
|
45 |
$payment = Mage::getModel('barzahlen/api_request_payment',
|
46 |
array('customerEmail' => $customerEmail, 'customerStreetNr' => $customerStreetNr,
|
47 |
'customerZipcode' => $customerZipcode, 'customerCity' => $customerCity,
|
48 |
-
'customerCountry' => $customerCountry, 'orderId' => $
|
49 |
|
50 |
// filter the 3 custom vars and escape them for HTML compliance
|
51 |
$tcHelper = Mage::getModel('core/email_template_filter');
|
@@ -54,21 +117,7 @@ class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_
|
|
54 |
$customVar2 = $tcHelper->filter($this->getConfigData('custom_var_2'));
|
55 |
$payment->setCustomVar($customVar0, $customVar1, $customVar2);
|
56 |
|
57 |
-
|
58 |
-
Mage::getSingleton('barzahlen/barzahlen')->getBarzahlenApi()->handleRequest($payment);
|
59 |
-
}
|
60 |
-
catch (Exception $e) {
|
61 |
-
Mage::helper('barzahlen')->bzLog($e);
|
62 |
-
$this->_registerFailure($order);
|
63 |
-
throw $e;
|
64 |
-
}
|
65 |
-
|
66 |
-
if($payment->isValid()) {
|
67 |
-
$this->_registerSuccess($order, $payment->getXmlArray());
|
68 |
-
}
|
69 |
-
else {
|
70 |
-
$this->_registerFailure($order);
|
71 |
-
}
|
72 |
}
|
73 |
|
74 |
/**
|
@@ -129,7 +178,7 @@ class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_
|
|
129 |
* @param Mage_Sales_Model_Order $order
|
130 |
* @param array $xmlArray array with xml response information
|
131 |
*/
|
132 |
-
protected function _registerSuccess($order, array $xmlArray) {
|
133 |
|
134 |
$session = Mage::getSingleton('checkout/session');
|
135 |
$session->setResponse('200');
|
@@ -137,7 +186,9 @@ class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_
|
|
137 |
$session->getQuote()->setIsActive(false)->save();
|
138 |
|
139 |
$order->getPayment()->setAdditionalInformation('transaction_id', $xmlArray['transaction-id']);
|
140 |
-
|
|
|
|
|
141 |
$order->addStatusHistoryComment(Mage::helper('barzahlen')->__('bz_frnt_ipn_pending'), Mage::getModel('barzahlen/barzahlen')->getConfigData('order_status'));
|
142 |
$order->save();
|
143 |
}
|
22 |
|
23 |
class ZerebroInternet_Barzahlen_Model_Payment extends ZerebroInternet_Barzahlen_Model_Barzahlen {
|
24 |
|
25 |
+
/**
|
26 |
+
* Observer action if Barzahlen was choosen as payment method for backend
|
27 |
+
* order creation.
|
28 |
+
*
|
29 |
+
* @param Mage_Sales_Model_Order $order
|
30 |
+
* @param Mage_Sales_Model_Quote $quote
|
31 |
+
* @return null
|
32 |
+
*/
|
33 |
+
public function adminObserver($order, $quote) {
|
34 |
+
|
35 |
+
$order = $order->getOrder();
|
36 |
+
|
37 |
+
if($order->getPayment()->getMethod() != ZerebroInternet_Barzahlen_Model_Barzahlen::PAYMENT_CODE) {
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
|
41 |
+
$payment = $this->_createPayment($order);
|
42 |
+
|
43 |
+
try {
|
44 |
+
Mage::getSingleton('barzahlen/barzahlen')->getBarzahlenApi()->handleRequest($payment);
|
45 |
+
}
|
46 |
+
catch (Exception $e) {
|
47 |
+
Mage::helper('barzahlen')->bzLog($e);
|
48 |
+
$this->_registerFailure($order);
|
49 |
+
Mage::throwException(Mage::helper('barzahlen')->__('bz_adm_resend_error'));
|
50 |
+
}
|
51 |
+
|
52 |
+
if($payment->isValid()) {
|
53 |
+
$this->_registerSuccess($order, $payment->getXmlArray(), true);
|
54 |
+
}
|
55 |
+
else {
|
56 |
+
$this->_registerFailure($order);
|
57 |
+
Mage::throwException(Mage::helper('barzahlen')->__('bz_adm_resend_error'));
|
58 |
+
}
|
59 |
+
}
|
60 |
+
|
61 |
/**
|
62 |
* Performs payment handling and order update.
|
63 |
*/
|
70 |
return;
|
71 |
}
|
72 |
|
73 |
+
$payment = $this->_createPayment($order);
|
74 |
+
|
75 |
+
try {
|
76 |
+
Mage::getSingleton('barzahlen/barzahlen')->getBarzahlenApi()->handleRequest($payment);
|
77 |
+
}
|
78 |
+
catch (Exception $e) {
|
79 |
+
Mage::helper('barzahlen')->bzLog($e);
|
80 |
+
$this->_registerFailure($order);
|
81 |
+
throw $e;
|
82 |
+
}
|
83 |
+
|
84 |
+
if($payment->isValid()) {
|
85 |
+
$this->_registerSuccess($order, $payment->getXmlArray());
|
86 |
+
}
|
87 |
+
else {
|
88 |
+
$this->_registerFailure($order);
|
89 |
+
}
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* Generates Barzahlen_Payment_Request from order details.
|
94 |
+
*
|
95 |
+
* @param Mage_Sales_Model_Order $order
|
96 |
+
* @return Barzahlen_Request_Payment
|
97 |
+
*/
|
98 |
+
protected function _createPayment(Mage_Sales_Model_Order $order) {
|
99 |
+
|
100 |
$orderAddress = $order->getBillingAddress();
|
101 |
$customerEmail = $order->getCustomerEmail();
|
102 |
$customerStreetNr = $orderAddress->getData("street");
|
108 |
$payment = Mage::getModel('barzahlen/api_request_payment',
|
109 |
array('customerEmail' => $customerEmail, 'customerStreetNr' => $customerStreetNr,
|
110 |
'customerZipcode' => $customerZipcode, 'customerCity' => $customerCity,
|
111 |
+
'customerCountry' => $customerCountry, 'orderId' => $order->getRealOrderId(), 'amount' => $amount, 'currency' => $currency));
|
112 |
|
113 |
// filter the 3 custom vars and escape them for HTML compliance
|
114 |
$tcHelper = Mage::getModel('core/email_template_filter');
|
117 |
$customVar2 = $tcHelper->filter($this->getConfigData('custom_var_2'));
|
118 |
$payment->setCustomVar($customVar0, $customVar1, $customVar2);
|
119 |
|
120 |
+
return $payment;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
}
|
122 |
|
123 |
/**
|
178 |
* @param Mage_Sales_Model_Order $order
|
179 |
* @param array $xmlArray array with xml response information
|
180 |
*/
|
181 |
+
protected function _registerSuccess($order, array $xmlArray, $admin = false) {
|
182 |
|
183 |
$session = Mage::getSingleton('checkout/session');
|
184 |
$session->setResponse('200');
|
186 |
$session->getQuote()->setIsActive(false)->save();
|
187 |
|
188 |
$order->getPayment()->setAdditionalInformation('transaction_id', $xmlArray['transaction-id']);
|
189 |
+
if(!$admin) {
|
190 |
+
$order->sendNewOrderEmail();
|
191 |
+
}
|
192 |
$order->addStatusHistoryComment(Mage::helper('barzahlen')->__('bz_frnt_ipn_pending'), Mage::getModel('barzahlen/barzahlen')->getConfigData('order_status'));
|
193 |
$order->save();
|
194 |
}
|
app/code/community/ZerebroInternet/Barzahlen/etc/config.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
|
26 |
<modules>
|
27 |
<ZerebroInternet_Barzahlen>
|
28 |
-
<version>1.1.
|
29 |
</ZerebroInternet_Barzahlen>
|
30 |
</modules>
|
31 |
|
@@ -115,6 +115,15 @@
|
|
115 |
</modules>
|
116 |
</translate>
|
117 |
<events>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
<sales_order_creditmemo_refund>
|
119 |
<observers>
|
120 |
<barzahlen_observer>
|
25 |
|
26 |
<modules>
|
27 |
<ZerebroInternet_Barzahlen>
|
28 |
+
<version>1.1.8</version>
|
29 |
</ZerebroInternet_Barzahlen>
|
30 |
</modules>
|
31 |
|
115 |
</modules>
|
116 |
</translate>
|
117 |
<events>
|
118 |
+
<checkout_submit_all_after>
|
119 |
+
<observers>
|
120 |
+
<barzahlen_observer>
|
121 |
+
<type>singleton</type>
|
122 |
+
<class>barzahlen/payment</class>
|
123 |
+
<method>adminObserver</method>
|
124 |
+
</barzahlen_observer>
|
125 |
+
</observers>
|
126 |
+
</checkout_submit_all_after>
|
127 |
<sales_order_creditmemo_refund>
|
128 |
<observers>
|
129 |
<barzahlen_observer>
|
app/design/adminhtml/base/default/template/barzahlen/.DS_Store
ADDED
Binary file
|
app/design/adminhtml/base/default/template/barzahlen/form.phtml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Barzahlen Payment Module
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@barzahlen.de so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category ZerebroInternet
|
16 |
+
* @package ZerebroInternet_Barzahlen
|
17 |
+
* @copyright Copyright (c) 2012 Zerebro Internet GmbH (http://www.barzahlen.de)
|
18 |
+
* @author Martin Seener
|
19 |
+
* @author Alexander Diebler
|
20 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL-3.0)
|
21 |
+
*/
|
22 |
+
|
23 |
+
?>
|
24 |
+
<?php $_code = $this->getMethodCode(); ?>
|
25 |
+
<ul class="form-list" id="payment_form_<?php echo $_code ?>" style="display:none">
|
26 |
+
<li>
|
27 |
+
<img src="https://cdn.barzahlen.de/images/barzahlen_logo.png" height="45" alt="Barzahlen" class="v-middle" />
|
28 |
+
<?php
|
29 |
+
echo Mage::getModel('barzahlen/barzahlen')->getConfigData('sandbox') ? "<br/><br/>".$this->__('bz_adm_sandbox') : null;
|
30 |
+
echo "<br/><br/>".$this->__('bz_adm_partner')." ";
|
31 |
+
for($i = 1; $i <= 10; $i++) {
|
32 |
+
$count = str_pad($i,2,"0",STR_PAD_LEFT);
|
33 |
+
echo '<img src="https://cdn.barzahlen.de/images/barzahlen_partner_'.$count.'.png" alt="" style="vertical-align: middle; height: 25px;" />';
|
34 |
+
}
|
35 |
+
?>
|
36 |
+
<br /><br />
|
37 |
+
</li>
|
38 |
+
</ul>
|
39 |
+
|
app/design/adminhtml/base/default/template/barzahlen/info.phtml
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Barzahlen Payment Module
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@barzahlen.de so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category ZerebroInternet
|
16 |
+
* @package ZerebroInternet_Barzahlen
|
17 |
+
* @copyright Copyright (c) 2012 Zerebro Internet GmbH (http://www.barzahlen.de)
|
18 |
+
* @author Martin Seener
|
19 |
+
* @author Alexander Diebler
|
20 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL-3.0)
|
21 |
+
*/
|
22 |
+
?>
|
23 |
+
|
24 |
+
<img id="payment_form_<?php echo $this->getMethodCode() ?>" src="https://cdn.barzahlen.de/images/barzahlen_logo.png" height="57" width="168" alt="Barzahlen Logo" />
|
app/design/adminhtml/base/default/template/barzahlen/mark.phtml
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Barzahlen Payment Module
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/osl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to info@barzahlen.de so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* @category ZerebroInternet
|
16 |
+
* @package ZerebroInternet_Barzahlen
|
17 |
+
* @copyright Copyright (c) 2012 Zerebro Internet GmbH (http://www.barzahlen.de)
|
18 |
+
* @author Martin Seener
|
19 |
+
* @author Alexander Diebler
|
20 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL-3.0)
|
21 |
+
*/
|
22 |
+
?>
|
23 |
+
|
24 |
+
<img src="https://cdn.barzahlen.de/images/barzahlen_logo.png" height="45" alt="Barzahlen" class="v-middle" />
|
app/design/frontend/base/default/layout/barzahlen.xml
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL-3.0)
|
22 |
*/
|
23 |
-->
|
24 |
-
<layout version="1.1.
|
25 |
<barzahlen_checkout_processing>
|
26 |
<reference name="root">
|
27 |
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
21 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL-3.0)
|
22 |
*/
|
23 |
-->
|
24 |
+
<layout version="1.1.8">
|
25 |
<barzahlen_checkout_processing>
|
26 |
<reference name="root">
|
27 |
<action method="setTemplate"><template>page/1column.phtml</template></action>
|
app/locale/de_DE/ZerebroInternet_Barzahlen_Admin.csv
CHANGED
@@ -42,4 +42,7 @@
|
|
42 |
"bz_adm_refund_error", "Es ist ein Fehler aufgetreten, die Rückzahlung konnte nicht veranlasst werden. Prüfen Sie barzahlen.log für weitere Informationen."
|
43 |
"bz_adm_resend_payment_success", "Der Zahlschein wurde erneut an den Kunden versendet."
|
44 |
"bz_adm_resend_refund_success", "Der Auszahlschein wurde erneut an den Kunden versendet."
|
45 |
-
"bz_adm_resend_error", "Es ist ein Fehler aufgetreten. Prüfen Sie barzahlen.log für weitere Informationen."
|
|
|
|
|
|
42 |
"bz_adm_refund_error", "Es ist ein Fehler aufgetreten, die Rückzahlung konnte nicht veranlasst werden. Prüfen Sie barzahlen.log für weitere Informationen."
|
43 |
"bz_adm_resend_payment_success", "Der Zahlschein wurde erneut an den Kunden versendet."
|
44 |
"bz_adm_resend_refund_success", "Der Auszahlschein wurde erneut an den Kunden versendet."
|
45 |
+
"bz_adm_resend_error", "Es ist ein Fehler aufgetreten. Prüfen Sie barzahlen.log für weitere Informationen."
|
46 |
+
"bz_adm_partner","<b>Bezahlen möglich bei:</b>"
|
47 |
+
"bz_adm_sandbox","Der <strong>Sandbox Modus</strong> ist aktiv. Allen getätigten Zahlungen wird ein Test-Zahlschein zugewiesen. Dieser kann nicht von unseren Einzelhandelspartnern verarbeitet werden."
|
48 |
+
"bz_frnt_ipn_pending","Barzahlen: Zahlschein erfolgreich angefordert und versendet."
|
app/locale/en_US/ZerebroInternet_Barzahlen_Admin.csv
CHANGED
@@ -42,4 +42,7 @@
|
|
42 |
"bz_adm_refund_error", "An error occurred, unable to create credit memo. Check barzahlen.log for further information."
|
43 |
"bz_adm_resend_payment_success", "The payment slip was resend successful."
|
44 |
"bz_adm_resend_refund_success", "The refund slip was resend successful."
|
45 |
-
"bz_adm_resend_error", "
|
|
|
|
|
|
42 |
"bz_adm_refund_error", "An error occurred, unable to create credit memo. Check barzahlen.log for further information."
|
43 |
"bz_adm_resend_payment_success", "The payment slip was resend successful."
|
44 |
"bz_adm_resend_refund_success", "The refund slip was resend successful."
|
45 |
+
"bz_adm_resend_error", "An error occurred. Please check barzahlen.log for further information."
|
46 |
+
"bz_adm_partner","<b>Payment possible at:</b>"
|
47 |
+
"bz_adm_sandbox","The <strong>Sandbox Mode</strong> is active. All placed orders receive a test payment slip. Test payment slips cannot be handled by our retail partners."
|
48 |
+
"bz_frnt_ipn_pending","Barzahlen: Payment slip requested and sent successfully."
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ZerebroInternet_Barzahlen</name>
|
4 |
-
<version>1.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Source License (OSL) 3.0</license>
|
7 |
<channel>community</channel>
|
@@ -14,9 +14,9 @@
|
|
14 |
Barzahlen let's your customers pay cash online. You get a payment confirmation in real-time and you benefit from our payment guarantee and new customer groups. See how Barzahlen works: http://www.barzahlen.de/partner/funktionsweise</description>
|
15 |
<notes>In this version the following things were already tested successfully on 1.4.2.0,1.5.0.1,1.5.1.0,1.6.0.0,1.6.1.0,1.6.2.0,1.7.0.0,1.7.0.1,1.7.0.2</notes>
|
16 |
<authors><author><name>Martin Seener</name><user>auto-converted</user><email>support@barzahlen.de</email></author><author><name>Alexander Diebler</name><user>auto-converted</user><email>support@barzahlen.de</email></author></authors>
|
17 |
-
<date>2013-
|
18 |
-
<time>
|
19 |
-
<contents><target name="magecommunity"><dir name="ZerebroInternet"><dir name="Barzahlen"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="View.php" hash="b5debd20e6e4610d445c8939eb604755"/></dir><file name="View.php" hash="356e39bbf6ec60ebc629e4db7250a2b8"/></dir></dir></dir><file name="Form.php" hash="7b8757345dd8078bc2656d4d6ff1bc5a"/><file name="Info.php" hash="aa843fd0bc613227083ebe1fc9758b23"/></dir><dir name="Helper"><file name="Data.php" hash="b09cbe4014347450f8acc16969489f0e"/></dir><dir name="Model"><dir name="Adminexceptions"><file name="Allspecificcountries.php" hash="050286cb2d67238f6d2a04657bcd47c7"/><file name="Maxordertotal.php" hash="1c1647bdf769bc7c4e7890b10212f655"/><file name="Notificationkey.php" hash="90c05ffb94c780c735e4d4a9f2e5e80c"/><file name="Paymentkey.php" hash="010bf4c06ec5c52f1a0b2ede1860bbdc"/><file name="Shopid.php" hash="028283a7457170e0d3082d43be5d4d54"/><file name="Specificcountry.php" hash="30ec14a1769fa2bbfc9473588e395a7f"/><file name="Title.php" hash="2d5aaaa22a305f0d17ec7f0b33708689"/></dir><dir name="Api"><dir name="Request"><file name="Abstract.php" hash="389992774bdd28ae2c87640c8076a793"/><file name="Payment.php" hash="5155bd60a89f6d1e81b7d9e6fc9ef18d"/><file name="Refund.php" hash="a2d7293d6f582f11189dbba1f5f8dce9"/><file name="Resend.php" hash="03a9f603503b2c95a137b3afa074ea1a"/><file name="Update.php" hash="2609e7a4e9eab13910b25734dd506c3c"/></dir><dir name="certs"><file name="ca-bundle.crt" hash="7e78dcc7f5a3aefffbb327141dd7ddcf"/></dir><file name="Abstract.php" hash="ddbdffce737e21b046c6e18001f658f1"/><file name="Notification.php" hash="472ee435c75ba6f0340f9bdbd12a8c7c"/></dir><file name="Api.php" hash="c30b68aeb92278f7c4535469d66a1df7"/><file name="Barzahlen.php" hash="
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ZerebroInternet_Barzahlen</name>
|
4 |
+
<version>1.1.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Source License (OSL) 3.0</license>
|
7 |
<channel>community</channel>
|
14 |
Barzahlen let's your customers pay cash online. You get a payment confirmation in real-time and you benefit from our payment guarantee and new customer groups. See how Barzahlen works: http://www.barzahlen.de/partner/funktionsweise</description>
|
15 |
<notes>In this version the following things were already tested successfully on 1.4.2.0,1.5.0.1,1.5.1.0,1.6.0.0,1.6.1.0,1.6.2.0,1.7.0.0,1.7.0.1,1.7.0.2</notes>
|
16 |
<authors><author><name>Martin Seener</name><user>auto-converted</user><email>support@barzahlen.de</email></author><author><name>Alexander Diebler</name><user>auto-converted</user><email>support@barzahlen.de</email></author></authors>
|
17 |
+
<date>2013-04-02</date>
|
18 |
+
<time>15:52:01</time>
|
19 |
+
<contents><target name="magecommunity"><dir name="ZerebroInternet"><dir name="Barzahlen"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Creditmemo"><file name="View.php" hash="b5debd20e6e4610d445c8939eb604755"/></dir><file name="View.php" hash="356e39bbf6ec60ebc629e4db7250a2b8"/></dir></dir></dir><file name="Form.php" hash="7b8757345dd8078bc2656d4d6ff1bc5a"/><file name="Info.php" hash="aa843fd0bc613227083ebe1fc9758b23"/></dir><dir name="Helper"><file name="Data.php" hash="b09cbe4014347450f8acc16969489f0e"/></dir><dir name="Model"><dir name="Adminexceptions"><file name="Allspecificcountries.php" hash="050286cb2d67238f6d2a04657bcd47c7"/><file name="Maxordertotal.php" hash="1c1647bdf769bc7c4e7890b10212f655"/><file name="Notificationkey.php" hash="90c05ffb94c780c735e4d4a9f2e5e80c"/><file name="Paymentkey.php" hash="010bf4c06ec5c52f1a0b2ede1860bbdc"/><file name="Shopid.php" hash="028283a7457170e0d3082d43be5d4d54"/><file name="Specificcountry.php" hash="30ec14a1769fa2bbfc9473588e395a7f"/><file name="Title.php" hash="2d5aaaa22a305f0d17ec7f0b33708689"/></dir><dir name="Api"><dir name="Request"><file name="Abstract.php" hash="389992774bdd28ae2c87640c8076a793"/><file name="Payment.php" hash="5155bd60a89f6d1e81b7d9e6fc9ef18d"/><file name="Refund.php" hash="a2d7293d6f582f11189dbba1f5f8dce9"/><file name="Resend.php" hash="03a9f603503b2c95a137b3afa074ea1a"/><file name="Update.php" hash="2609e7a4e9eab13910b25734dd506c3c"/></dir><dir name="certs"><file name="ca-bundle.crt" hash="7e78dcc7f5a3aefffbb327141dd7ddcf"/></dir><file name="Abstract.php" hash="ddbdffce737e21b046c6e18001f658f1"/><file name="Notification.php" hash="472ee435c75ba6f0340f9bdbd12a8c7c"/></dir><file name="Api.php" hash="c30b68aeb92278f7c4535469d66a1df7"/><file name="Barzahlen.php" hash="e6e36f0c635cccfe695ef4290600f278"/><file name="Ipn.php" hash="b20fbfeac48d12b1da9492016dac5d39"/><file name="Payment.php" hash="68a0d90a04b1a8e3b44aa472b59a9db7"/><file name="Refund.php" hash="f8639e94dbd5e1cdca46f516df6a9187"/><file name="Resend.php" hash="9e096207ac0408f6d757f9e4cafc81f2"/></dir><dir name="controllers"><file name="CheckoutController.php" hash="0cd1ea9ea6d1372d1997eec682e4a7c9"/><file name="IpnController.php" hash="69c1f025b92054a8e798310c263b78a6"/><file name="ResendController.php" hash="3ff28616c405317300edff7bd8eee7e0"/></dir><dir name="etc"><file name="config.xml" hash="d51c6013da78a3c38a9add0bf84d9fa0"/><file name="system.xml" hash="d5678376c647bd0e575b7c0d58ed8a9b"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ZerebroInternet_Barzahlen.xml" hash="870d1ed9a0977ca9bfd861850ed8d72c"/></dir></target><target name="magelocale"><dir name="de_DE"><file name="ZerebroInternet_Barzahlen_Admin.csv" hash="30585ffc5af26b4679faefb881e89896"/><file name="ZerebroInternet_Barzahlen_Frontend.csv" hash="eca00f201a8a75063a90b69e12586596"/></dir><dir name="en_US"><file name="ZerebroInternet_Barzahlen_Admin.csv" hash="269b49811ec9c1e842c955a8087d99ab"/><file name="ZerebroInternet_Barzahlen_Frontend.csv" hash="ba4c7050219ab94072c1acc567db96dd"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="barzahlen"><file name="info.phtml" hash="a4d8e7a934b5ed3c934ed232cb8c4b72"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="barzahlen"><file name="form.phtml" hash="424b059387d5c4314ce710a498141498"/><file name="info.phtml" hash="74d5570ff6cc50fbd94ebed0e709435a"/><file name="mark.phtml" hash="e5180d493829dcd1c58837eec9d6e989"/><file name=".DS_Store" hash="e63f052ac3b1909750adf0115c4a7c21"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="barzahlen.xml" hash="839b61537cf246b9e01516ec7bc56981"/></dir><dir name="template"><dir name="barzahlen"><file name="form.phtml" hash="cd4c65c40c68a70050ab1f43c9db1e89"/><file name="info.phtml" hash="74d5570ff6cc50fbd94ebed0e709435a"/><file name="mark.phtml" hash="e5180d493829dcd1c58837eec9d6e989"/><file name="processing.phtml" hash="7cbfff204dfec836d69d7a8ab7790488"/></dir></dir></dir></dir></dir></target></contents>
|
20 |
<compatible/>
|
21 |
<dependencies/>
|
22 |
</package>
|