pn_sofortueberweisung - Version 3.0.7

Version Notes

* fix missing order comments
* send correct interface_version
* fix document creation for untraceable status

Download this release

Release Info

Developer Paymentnetwork
Extension pn_sofortueberweisung
Version 3.0.7
Comparing to
See all releases


Code changes from version 3.0.5 to 3.0.7

app/code/community/Paymentnetwork/Pnsofortueberweisung/Model/Service/Communication.php CHANGED
@@ -98,7 +98,9 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication
98
  $transactionData = array('status' => 'undefined', 'reason' => 'undefined');
99
 
100
  $notificationSdk = new SofortLibNotification();
 
101
  $transactionId = $notificationSdk->getNotification($rawBody);
 
102
  if ($transactionId) {
103
  $transactionDataSdk = new SofortLibTransactionData(
104
  Mage::getStoreConfig(
@@ -125,7 +127,7 @@ class Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication
125
  {
126
  $orderId = $this->_getQuote()->getReservedOrderId();
127
 
128
- $this->_sofortSdk->setVersion('magento_3.0');
129
  $this->_sofortSdk->setAmount(Mage::app()->getStore()->roundPrice($this->_getQuote()->getGrandTotal()));
130
  $this->_sofortSdk->setCurrencyCode($this->_getQuote()->getBaseCurrencyCode());
131
  $this->_sofortSdk->setReason($this->_getReasonOne(), $this->_getReasonTwo());
98
  $transactionData = array('status' => 'undefined', 'reason' => 'undefined');
99
 
100
  $notificationSdk = new SofortLibNotification();
101
+
102
  $transactionId = $notificationSdk->getNotification($rawBody);
103
+
104
  if ($transactionId) {
105
  $transactionDataSdk = new SofortLibTransactionData(
106
  Mage::getStoreConfig(
127
  {
128
  $orderId = $this->_getQuote()->getReservedOrderId();
129
 
130
+ $this->_sofortSdk->setVersion('magento_3.0.7');
131
  $this->_sofortSdk->setAmount(Mage::app()->getStore()->roundPrice($this->_getQuote()->getGrandTotal()));
132
  $this->_sofortSdk->setCurrencyCode($this->_getQuote()->getBaseCurrencyCode());
133
  $this->_sofortSdk->setReason($this->_getReasonOne(), $this->_getReasonTwo());
app/code/community/Paymentnetwork/Pnsofortueberweisung/controllers/PaymentController.php CHANGED
@@ -45,6 +45,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
45
 
46
  public function redirectAction()
47
  {
 
48
  $comment = Mage::helper('sofort')->__($this->_commentMessages['redirect']);
49
  $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
50
  $comment = str_replace(
@@ -101,7 +102,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
101
  $communication = Mage::getModel(
102
  'Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication'
103
  );
104
-
105
  $statusData = $communication->getStatusData(file_get_contents('php://input'));
106
 
107
  $this->_handleSofortStatusUpdate($statusData);
@@ -122,7 +123,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
122
  */
123
  private function _getSendOrderConfirmationOption()
124
  {
125
- return (boolean)Mage::getStoreConfig('payment/paymentnetwork_pnsofortueberweisung/send_order_confirmation', Mage::app()->getStore()->getStoreId());
126
  }
127
 
128
  /**
@@ -247,6 +248,7 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
247
  */
248
  private function _handleSofortStatusUpdate(array $statusData)
249
  {
 
250
  $allowedStates = array(
251
  'loss' => array('not_credited'),
252
  'pending' => array('not_credited_yet'),
@@ -258,21 +260,21 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
258
  if (array_key_exists($statusData['status'], $allowedStates)
259
  && in_array($statusData['reason'], $allowedStates[$statusData['status']])) {
260
 
 
 
 
 
 
261
  $status = $statusData['status'];
262
  $reason = $statusData['reason'];
263
 
264
- if ($status === 'untraceable' && $reason === 'sofort_bank_account_needed') {
265
- $status = 'pending';
266
- $reason = 'not_credited_yet';
267
- }
268
-
269
- $state = Mage::getStoreConfig(
270
  'payment/paymentnetwork_pnsofortueberweisung/order_status_' . $status . '_' . $reason,
271
  Mage::app()->getStore()->getStoreId()
272
  );
273
-
274
- if (!empty($state)) {
275
- $this->_handleMagentoStatusUpdate($statusData, $state);
276
  } else {
277
  $this->_getOrder()->addStatusHistoryComment($this->_getHistoryComment($statusData))->save();
278
  }
@@ -287,24 +289,28 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
287
  * Set magento state status and history comment
288
  *
289
  * @param array $statusData
290
- * @param string $state
291
  */
292
- private function _handleMagentoStatusUpdate(array $statusData, $state)
293
- {
294
  $comment = $this->_getHistoryComment($statusData);
295
 
296
- if ($this->_getOrder()->isStateProtected($state)) {
297
- $this->_getOrder()->setState(
298
- $state,
299
- $state,
300
- $comment
301
- )->save();
302
- } else {
303
- $this->_getOrder()->setData('state', $state);
304
- $this->_getOrder()->setStatus($state);
305
- $this->_getOrder()->addStatusHistoryComment($comment, false);
306
- $this->_getOrder()->save();
307
- }
 
 
 
 
308
  }
309
 
310
  /**
@@ -324,7 +330,10 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
324
 
325
  $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
326
  $comment = str_replace('[[transaction_id]]', $statusData['transaction_id'], $comment);
327
- $comment = str_replace('[[refunded_amount]]', $statusData['refunded_amount'], $comment);
 
 
 
328
 
329
  return $comment;
330
  }
45
 
46
  public function redirectAction()
47
  {
48
+
49
  $comment = Mage::helper('sofort')->__($this->_commentMessages['redirect']);
50
  $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
51
  $comment = str_replace(
102
  $communication = Mage::getModel(
103
  'Paymentnetwork_Pnsofortueberweisung_Model_Service_Communication'
104
  );
105
+
106
  $statusData = $communication->getStatusData(file_get_contents('php://input'));
107
 
108
  $this->_handleSofortStatusUpdate($statusData);
123
  */
124
  private function _getSendOrderConfirmationOption()
125
  {
126
+ return (boolean) Mage::getStoreConfig('payment/paymentnetwork_pnsofortueberweisung/send_order_confirmation', Mage::app()->getStore()->getStoreId());
127
  }
128
 
129
  /**
248
  */
249
  private function _handleSofortStatusUpdate(array $statusData)
250
  {
251
+
252
  $allowedStates = array(
253
  'loss' => array('not_credited'),
254
  'pending' => array('not_credited_yet'),
260
  if (array_key_exists($statusData['status'], $allowedStates)
261
  && in_array($statusData['reason'], $allowedStates[$statusData['status']])) {
262
 
263
+ if ($statusData['status'] === 'untraceable' && $statusData['reason'] === 'sofort_bank_account_needed') {
264
+ $statusData['status'] = 'pending';
265
+ $statusData['reason'] = 'not_credited_yet';
266
+ }
267
+
268
  $status = $statusData['status'];
269
  $reason = $statusData['reason'];
270
 
271
+ $selectedStatus = Mage::getStoreConfig(
 
 
 
 
 
272
  'payment/paymentnetwork_pnsofortueberweisung/order_status_' . $status . '_' . $reason,
273
  Mage::app()->getStore()->getStoreId()
274
  );
275
+
276
+ if (!empty($selectedStatus)) {
277
+ $this->_handleMagentoStatusUpdate($statusData, $selectedStatus);
278
  } else {
279
  $this->_getOrder()->addStatusHistoryComment($this->_getHistoryComment($statusData))->save();
280
  }
289
  * Set magento state status and history comment
290
  *
291
  * @param array $statusData
292
+ * @param string $status
293
  */
294
+ private function _handleMagentoStatusUpdate(array $statusData, $status)
295
+ {
296
  $comment = $this->_getHistoryComment($statusData);
297
 
298
+ $state = Mage::getResourceModel('sales/order_status_collection')
299
+ ->joinStates()->addStatusFilter($status)
300
+ ->getFirstItem()
301
+ ->getData('state');
302
+
303
+ $this->_getOrder()->setStatus($status);
304
+ $this->_getOrder()->setState(
305
+ $state,
306
+ false,
307
+ $comment,
308
+ false
309
+ );
310
+
311
+ $this->_getOrder()->addStatusHistoryComment($this->_getHistoryComment($statusData));
312
+
313
+ $this->_getOrder()->save();
314
  }
315
 
316
  /**
330
 
331
  $comment = str_replace('[[date]]', date('d.m.Y H:i:s', Mage::getModel('core/date')->timestamp(time())), $comment);
332
  $comment = str_replace('[[transaction_id]]', $statusData['transaction_id'], $comment);
333
+
334
+ if (array_key_exists('refunded_amount', $statusData)) {
335
+ $comment = str_replace('[[refunded_amount]]', $statusData['refunded_amount'], $comment);
336
+ }
337
 
338
  return $comment;
339
  }
app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
- <version>3.0.5</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
+ <version>3.0.7</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
package.xml CHANGED
@@ -1,18 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
- <version>3.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>Extension for the payment method from SOFORT AG</summary>
10
  <description>SOFORT AG is your partner for cutting-edge payment methods. This extension contains the payment method SOFORT Banking. More information can be found on our page https://sofort.com</description>
11
- <notes>* fix &lt;ul&gt; and &lt;li&gt; tags in the frontend payment form template</notes>
 
 
12
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
13
- <date>2015-08-17</date>
14
- <time>11:56:23</time>
15
- <contents><target name="magecommunity"><dir><dir name="Paymentnetwork"><dir><dir name="Pnsofortueberweisung"><dir name="Block"><dir name="Adminhtml"><dir name="Payment"><dir name="Config"><dir name="Heading"><file name="Big.php" hash="42674a4f5efd70896e883b307106995c"/><file name="Italic.php" hash="bd526e07224e2341284ac4942605be25"/><file name="Middle.php" hash="9ba8dd2318cfba8143b2bfd098886b5a"/></dir><dir name="Label"><file name="Red.php" hash="486fd04e312dfc57892196b58c71261b"/><file name="Status.php" hash="adad4d9d81c09bee083c2bc3bfba51a0"/><file name="Toggle.php" hash="3b65a929acb6dab055379246066839bc"/></dir><file name="Label.php" hash="614e1c5af0a905515398f306386acce7"/></dir></dir></dir><dir name="Form"><file name="Sofort.php" hash="51b9dd7f8e9bb86a9ac979b000e1e00b"/></dir><dir name="Info"><file name="Sofort.php" hash="04ac22543d23a5f5ccc43774b7b20a6c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5664f1d43db01fd6ebe32b6adf3f8033"/></dir><dir name="Model"><dir name="Method"><file name="Compatibility.php" hash="4d5506948c43a6c7d59bda606ead45ce"/><file name="Sofort.php" hash="1fe70d2528da93056f6457e76cf81f89"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="feee243f0a8e9894a4e9e4e8725680bf"/></dir><dir name="Source"><dir name="Checkout"><file name="Presentation.php" hash="1cd1ccf53588cc336a5d16e7aa2bfdab"/></dir><dir name="Order"><file name="Invoice.php" hash="2dfde0593e6d6cfa2deb6d7f466942e7"/><file name="Status.php" hash="2013a5a74af933242e00018692e40085"/></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="99a1b99bfb8eeb5d116de8fac6e8e842"/></dir><dir name="etc"><file name="config.xml" hash="0296b485cf9cf0cbdea24c4a8752d2de"/><file name="system.xml" hash="25392ee7268e048dfbc96b93c171f9e9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="info"><file name="sofort.phtml" hash="27bd6f4743ec5f2e27db5030db91faa5"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="form"><file name="sofort.phtml" hash="2fd9a479f19822b7ba3db4fab257ef5f"/></dir><dir name="info"><file name="sofort.phtml" hash="7a91fc06df387905b56e9ceaff51df66"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Paymentnetwork_Pnsofortueberweisung.xml" hash="06f639f28f328516d226210a7c1d6d9b"/></dir></dir></target><target name="magelib"><dir><dir name="Sofort"><dir name="core"><file name="abstractDataHandler.php" hash="1aec51f3c0d1134fceca90ec4207ad70"/><file name="abstractLoggerHandler.php" hash="79a308a9346d4d86fee91e1445cadf70"/><file name="fileLogger.php" hash="da0922c9c0acf54426fc47f76479b5e7"/><dir name="lib"><file name="arrayToXml.php" hash="8b419fc0515aaf9e39da3b3719b51126"/><file name="arrayToXmlException.php" hash="dddeb29526ccfc6101d4c22582545552"/><dir name="elements"><file name="sofortElement.php" hash="f261befe750d39a6c40826825acdce43"/><file name="sofortTag.php" hash="27b4412b17e2e69bbf95789317c1531e"/><file name="sofortText.php" hash="dc076a1484832a28c70beab4552643aa"/></dir><file name="xmlToArray.php" hash="376ed0bfdacdf04d28d442219c70206c"/><file name="xmlToArrayException.php" hash="fbdfb708ef274101e757766ef57b9de4"/><file name="xmlToArrayNode.php" hash="e24ee5022ce01e048febcb1ef399b95f"/></dir><file name="sofortLibAbstract.inc.php" hash="db9ace2ea7551415d999dc32fd5429a4"/><file name="sofortLibFactory.php" hash="88219c40c0e2337dbc1f1b6168e4d0c4"/><file name="sofortLibHttp.inc.php" hash="6117a55acb7eda5d3c3a9249c0e68c2e"/><file name="sofortLibHttpCurl.inc.php" hash="febda30afef2d6bb12b91f872d15931d"/><file name="sofortLibHttpSocket.inc.php" hash="31621f3cd27236d0bf7f72a7683134aa"/><file name="sofortLibMultipay.inc.php" hash="aa6c9295b3186190777b7d747fbb75eb"/><file name="sofortLibNotification.inc.php" hash="bb7ff597f9e85d5e76224c80f0b02385"/><file name="sofortLibTransactionData.inc.php" hash="1d5ac7981c60fc972758623f6aed1746"/><file name="xmlDataHandler.php" hash="3ed58d72fc31bb7ab35429fc5b21a506"/></dir><dir name="examples"><file name="example.sofortueberweisung.php" hash="1e890df0d6609df8f3776f9c4b80de02"/><file name="example.transaction.php" hash="8b48019a745dd6ca0839d85c81b72483"/></dir><dir name="payment"><file name="sofortLibSofortueberweisung.inc.php" hash="7bbbd6fd2b3d2e5d49841ed7f5291768"/></dir><dir name="unittests"><file name="SofortObject.php" hash="96f43937aeb0e9a33bd716a340b0c96a"/><file name="abstractDataHandlerTest.php" hash="10440fdee7fc6d4abf7f81c64cdb8f83"/><file name="abstractLoggerHandlerTest.php" hash="a25fe8744a245af22dde1bfd549fc85e"/><file name="arrayToXmlTest.php" hash="c2c77f789c3110e0ab65e4fc663a9227"/><file name="fileLoggerTest.php" hash="a8d853ddb0cb596f5db4100d1121a901"/><file name="paymentTest.xml" hash="def52e3ebca6a4146cccbf4c3afcefa6"/><file name="sofortLibAbstractTest.php" hash="62a8d159d79902887acff6d4b4f9e9b8"/><file name="sofortLibHttpCurlTest.php" hash="157782469515caa7be38159fe19733a3"/><file name="sofortLibHttpSocketTest.php" hash="6ae1569b81592f882485330bf735469c"/><file name="sofortLibHttpTest.php" hash="e3383d6a355a4424c1e1f89c59526848"/><file name="sofortLibMultipayTest.php" hash="3b4b978daeeca568497f85b525cbbaab"/><file name="sofortLibNotificationTest.php" hash="bed88694a931ca220e5e452d1c6a7d33"/><file name="sofortLibSofortUeberweisungTest.php" hash="ca6060e673ae1c0362e08663927b5db7"/><file name="sofortLibTest.php" hash="899fee42d03842393c3c106469f8f33c"/><file name="sofortLibTransactionDataTest.php" hash="1eb89534a1f72c54b603bef2df7e6998"/><file name="xmlToArrayNodeTest.php" hash="d9c34e50e6190bff067738853ce77195"/><file name="xmlToArrayTest.php" hash="59df5d3b8cbd90f6d494441bfb7e90a3"/></dir></dir></dir></target><target name="magelocale"><dir><dir name="cs_CZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="539f6eac64794384cd9ab16f70d99f22"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="45dd1de45791774246fb017659183d17"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="549358980dd9b97e429a9fd420c81c91"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="f94cb615af526a3484ce886b5da357a2"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="500cdcdbe6fdb9e26419c905f5ad393c"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9a0a69b50c22e013e53edaf755186233"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="b7c985b2f5f00c11532d9b5e4cb5cb62"/></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
+ <version>3.0.7</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>Extension for the payment method from SOFORT AG</summary>
10
  <description>SOFORT AG is your partner for cutting-edge payment methods. This extension contains the payment method SOFORT Banking. More information can be found on our page https://sofort.com</description>
11
+ <notes>* fix missing order comments&#xD;
12
+ * send correct interface_version&#xD;
13
+ * fix document creation for untraceable status</notes>
14
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
15
+ <date>2016-10-07</date>
16
+ <time>08:52:36</time>
17
+ <contents><target name="magecommunity"><dir><dir name="Paymentnetwork"><dir><dir name="Pnsofortueberweisung"><dir name="Block"><dir name="Adminhtml"><dir name="Payment"><dir name="Config"><dir name="Heading"><file name="Big.php" hash="42674a4f5efd70896e883b307106995c"/><file name="Italic.php" hash="bd526e07224e2341284ac4942605be25"/><file name="Middle.php" hash="9ba8dd2318cfba8143b2bfd098886b5a"/></dir><dir name="Label"><file name="Red.php" hash="486fd04e312dfc57892196b58c71261b"/><file name="Status.php" hash="adad4d9d81c09bee083c2bc3bfba51a0"/><file name="Toggle.php" hash="3b65a929acb6dab055379246066839bc"/></dir><file name="Label.php" hash="614e1c5af0a905515398f306386acce7"/></dir></dir></dir><dir name="Form"><file name="Sofort.php" hash="51b9dd7f8e9bb86a9ac979b000e1e00b"/></dir><dir name="Info"><file name="Sofort.php" hash="04ac22543d23a5f5ccc43774b7b20a6c"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5664f1d43db01fd6ebe32b6adf3f8033"/></dir><dir name="Model"><dir name="Method"><file name="Compatibility.php" hash="4d5506948c43a6c7d59bda606ead45ce"/><file name="Sofort.php" hash="1fe70d2528da93056f6457e76cf81f89"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="f9a2503fc444ece9fae62623913fa47d"/></dir><dir name="Source"><dir name="Checkout"><file name="Presentation.php" hash="1cd1ccf53588cc336a5d16e7aa2bfdab"/></dir><dir name="Order"><file name="Invoice.php" hash="2dfde0593e6d6cfa2deb6d7f466942e7"/><file name="Status.php" hash="2013a5a74af933242e00018692e40085"/></dir></dir></dir><dir name="controllers"><file name="PaymentController.php" hash="e46d1445ff005a8491d2e0d35672f63e"/></dir><dir name="etc"><file name="config.xml" hash="ec357d8dea40767a9d068e950feb81e9"/><file name="system.xml" hash="25392ee7268e048dfbc96b93c171f9e9"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="info"><file name="sofort.phtml" hash="27bd6f4743ec5f2e27db5030db91faa5"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="paymentnetwork"><dir name="sofort"><dir name="form"><file name="sofort.phtml" hash="2fd9a479f19822b7ba3db4fab257ef5f"/></dir><dir name="info"><file name="sofort.phtml" hash="7a91fc06df387905b56e9ceaff51df66"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Paymentnetwork_Pnsofortueberweisung.xml" hash="06f639f28f328516d226210a7c1d6d9b"/></dir></dir></target><target name="magelib"><dir><dir name="Sofort"><dir name="core"><file name="abstractDataHandler.php" hash="1aec51f3c0d1134fceca90ec4207ad70"/><file name="abstractLoggerHandler.php" hash="79a308a9346d4d86fee91e1445cadf70"/><file name="fileLogger.php" hash="da0922c9c0acf54426fc47f76479b5e7"/><dir name="lib"><file name="arrayToXml.php" hash="8b419fc0515aaf9e39da3b3719b51126"/><file name="arrayToXmlException.php" hash="dddeb29526ccfc6101d4c22582545552"/><dir name="elements"><file name="sofortElement.php" hash="f261befe750d39a6c40826825acdce43"/><file name="sofortTag.php" hash="27b4412b17e2e69bbf95789317c1531e"/><file name="sofortText.php" hash="dc076a1484832a28c70beab4552643aa"/></dir><file name="xmlToArray.php" hash="376ed0bfdacdf04d28d442219c70206c"/><file name="xmlToArrayException.php" hash="fbdfb708ef274101e757766ef57b9de4"/><file name="xmlToArrayNode.php" hash="e24ee5022ce01e048febcb1ef399b95f"/></dir><file name="sofortLibAbstract.inc.php" hash="db9ace2ea7551415d999dc32fd5429a4"/><file name="sofortLibFactory.php" hash="88219c40c0e2337dbc1f1b6168e4d0c4"/><file name="sofortLibHttp.inc.php" hash="6117a55acb7eda5d3c3a9249c0e68c2e"/><file name="sofortLibHttpCurl.inc.php" hash="febda30afef2d6bb12b91f872d15931d"/><file name="sofortLibHttpSocket.inc.php" hash="31621f3cd27236d0bf7f72a7683134aa"/><file name="sofortLibMultipay.inc.php" hash="aa6c9295b3186190777b7d747fbb75eb"/><file name="sofortLibNotification.inc.php" hash="bb7ff597f9e85d5e76224c80f0b02385"/><file name="sofortLibTransactionData.inc.php" hash="1d5ac7981c60fc972758623f6aed1746"/><file name="xmlDataHandler.php" hash="3ed58d72fc31bb7ab35429fc5b21a506"/></dir><dir name="examples"><file name="example.sofortueberweisung.php" hash="1e890df0d6609df8f3776f9c4b80de02"/><file name="example.transaction.php" hash="8b48019a745dd6ca0839d85c81b72483"/></dir><dir name="payment"><file name="sofortLibSofortueberweisung.inc.php" hash="7bbbd6fd2b3d2e5d49841ed7f5291768"/></dir><dir name="unittests"><file name="SofortObject.php" hash="96f43937aeb0e9a33bd716a340b0c96a"/><file name="abstractDataHandlerTest.php" hash="10440fdee7fc6d4abf7f81c64cdb8f83"/><file name="abstractLoggerHandlerTest.php" hash="a25fe8744a245af22dde1bfd549fc85e"/><file name="arrayToXmlTest.php" hash="c2c77f789c3110e0ab65e4fc663a9227"/><file name="fileLoggerTest.php" hash="a8d853ddb0cb596f5db4100d1121a901"/><file name="paymentTest.xml" hash="def52e3ebca6a4146cccbf4c3afcefa6"/><file name="sofortLibAbstractTest.php" hash="62a8d159d79902887acff6d4b4f9e9b8"/><file name="sofortLibHttpCurlTest.php" hash="157782469515caa7be38159fe19733a3"/><file name="sofortLibHttpSocketTest.php" hash="6ae1569b81592f882485330bf735469c"/><file name="sofortLibHttpTest.php" hash="e3383d6a355a4424c1e1f89c59526848"/><file name="sofortLibMultipayTest.php" hash="3b4b978daeeca568497f85b525cbbaab"/><file name="sofortLibNotificationTest.php" hash="bed88694a931ca220e5e452d1c6a7d33"/><file name="sofortLibSofortUeberweisungTest.php" hash="ca6060e673ae1c0362e08663927b5db7"/><file name="sofortLibTest.php" hash="899fee42d03842393c3c106469f8f33c"/><file name="sofortLibTransactionDataTest.php" hash="1eb89534a1f72c54b603bef2df7e6998"/><file name="xmlToArrayNodeTest.php" hash="d9c34e50e6190bff067738853ce77195"/><file name="xmlToArrayTest.php" hash="59df5d3b8cbd90f6d494441bfb7e90a3"/></dir></dir></dir></target><target name="magelocale"><dir><dir name="cs_CZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="539f6eac64794384cd9ab16f70d99f22"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0aacb47fa462595548dc53052f857022"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="45dd1de45791774246fb017659183d17"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8155c91cf434f081f87c615e996c4935"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="549358980dd9b97e429a9fd420c81c91"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9313d321ca18647585e7cc45c5f9b98b"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="08229b58bc60e4c2710330a5777a5357"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="f94cb615af526a3484ce886b5da357a2"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="e35487b46c490d8067c24bf139c4a88b"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="500cdcdbe6fdb9e26419c905f5ad393c"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="9a0a69b50c22e013e53edaf755186233"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="b7c985b2f5f00c11532d9b5e4cb5cb62"/></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
20
  </package>