pn_sofortueberweisung - Version 3.0.3

Version Notes

added option to send order confirmation when redirecting from SOFORT Gateway back to the Shop.

Download this release

Release Info

Developer Paymentnetwork
Extension pn_sofortueberweisung
Version 3.0.3
Comparing to
See all releases


Code changes from version 3.0.2 to 3.0.3

Files changed (33) hide show
  1. app/code/community/Paymentnetwork/Pnsofortueberweisung/Block/Adminhtml/Payment/Config/Label/Toggle.php +1 -0
  2. app/code/community/Paymentnetwork/Pnsofortueberweisung/controllers/PaymentController.php +17 -0
  3. app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/config.xml +2 -1
  4. app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/system.xml +10 -0
  5. app/locale/cs_CZ/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  6. app/locale/de_AT/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  7. app/locale/de_CH/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  8. app/locale/de_DE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  9. app/locale/en_AU/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  10. app/locale/en_CA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  11. app/locale/en_GB/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  12. app/locale/en_IE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  13. app/locale/en_NZ/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  14. app/locale/en_US/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  15. app/locale/en_ZA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  16. app/locale/es_AR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  17. app/locale/es_CL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  18. app/locale/es_CO/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  19. app/locale/es_CR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  20. app/locale/es_ES/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  21. app/locale/es_MX/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  22. app/locale/es_PA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  23. app/locale/es_PE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  24. app/locale/es_VE/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  25. app/locale/fr_CA/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  26. app/locale/fr_FR/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  27. app/locale/hu_HU/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  28. app/locale/it_CH/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  29. app/locale/it_IT/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  30. app/locale/nl_NL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  31. app/locale/pl_PL/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  32. app/locale/sk_SK/Paymentnetwork_Pnsofortueberweisung.csv +2 -1
  33. package.xml +5 -7
app/code/community/Paymentnetwork/Pnsofortueberweisung/Block/Adminhtml/Payment/Config/Label/Toggle.php CHANGED
@@ -38,6 +38,7 @@ class Paymentnetwork_Pnsofortueberweisung_Block_Adminhtml_Payment_Config_Label_T
38
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_one").toggle();
39
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_two").toggle();
40
  $("row_payment_paymentnetwork_pnsofortueberweisung_create_creditmemo").toggle();
 
41
  $("row_payment_paymentnetwork_pnsofortueberweisung_send_mail").toggle();';
42
 
43
  $labelText = Mage::helper('sofort')->__("Adjust the SOFORT Banking module properties here. <a onclick='%s'>(Click to open)</a>");
38
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_one").toggle();
39
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_two").toggle();
40
  $("row_payment_paymentnetwork_pnsofortueberweisung_create_creditmemo").toggle();
41
+ $("row_payment_paymentnetwork_pnsofortueberweisung_send_order_confirmation").toggle();
42
  $("row_payment_paymentnetwork_pnsofortueberweisung_send_mail").toggle();';
43
 
44
  $labelText = Mage::helper('sofort')->__("Adjust the SOFORT Banking module properties here. <a onclick='%s'>(Click to open)</a>");
app/code/community/Paymentnetwork/Pnsofortueberweisung/controllers/PaymentController.php CHANGED
@@ -48,6 +48,14 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
48
  public function successAction()
49
  {
50
  Mage::getModel('sales/quote')->load($this->_getOrder()->getQuoteId())->setIsActive(false)->save();
 
 
 
 
 
 
 
 
51
  $this->_redirect('checkout/onepage/success/');
52
  }
53
 
@@ -89,6 +97,15 @@ class Paymentnetwork_Pnsofortueberweisung_PaymentController extends Mage_Core_Co
89
  return Mage::getStoreConfig('payment/paymentnetwork_pnsofortueberweisung/create_invoice', Mage::app()->getStore()->getStoreId());
90
  }
91
 
 
 
 
 
 
 
 
 
 
92
  /**
93
  * Get create creditmemo flag
94
  *
48
  public function successAction()
49
  {
50
  Mage::getModel('sales/quote')->load($this->_getOrder()->getQuoteId())->setIsActive(false)->save();
51
+
52
+ if($this->_getSendOrderConfirmationOption()) {
53
+ try {
54
+ $this->_getOrder()->sendNewOrderEmail();
55
+ } catch (Exception $e) {
56
+ Mage::logException($e);
57
+ }
58
+ }
59
  $this->_redirect('checkout/onepage/success/');
60
  }
61
 
97
  return Mage::getStoreConfig('payment/paymentnetwork_pnsofortueberweisung/create_invoice', Mage::app()->getStore()->getStoreId());
98
  }
99
 
100
+ /**
101
+ * Get send order confirmation option
102
+ * @return boolean
103
+ */
104
+ private function _getSendOrderConfirmationOption()
105
+ {
106
+ return (boolean)Mage::getStoreConfig('payment/paymentnetwork_pnsofortueberweisung/send_order_confirmation', Mage::app()->getStore()->getStoreId());
107
+ }
108
+
109
  /**
110
  * Get create creditmemo flag
111
  *
app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/config.xml CHANGED
@@ -24,7 +24,7 @@
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
- <version>3.0.2</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
@@ -77,6 +77,7 @@
77
  <order_status_received_credited>processing</order_status_received_credited>
78
  <create_creditmemo>0</create_creditmemo>
79
  <create_invoice>after_order</create_invoice>
 
80
  <send_mail>1</send_mail>
81
  </paymentnetwork_pnsofortueberweisung>
82
  <!-- just for compatibility -->
24
 
25
  <modules>
26
  <Paymentnetwork_Pnsofortueberweisung>
27
+ <version>3.0.3</version>
28
  </Paymentnetwork_Pnsofortueberweisung>
29
  </modules>
30
 
77
  <order_status_received_credited>processing</order_status_received_credited>
78
  <create_creditmemo>0</create_creditmemo>
79
  <create_invoice>after_order</create_invoice>
80
+ <send_order_confirmation>1</send_order_confirmation>
81
  <send_mail>1</send_mail>
82
  </paymentnetwork_pnsofortueberweisung>
83
  <!-- just for compatibility -->
app/code/community/Paymentnetwork/Pnsofortueberweisung/etc/system.xml CHANGED
@@ -176,6 +176,7 @@ $("row_payment_paymentnetwork_pnsofortueberweisung_create_invoice").toggle();
176
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_one").toggle();
177
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_two").toggle();
178
  $("row_payment_paymentnetwork_pnsofortueberweisung_create_creditmemo").toggle();
 
179
  $("row_payment_paymentnetwork_pnsofortueberweisung_send_mail").toggle();});</script>]]></label>
180
  <sort_order>32</sort_order>
181
  <frontend_model>sofort/adminhtml_payment_config_label_toggle</frontend_model>
@@ -364,6 +365,15 @@ $("row_payment_paymentnetwork_pnsofortueberweisung_send_mail").toggle();});</scr
364
  <show_in_website>1</show_in_website>
365
  <show_in_store>1</show_in_store>
366
  </create_creditmemo>
 
 
 
 
 
 
 
 
 
367
  <send_mail translate="label">
368
  <label>Send receipt emails</label>
369
  <sort_order>240</sort_order>
176
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_one").toggle();
177
  $("row_payment_paymentnetwork_pnsofortueberweisung_status_config_text_two").toggle();
178
  $("row_payment_paymentnetwork_pnsofortueberweisung_create_creditmemo").toggle();
179
+ $("row_payment_paymentnetwork_pnsofortueberweisung_send_order_confirmation").toggle();
180
  $("row_payment_paymentnetwork_pnsofortueberweisung_send_mail").toggle();});</script>]]></label>
181
  <sort_order>32</sort_order>
182
  <frontend_model>sofort/adminhtml_payment_config_label_toggle</frontend_model>
365
  <show_in_website>1</show_in_website>
366
  <show_in_store>1</show_in_store>
367
  </create_creditmemo>
368
+ <send_order_confirmation translate="label">
369
+ <label>Send order confirmation</label>
370
+ <sort_order>235</sort_order>
371
+ <frontend_type>select</frontend_type>
372
+ <source_model>adminhtml/system_config_source_yesno</source_model>
373
+ <show_in_default>1</show_in_default>
374
+ <show_in_website>1</show_in_website>
375
+ <show_in_store>1</show_in_store>
376
+ </send_order_confirmation>
377
  <send_mail translate="label">
378
  <label>Send receipt emails</label>
379
  <sort_order>240</sort_order>
app/locale/cs_CZ/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Pokud nemá být pro tuto akci provedena žádná aktualizace stavu, zvolte jako stav %s"
73
  Create credit memo automatically,Vyhotovit automaticky dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Automaticky se vyhotoví dobropis, pokud byla transakce v systému SOFORT odepsána.
75
- en,cz
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Pokud nemá být pro tuto akci provedena žádná aktualizace stavu, zvolte jako stav %s"
73
  Create credit memo automatically,Vyhotovit automaticky dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Automaticky se vyhotoví dobropis, pokud byla transakce v systému SOFORT odepsána.
75
+ en,cz
76
+ "Send order confirmation","Odeslat potvrzení objednávky"
app/locale/de_AT/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
- en,de
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
+ en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
app/locale/de_CH/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
- en,de
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
+ en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
app/locale/de_DE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
- en,de
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wenn keine Statusaktualisierung für dieses Event durchgeführt werden soll, wählen Sie als Status %s"
73
  Create credit memo automatically,Gutschrift automatisch erstellen
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,"Es wird automatisch eine Gutschrift erstellt, wenn einer Transaktion im SOFORT System zurückgebucht wurde."
75
+ en,de
76
+ "Send order confirmation","Bestellbestätigung senden"
app/locale/en_AU/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_CA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_GB/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_IE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_NZ/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_US/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/en_ZA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ Set-up and configuration, Set-up and configuration
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
- en,en
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","If the status shouldn't be updated for this event, please choose as status %s"
73
  "Create credit memo automatically","Create credit memo automatically"
74
  "A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.","A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel."
75
+ en,en
76
+ "Send order confirmation","Send order confirmation"
app/locale/es_AR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_CL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_CO/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_CR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_ES/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_MX/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_PA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_PE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/es_VE/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
- en,es
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si el estado de esta operación no se actualiza con el evento realizado , seleccione el estado %s"
73
  Create credit memo automatically,Crear el abono en cuenta automáticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Se creará automáticamente un abono en cuenta si se ha devuelto el importe de una transacción en el sistema de SOFORT.
75
+ en,es
76
+ "Send order confirmation","Enviar confirmación de la orden"
app/locale/fr_CA/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si aucune mise à jour de statut ne doit être effectuée pour cet événement, choisissez le statut %s."
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
- en,fr
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si aucune mise à jour de statut ne doit être effectuée pour cet événement, choisissez le statut %s."
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
+ en,fr
76
+ "Send order confirmation","Envoyer la confirmation de commande"
app/locale/fr_FR/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si aucune mise à jour de statut ne doit être effectuée pour cet événement, choisissez le statut %s."
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
- en,fr
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Si aucune mise à jour de statut ne doit être effectuée pour cet événement, choisissez le statut %s."
73
  Create credit memo automatically,Générer un avoir automatiquement
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Un avoir est généré automatiquement lorsqu'une transaction a été remboursée dans le système SOFORT.
75
+ en,fr
76
+ "Send order confirmation","Envoyer la confirmation de commande"
app/locale/hu_HU/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Amennyiben ezen eseménnyel kapcsolatban nincs szükség státuszfrissítésre, a következőt válassza státuszként: %s"
73
  Create credit memo automatically,Jóváírás automatikus kiállítása
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jóváírás kerül automatikusan kiállítára, ha a tranzakció a SOFORT rendszerében stornózásra kerül.
75
- en,hu
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Amennyiben ezen eseménnyel kapcsolatban nincs szükség státuszfrissítésre, a következőt válassza státuszként: %s"
73
  Create credit memo automatically,Jóváírás automatikus kiállítása
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jóváírás kerül automatikusan kiállítára, ha a tranzakció a SOFORT rendszerében stornózásra kerül.
75
+ en,hu
76
+ "Send order confirmation","A megrendelés visszaigazolásának küldése"
app/locale/it_CH/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Se lo stato di questo evento non deve essere attualizzato, selezioni lo stato %s"
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
- en,it
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Se lo stato di questo evento non deve essere attualizzato, selezioni lo stato %s"
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
+ en,it
76
+ "Send order confirmation","Invia conferma d'ordine"
app/locale/it_IT/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Se lo stato di questo evento non deve essere attualizzato, selezioni lo stato %s"
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
- en,it
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Se lo stato di questo evento non deve essere attualizzato, selezioni lo stato %s"
73
  Create credit memo automatically,Crei l'accredito automaticamente
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Viene creato automaticamente un accredito se una transazione è stata rimborsata nel sistema SOFORT.
75
+ en,it
76
+ "Send order confirmation","Invia conferma d'ordine"
app/locale/nl_NL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wanneer er geen actualisering van de status voor dit event moet worden uitgevoerd, kies dan als status %s"
73
  Create credit memo automatically,Creditnota automatisch aanmaken
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Er wordt automatisch een creditnota aangemaakt wanneer er een transactie in het SOFORT systeem teruggeboekt wordt.
75
- en,nl
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Wanneer er geen actualisering van de status voor dit event moet worden uitgevoerd, kies dan als status %s"
73
  Create credit memo automatically,Creditnota automatisch aanmaken
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Er wordt automatisch een creditnota aangemaakt wanneer er een transactie in het SOFORT systeem teruggeboekt wordt.
75
+ en,nl
76
+ "Send order confirmation","Bestelbevestiging sturen"
app/locale/pl_PL/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Jeżeli status tego wydarzenia nie ma być aktualizowany, jako status wybierz %s"
73
  Create credit memo automatically,Wygeneruj automatycznie notę uznaniową
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jeżeli transakcja została zaznaczona do przelewu zwrotnego w systemie SOFORT, nota uznaniowa zostanie wygenerowana automatycznie.
75
- en,pl
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Jeżeli status tego wydarzenia nie ma być aktualizowany, jako status wybierz %s"
73
  Create credit memo automatically,Wygeneruj automatycznie notę uznaniową
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Jeżeli transakcja została zaznaczona do przelewu zwrotnego w systemie SOFORT, nota uznaniowa zostanie wygenerowana automatycznie.
75
+ en,pl
76
+ "Send order confirmation","Wysłać potwierdzenie zamówienia"
app/locale/sk_SK/Paymentnetwork_Pnsofortueberweisung.csv CHANGED
@@ -72,4 +72,5 @@ The receipt of the money ( can be only detected with an account with SOFORT Bank
72
  "If the status shouldn't be updated for this event, please choose as status %s","Ak nemá pre túto udalosť prebehnúť žiadna aktualizácia stavu, zvoľte ako stav %s"
73
  Create credit memo automatically,Automaticky vytvoriť dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Keď bola transakcia v systéme SOFORT odpísaná, bude automaticky vytvorený dobropis.
75
- en,sk
 
72
  "If the status shouldn't be updated for this event, please choose as status %s","Ak nemá pre túto udalosť prebehnúť žiadna aktualizácia stavu, zvoľte ako stav %s"
73
  Create credit memo automatically,Automaticky vytvoriť dobropis
74
  A credit memo will be created automatically if a transaction was refunded by using the SOFORT panel.,Keď bola transakcia v systéme SOFORT odpísaná, bude automaticky vytvorený dobropis.
75
+ en,sk
76
+ "Send order confirmation","Odoslať potvrdenie objednávky"
package.xml CHANGED
@@ -1,20 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
- <version>3.0.2</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>default value for send mail to 1&#xD;
12
- default value for create invoice to after_order&#xD;
13
- default value for create creditmemo to 0 </notes>
14
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
15
- <date>2014-08-06</date>
16
- <time>13:57:09</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="4b4540ecd1cd0b98487300c9568cf81e"/></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="78d696c71abdeb8362bf06bd330ae5ea"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="56a08c96977aed90f51abfedad617ac1"/></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="6525b03d69965c5fa6d6ef8a4f621d52"/></dir><dir name="etc"><file name="config.xml" hash="c15243d84856e3a39f235007bc85400e"/><file name="system.xml" hash="195090acb68e1982aea05c2fa4b7ad35"/></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="46f5482f40fbc08d1758cea508919ff9"/></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="51977c601bc55324ffc95ab5950bd047"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="3687060e55a3a43e1985e4de691cf200"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="3687060e55a3a43e1985e4de691cf200"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="caa94133653d86fdf84e74949b163e00"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="8c874a469a7fe0597f9a2af3fb118713"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="02c10a1cf9b04187b453ad3cee38dd53"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0a9fe42948cabd88e46b4d5a7c20d3b3"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2bd0303d0c817364dfcec5d6ed6f54cf"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2bd0303d0c817364dfcec5d6ed6f54cf"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="d32ff3b875ca51024561d2a7107e3dcc"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="1165c7323051b7743a102e00639bb23c"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="1165c7323051b7743a102e00639bb23c"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="61d58ee02278f8c36e6671cfac005a32"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="787308f63b48f390e9a2089d9c300fb2"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="ef855321b799850a043ef1f20ade2565"/></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>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>pn_sofortueberweisung</name>
4
+ <version>3.0.3</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>added option to send order confirmation when redirecting from SOFORT Gateway back to the Shop.</notes>
 
 
12
  <authors><author><name>Paymentnetwork</name><user>paymentnetwork</user><email>support@sofort.com</email></author></authors>
13
+ <date>2014-08-22</date>
14
+ <time>10:38:11</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="78d696c71abdeb8362bf06bd330ae5ea"/></dir><file name="Observer.php" hash="9a7b3a093d8dd59160bf946a522c2ed1"/><dir name="Service"><file name="Communication.php" hash="56a08c96977aed90f51abfedad617ac1"/></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="ff12ebc6929bec674ef297a7963e0043"/></dir><dir name="etc"><file name="config.xml" hash="102979a25c707b7add468ff8c317a0c1"/><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="46f5482f40fbc08d1758cea508919ff9"/></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="1478ce13fe9f70775116beed715db912"/></dir><dir name="de_AT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2c8218f2241ed5916633ccf4ef9ff49b"/></dir><dir name="de_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="2c8218f2241ed5916633ccf4ef9ff49b"/></dir><dir name="de_DE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="56d33745dcb07997a8c96d2baa2f3bf5"/></dir><dir name="en_AU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_GB"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_IE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_NZ"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_US"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="en_ZA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="4781267a6c7a4d9671fe4d68f8315363"/></dir><dir name="es_AR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0e4ed9479eda2cdf16f9361bd8c6edd5"/></dir><dir name="es_CL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_CO"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_CR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_ES"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_MX"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_PA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_PE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="es_VE"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0accd069e67bda41afcc1d1a9116b2c1"/></dir><dir name="fr_CA"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="d74de18e63d99d177e886c33f48b5902"/></dir><dir name="fr_FR"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="d74de18e63d99d177e886c33f48b5902"/></dir><dir name="hu_HU"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="ad46becffbefde27cd4389112a1908c7"/></dir><dir name="it_CH"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="bbed5d84d828ed9c96efb401b33328ad"/></dir><dir name="it_IT"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="bbed5d84d828ed9c96efb401b33328ad"/></dir><dir name="nl_NL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="75913524f89c0f21b45857128c4fff88"/></dir><dir name="pl_PL"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="0518c9c1534991b04461d1a800d8ba08"/></dir><dir name="sk_SK"><file name="Paymentnetwork_Pnsofortueberweisung.csv" hash="893c9cbebdb664209e214657587138fe"/></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>