BankPayment - Version 1.2.0

Version Notes

IBAN ready
Allow partial capturing
Localization improvements

Download this release

Release Info

Developer Phoenix Media GmbH
Extension BankPayment
Version 1.2.0
Comparing to
See all releases


Code changes from version 1.1.0 to 1.2.0

Files changed (26) hide show
  1. app/code/community/Phoenix/BankPayment/Block/Adminhtml/BankAccount.php +0 -4
  2. app/code/community/Phoenix/BankPayment/Model/BankPayment.php +3 -24
  3. app/code/community/Phoenix/BankPayment/etc/config.xml +1 -1
  4. app/code/community/Phoenix/BankPayment/etc/system.xml +4 -4
  5. app/code/community/Phoenix/BankPayment/sql/bankpayment_setup/mysql4-upgrade-0.2.5-0.3.0.php +2 -4
  6. app/design/adminhtml/default/default/template/bankpayment/form.phtml +6 -21
  7. app/design/adminhtml/default/default/template/bankpayment/info.phtml +9 -24
  8. app/design/adminhtml/default/default/template/bankpayment/pdf/info.phtml +3 -12
  9. app/design/frontend/base/default/template/bankpayment/form.phtml +7 -16
  10. app/design/frontend/base/default/template/bankpayment/info.phtml +9 -24
  11. app/design/frontend/base/default/template/bankpayment/pdf/info.phtml +48 -0
  12. app/etc/modules/Mage_BankPayment.xml +0 -12
  13. app/locale/da_DK/Phoenix_BankPayment.csv +0 -7
  14. app/locale/de_DE/Phoenix_BankPayment.csv +0 -7
  15. app/locale/el_GR/Phoenix_BankPayment.csv +0 -7
  16. app/locale/en_US/Phoenix_BankPayment.csv +0 -7
  17. app/locale/es_ES/Phoenix_BankPayment.csv +16 -23
  18. app/locale/fr_FR/Phoenix_BankPayment.csv +0 -7
  19. app/locale/it_IT/Phoenix_BankPayment.csv +0 -7
  20. app/locale/ja_JP/Phoenix_BankPayment.csv +0 -7
  21. app/locale/nb_NO/Phoenix_BankPayment.csv +0 -7
  22. app/locale/nl_NL/Phoenix_BankPayment.csv +0 -7
  23. app/locale/pl_PL/Phoenix_BankPayment.csv +0 -7
  24. app/locale/pt_BR/Phoenix_BankPayment.csv +15 -22
  25. app/locale/tr_TR/Phoenix_BankPayment.csv +22 -0
  26. package.xml +12 -10
app/code/community/Phoenix/BankPayment/Block/Adminhtml/BankAccount.php CHANGED
@@ -50,10 +50,6 @@ class Phoenix_BankPayment_Block_Adminhtml_BankAccount extends Mage_Adminhtml_Blo
50
  $html = '<li><fieldset>';
51
  $html .= '<label>'.$this->__('Account holder').'</label>';
52
  $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[account_holder][]" value="' . $this->_getValue('account_holder/'.$i) . '" '.$this->_getDisabled().' />';
53
- $html .= '<label>'.$this->__('Account number').'</label>';
54
- $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[account_number][]" value="' . $this->_getValue('account_number/'.$i) . '" '.$this->_getDisabled().' />';
55
- $html .= '<label>'.$this->__('Sort code').'</label>';
56
- $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[sort_code][]" value="' . $this->_getValue('sort_code/'.$i) . '" '.$this->_getDisabled().' />';
57
  $html .= '<label>'.$this->__('Bank name').'</label>';
58
  $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[bank_name][]" value="' . $this->_getValue('bank_name/'.$i) . '" '.$this->_getDisabled().' />';
59
  $html .= '<label>'.$this->__('IBAN').'</label>';
50
  $html = '<li><fieldset>';
51
  $html .= '<label>'.$this->__('Account holder').'</label>';
52
  $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[account_holder][]" value="' . $this->_getValue('account_holder/'.$i) . '" '.$this->_getDisabled().' />';
 
 
 
 
53
  $html .= '<label>'.$this->__('Bank name').'</label>';
54
  $html .= '<input class="input-text" type="text" name="'.$this->getElement()->getName().'[bank_name][]" value="' . $this->_getValue('bank_name/'.$i) . '" '.$this->_getDisabled().' />';
55
  $html .= '<label>'.$this->__('IBAN').'</label>';
app/code/community/Phoenix/BankPayment/Model/BankPayment.php CHANGED
@@ -28,6 +28,9 @@ class Phoenix_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Ab
28
  protected $_infoBlockType = 'bankpayment/info';
29
  protected $_accounts;
30
 
 
 
 
31
  /**
32
  * @deprecated since 0.3.0
33
  * support BC for old templates
@@ -40,30 +43,6 @@ class Phoenix_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Ab
40
  return null;
41
  }
42
 
43
- /**
44
- * @deprecated since 0.3.0
45
- * support BC for old templates
46
- */
47
- public function getAccountNumber()
48
- {
49
- if ($accounts = $this->getAccounts()) {
50
- return $accounts[0]->getAccountNumber();
51
- }
52
- return null;
53
- }
54
-
55
- /**
56
- * @deprecated since 0.3.0
57
- * support BC for old templates
58
- */
59
- public function getSortCode()
60
- {
61
- if ($accounts = $this->getAccounts()) {
62
- return $accounts[0]->getSortCode();
63
- }
64
- return null;
65
- }
66
-
67
  /**
68
  * @deprecated since 0.3.0
69
  * support BC for old templates
28
  protected $_infoBlockType = 'bankpayment/info';
29
  protected $_accounts;
30
 
31
+ protected $_canCapture = true;
32
+ protected $_canCapturePartial = true;
33
+
34
  /**
35
  * @deprecated since 0.3.0
36
  * support BC for old templates
43
  return null;
44
  }
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  /**
47
  * @deprecated since 0.3.0
48
  * support BC for old templates
app/code/community/Phoenix/BankPayment/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Phoenix_BankPayment>
5
- <version>1.1.0</version>
6
  </Phoenix_BankPayment>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Phoenix_BankPayment>
5
+ <version>1.2.0</version>
6
  </Phoenix_BankPayment>
7
  </modules>
8
  <global>
app/code/community/Phoenix/BankPayment/etc/system.xml CHANGED
@@ -29,7 +29,7 @@
29
  <show_in_store>1</show_in_store>
30
  </title>
31
  <order_status translate="label">
32
- <label>New order status</label>
33
  <frontend_type>select</frontend_type>
34
  <source_model>bankpayment/source_order_status</source_model>
35
  <sort_order>40</sort_order>
@@ -38,7 +38,7 @@
38
  <show_in_store>1</show_in_store>
39
  </order_status>
40
  <sort_order translate="label">
41
- <label>Sort order</label>
42
  <frontend_type>text</frontend_type>
43
  <sort_order>50</sort_order>
44
  <show_in_default>1</show_in_default>
@@ -46,7 +46,7 @@
46
  <show_in_store>1</show_in_store>
47
  </sort_order>
48
  <allowspecific translate="label">
49
- <label>Payment from applicable countries</label>
50
  <frontend_type>allowspecific</frontend_type>
51
  <sort_order>60</sort_order>
52
  <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
@@ -55,7 +55,7 @@
55
  <show_in_store>1</show_in_store>
56
  </allowspecific>
57
  <specificcountry translate="label">
58
- <label>Payment from Specific countries</label>
59
  <frontend_type>multiselect</frontend_type>
60
  <sort_order>70</sort_order>
61
  <source_model>adminhtml/system_config_source_country</source_model>
29
  <show_in_store>1</show_in_store>
30
  </title>
31
  <order_status translate="label">
32
+ <label>New Order Status</label>
33
  <frontend_type>select</frontend_type>
34
  <source_model>bankpayment/source_order_status</source_model>
35
  <sort_order>40</sort_order>
38
  <show_in_store>1</show_in_store>
39
  </order_status>
40
  <sort_order translate="label">
41
+ <label>Sort Order</label>
42
  <frontend_type>text</frontend_type>
43
  <sort_order>50</sort_order>
44
  <show_in_default>1</show_in_default>
46
  <show_in_store>1</show_in_store>
47
  </sort_order>
48
  <allowspecific translate="label">
49
+ <label>Payment from Applicable Countries</label>
50
  <frontend_type>allowspecific</frontend_type>
51
  <sort_order>60</sort_order>
52
  <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
55
  <show_in_store>1</show_in_store>
56
  </allowspecific>
57
  <specificcountry translate="label">
58
+ <label>Payment from Specific Countries</label>
59
  <frontend_type>multiselect</frontend_type>
60
  <sort_order>70</sort_order>
61
  <source_model>adminhtml/system_config_source_country</source_model>
app/code/community/Phoenix/BankPayment/sql/bankpayment_setup/mysql4-upgrade-0.2.5-0.3.0.php CHANGED
@@ -10,7 +10,7 @@
10
  *
11
  * @category Mage
12
  * @package Phoenix_BankPayment
13
- * @copyright Copyright (c) 2010 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
14
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
15
  */
16
  $installer = $this;
@@ -22,10 +22,8 @@ $installer->startSetup();
22
  */
23
  $accountData = array(
24
  'account_holder' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankaccountholder'")),
25
- 'account_number' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankaccountnumber'")),
26
- 'sort_code' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/sortcode'")),
27
- 'iban' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankiban'")),
28
  'bank_name' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankname'")),
 
29
  'bic' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankbic'"))
30
  );
31
  $installer->setConfigData('payment/bankpayment/bank_accounts', serialize($accountData));
10
  *
11
  * @category Mage
12
  * @package Phoenix_BankPayment
13
+ * @copyright Copyright (c) 2010-2017 Phoenix Media GmbH & Co. KG (http://www.phoenix-media.eu)
14
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
15
  */
16
  $installer = $this;
22
  */
23
  $accountData = array(
24
  'account_holder' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankaccountholder'")),
 
 
 
25
  'bank_name' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankname'")),
26
+ 'iban' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankiban'")),
27
  'bic' => array('', $installer->getConnection()->fetchOne("select value from ".$installer->getTable('core/config_data')." where scope='default' and path='payment/bankpayment/bankbic'"))
28
  );
29
  $installer->setConfigData('payment/bankpayment/bank_accounts', serialize($accountData));
app/design/adminhtml/default/default/template/bankpayment/form.phtml CHANGED
@@ -49,37 +49,22 @@
49
  <?php if ($_accountHolder = $_account->getAccountHolder()): ?>
50
  <tr><td><label><?php echo $this->__('Account holder') ?>:</label> </td><td><?php echo $_accountHolder ?></td></tr>
51
  <?php endif; ?>
52
- <!--
53
- <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
54
- <tr><td><label><?php echo $this->__('Account number') ?>:</label> </td><td><?php echo $_accountNumber ?></td></tr>
55
  <?php endif; ?>
56
- <?php if ($_sortCode = $_account->getSortCode()): ?>
57
- <tr><td><label><?php echo $this->__('Sort code') ?>:</label> </td><td><?php echo $_sortCode ?></td></tr>
58
  <?php endif; ?>
59
- -->
60
- <?php if ($_bankName = $_account->getBankName()): ?>
61
- <tr><td><label><?php echo $this->__('Bank name') ?>:</label> </td><td><?php echo $_bankName ?></td></tr>
62
  <?php endif; ?>
63
  </tbody>
64
  </table>
65
- <!--
66
- <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
67
- <p><?php echo $this->__('For international transfers please use the following data') ?>:</p>
68
- <table>
69
- <tbody>
70
- <tr><td><label><?php echo $this->__('IBAN') ?>:</label> </td><td><?php echo $_iban ?></td></tr>
71
- <tr><td><label><?php echo $this->__('BIC') ?>:</label> </td><td><?php echo $_bic ?></td></tr>
72
- </tbody>
73
- </table>
74
- <?php endif; ?>
75
- -->
76
  <?php endforeach; ?>
77
- <!--
78
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
79
  <br />
80
  <?php echo $_customText ?><br />
81
  <?php endif; ?>
82
- -->
83
  </div>
84
  <?php endif; ?>
85
  </li>
49
  <?php if ($_accountHolder = $_account->getAccountHolder()): ?>
50
  <tr><td><label><?php echo $this->__('Account holder') ?>:</label> </td><td><?php echo $_accountHolder ?></td></tr>
51
  <?php endif; ?>
52
+ <?php if ($_bankName = $_account->getBankName()): ?>
53
+ <tr><td><label><?php echo $this->__('Bank name') ?></label>: </td><td><?php echo $_bankName ?></td></tr>
 
54
  <?php endif; ?>
55
+ <?php if ($_iban = $_account->getIban()): ?>
56
+ <tr><td><label><?php echo $this->__('IBAN') ?>:</label> </td><td><?php echo $_iban ?></td></tr>
57
  <?php endif; ?>
58
+ <?php if ($_bic = $_account->getBic()): ?>
59
+ <tr><td><label><?php echo $this->__('BIC') ?>:</label> </td><td><?php echo $_bic ?></td></tr>
 
60
  <?php endif; ?>
61
  </tbody>
62
  </table>
 
 
 
 
 
 
 
 
 
 
 
63
  <?php endforeach; ?>
 
64
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
65
  <br />
66
  <?php echo $_customText ?><br />
67
  <?php endif; ?>
 
68
  </div>
69
  <?php endif; ?>
70
  </li>
app/design/adminhtml/default/default/template/bankpayment/info.phtml CHANGED
@@ -30,41 +30,26 @@
30
  <td class="bankcol2"><?php echo $_accountHolder ?></td>
31
  </tr>
32
  <?php endif; ?>
33
- <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
34
  <tr>
35
- <td class="bankcol1"><label><?php echo $this->__('Account number') ?>:</label> </td>
36
- <td class="bankcol2"><?php echo $_accountNumber ?></td>
37
  </tr>
38
  <?php endif; ?>
39
- <?php if ($_sortCode = $_account->getSortCode()): ?>
40
  <tr>
41
- <td class="bankcol1"><label><?php echo $this->__('Sort code') ?>:</label> </td>
42
- <td class="bankcol2"><?php echo $_sortCode ?></td>
43
  </tr>
44
  <?php endif; ?>
45
- <?php if ($_bankName = $_account->getBankName()): ?>
46
  <tr>
47
- <td class="bankcol1"><label><?php echo $this->__('Bank name') ?>:</label> </td>
48
- <td class="bankcol2"><?php echo $_bankName ?></td>
49
  </tr>
50
  <?php endif; ?>
51
  </tbody>
52
  </table>
53
- <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
54
- <div style="font-style:italic;padding-top:5px;"><?php echo $this->__('International') ?></div>
55
- <table class="bankpayment_info_int">
56
- <tbody>
57
- <tr>
58
- <td class="bankcol1"><label><?php echo $this->__('IBAN') ?>:</label> </td>
59
- <td class="bankcol2"><?php echo $_iban ?></td>
60
- </tr>
61
- <tr>
62
- <td class="bankcol1"><label><?php echo $this->__('BIC') ?>:</label> </td>
63
- <td class="bankcol2"><?php echo $_bic ?></td>
64
- </tr>
65
- </tbody>
66
- </table>
67
- <?php endif; ?>
68
  <?php endforeach; ?>
69
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
70
  <br />
30
  <td class="bankcol2"><?php echo $_accountHolder ?></td>
31
  </tr>
32
  <?php endif; ?>
33
+ <?php if ($_bankName = $_account->getBankName()): ?>
34
  <tr>
35
+ <td class="bankcol1"><label><?php echo $this->__('Bank name') ?></label>: </td>
36
+ <td class="bankcol2"><?php echo $_bankName ?></td>
37
  </tr>
38
  <?php endif; ?>
39
+ <?php if ($_iban = $_account->getIban()): ?>
40
  <tr>
41
+ <td class="bankcol1"><label><?php echo $this->__('IBAN') ?>:</label> </td>
42
+ <td class="bankcol2"><?php echo $_iban ?></td>
43
  </tr>
44
  <?php endif; ?>
45
+ <?php if ($_bic = $_account->getBic()): ?>
46
  <tr>
47
+ <td class="bankcol1"><label><?php echo $this->__('BIC') ?>:</label> </td>
48
+ <td class="bankcol2"><?php echo $_bic ?></td>
49
  </tr>
50
  <?php endif; ?>
51
  </tbody>
52
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  <?php endforeach; ?>
54
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
55
  <br />
app/design/adminhtml/default/default/template/bankpayment/pdf/info.phtml CHANGED
@@ -26,24 +26,15 @@
26
  <?php echo $this->__('Account holder') ?>: <?php echo $_accountHolder ?>
27
  {{pdf_row_separator}}
28
  <?php endif; ?>
29
- <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
30
- <?php echo $this->__('Account number') ?>: <?php echo $_accountNumber ?>
31
- {{pdf_row_separator}}
32
- <?php endif; ?>
33
- <?php if ($_sortCode = $_account->getSortCode()): ?>
34
- <?php echo $this->__('Sort code') ?>: <?php echo $_sortCode ?>
35
- {{pdf_row_separator}}
36
- <?php endif; ?>
37
  <?php if ($_bankName = $_account->getBankName()): ?>
38
  <?php echo $this->__('Bank name') ?>: <?php echo $_bankName ?>
39
  {{pdf_row_separator}}
40
  <?php endif; ?>
41
- <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
42
- {{pdf_row_separator}}
43
- <?php echo $this->__('International') ?>
44
- {{pdf_row_separator}}
45
  <?php echo $this->__('IBAN') ?>: <?php echo $_iban ?>
46
  {{pdf_row_separator}}
 
 
47
  <?php echo $this->__('BIC') ?>: <?php echo $_bic ?>
48
  {{pdf_row_separator}}
49
  <?php endif; ?>
26
  <?php echo $this->__('Account holder') ?>: <?php echo $_accountHolder ?>
27
  {{pdf_row_separator}}
28
  <?php endif; ?>
 
 
 
 
 
 
 
 
29
  <?php if ($_bankName = $_account->getBankName()): ?>
30
  <?php echo $this->__('Bank name') ?>: <?php echo $_bankName ?>
31
  {{pdf_row_separator}}
32
  <?php endif; ?>
33
+ <?php if ($_iban = $_account->getIban()): ?>
 
 
 
34
  <?php echo $this->__('IBAN') ?>: <?php echo $_iban ?>
35
  {{pdf_row_separator}}
36
+ <?php endif; ?>
37
+ <?php if ($_bic = $_account->getBic()): ?>
38
  <?php echo $this->__('BIC') ?>: <?php echo $_bic ?>
39
  {{pdf_row_separator}}
40
  <?php endif; ?>
app/design/frontend/base/default/template/bankpayment/form.phtml CHANGED
@@ -22,7 +22,7 @@
22
  <li>
23
  <?php if ($_cmsPage = $this->getFormCmsUrl()): ?>
24
  <div class="input-box">
25
- <p><?php echo $this->__('More information on this paymentmethod can be found <a target="_blank" href="%s">here</a>.', $_cmsPage) ?></p>
26
  </div>
27
  <?php elseif ($_accounts = $this->getAccounts()): ?>
28
  <?php if (count($_accounts) == 1): ?>
@@ -50,26 +50,17 @@
50
  <?php if ($_accountHolder = $_account->getAccountHolder()): ?>
51
  <tr><td><label><?php echo $this->__('Account holder') ?></label>: </td><td><?php echo $_accountHolder ?></td></tr>
52
  <?php endif; ?>
53
- <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
54
- <tr><td><label><?php echo $this->__('Account number') ?></label>: </td><td><?php echo $_accountNumber ?></td></tr>
55
- <?php endif; ?>
56
- <?php if ($_sortCode = $_account->getSortCode()): ?>
57
- <tr><td><label><?php echo $this->__('Sort code') ?></label>: </td><td><?php echo $_sortCode ?></td></tr>
58
- <?php endif; ?>
59
  <?php if ($_bankName = $_account->getBankName()): ?>
60
  <tr><td><label><?php echo $this->__('Bank name') ?></label>: </td><td><?php echo $_bankName ?></td></tr>
61
  <?php endif; ?>
62
- </tbody>
63
- </table>
64
- <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
65
- <p><?php echo $this->__('For international transfers please use the following data') ?>:</p>
66
- <table>
67
- <tbody>
68
  <tr><td><label><?php echo $this->__('IBAN') ?></label>: </td><td><?php echo $_iban ?></td></tr>
 
 
69
  <tr><td><label><?php echo $this->__('BIC') ?></label>: </td><td><?php echo $_bic ?></td></tr>
70
- </tbody>
71
- </table>
72
- <?php endif; ?>
73
  <?php endforeach; ?>
74
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
75
  <br />
22
  <li>
23
  <?php if ($_cmsPage = $this->getFormCmsUrl()): ?>
24
  <div class="input-box">
25
+ <p><?php echo $this->__('More information on this payment method can be found <a target="_blank" href="%s">here</a>.', $_cmsPage) ?></p>
26
  </div>
27
  <?php elseif ($_accounts = $this->getAccounts()): ?>
28
  <?php if (count($_accounts) == 1): ?>
50
  <?php if ($_accountHolder = $_account->getAccountHolder()): ?>
51
  <tr><td><label><?php echo $this->__('Account holder') ?></label>: </td><td><?php echo $_accountHolder ?></td></tr>
52
  <?php endif; ?>
 
 
 
 
 
 
53
  <?php if ($_bankName = $_account->getBankName()): ?>
54
  <tr><td><label><?php echo $this->__('Bank name') ?></label>: </td><td><?php echo $_bankName ?></td></tr>
55
  <?php endif; ?>
56
+ <?php if ($_iban = $_account->getIban()): ?>
 
 
 
 
 
57
  <tr><td><label><?php echo $this->__('IBAN') ?></label>: </td><td><?php echo $_iban ?></td></tr>
58
+ <?php endif; ?>
59
+ <?php if ($_bic = $_account->getBic()): ?>
60
  <tr><td><label><?php echo $this->__('BIC') ?></label>: </td><td><?php echo $_bic ?></td></tr>
61
+ <?php endif; ?>
62
+ </tbody>
63
+ </table>
64
  <?php endforeach; ?>
65
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
66
  <br />
app/design/frontend/base/default/template/bankpayment/info.phtml CHANGED
@@ -30,41 +30,26 @@
30
  <td class="bankcol2"><?php echo $_accountHolder ?></td>
31
  </tr>
32
  <?php endif; ?>
33
- <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
34
  <tr>
35
- <td class="bankcol1"><label><?php echo $this->__('Account number') ?></label>: </td>
36
- <td class="bankcol2"><?php echo $_accountNumber ?></td>
37
  </tr>
38
  <?php endif; ?>
39
- <?php if ($_sortCode = $_account->getSortCode()): ?>
40
  <tr>
41
- <td class="bankcol1"><label><?php echo $this->__('Sort code') ?></label>: </td>
42
- <td class="bankcol2"><?php echo $_sortCode ?></td>
43
  </tr>
44
  <?php endif; ?>
45
- <?php if ($_bankName = $_account->getBankName()): ?>
46
  <tr>
47
- <td class="bankcol1"><label><?php echo $this->__('Bank name') ?></label>: </td>
48
- <td class="bankcol2"><?php echo $_bankName ?></td>
49
  </tr>
50
  <?php endif; ?>
51
  </tbody>
52
  </table>
53
- <?php if (($_iban = $_account->getIban()) && ($_bic = $_account->getBic())): ?>
54
- <div style="font-style:italic;padding-top:5px;"><?php echo $this->__('International') ?></div>
55
- <table class="bankpayment_info_int">
56
- <tbody>
57
- <tr>
58
- <td class="bankcol1"><label><?php echo $this->__('IBAN') ?></label>: </td>
59
- <td class="bankcol2"><?php echo $_iban ?></td>
60
- </tr>
61
- <tr>
62
- <td class="bankcol1"><label><?php echo $this->__('BIC') ?></label>: </td>
63
- <td class="bankcol2"><?php echo $_bic ?></td>
64
- </tr>
65
- </tbody>
66
- </table>
67
- <?php endif; ?>
68
  <?php endforeach; ?>
69
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
70
  <br />
30
  <td class="bankcol2"><?php echo $_accountHolder ?></td>
31
  </tr>
32
  <?php endif; ?>
33
+ <?php if ($_bankName = $_account->getBankName()): ?>
34
  <tr>
35
+ <td class="bankcol1"><label><?php echo $this->__('Bank name') ?></label>: </td>
36
+ <td class="bankcol2"><?php echo $_bankName ?></td>
37
  </tr>
38
  <?php endif; ?>
39
+ <?php if ($_iban = $_account->getIban()): ?>
40
  <tr>
41
+ <td class="bankcol1"><label><?php echo $this->__('IBAN') ?></label>: </td>
42
+ <td class="bankcol2"><?php echo $_iban ?></td>
43
  </tr>
44
  <?php endif; ?>
45
+ <?php if ($_bic = $_account->getBic()): ?>
46
  <tr>
47
+ <td class="bankcol1"><label><?php echo $this->__('BIC') ?></label>: </td>
48
+ <td class="bankcol2"><?php echo $_bic ?></td>
49
  </tr>
50
  <?php endif; ?>
51
  </tbody>
52
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  <?php endforeach; ?>
54
  <?php if ($_customText = $this->getMethod()->getCustomText()): ?>
55
  <br />
app/design/frontend/base/default/template/bankpayment/pdf/info.phtml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/osl-3.0.php
10
+ *
11
+ * @category Mage
12
+ * @package Phoenix_BankPayment
13
+ * @copyright Copyright (c) 2010 Phoenix Medien GmbH & Co. KG (http://www.phoenix-medien.de)
14
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
15
+ */
16
+ ?>
17
+ <?php if($_info = $this->getInfo()): ?>
18
+ <?php echo $this->getMethod()->getTitle(); ?>
19
+ <?php if ($this->getShowBankAccountsInPdf()): ?>
20
+ <?php echo ' - '.$this->__('Account info'); ?>
21
+ {{pdf_row_separator}}
22
+ <?php $_accounts = $this->getAccounts(); ?>
23
+ <?php foreach($_accounts as $_account): ?>
24
+ {{pdf_row_separator}}
25
+ <?php if ($_bankName = $_account->getBankName()): ?>
26
+ <?php echo $this->__('Bank name') ?>: <?php echo $_bankName ?>
27
+ {{pdf_row_separator}}
28
+ <?php endif; ?>
29
+ <?php if ($_accountNumber = $_account->getAccountNumber()): ?>
30
+ <?php echo $this->__('Account number') ?>: <?php echo $_accountNumber ?>
31
+ {{pdf_row_separator}}
32
+ <?php endif; ?>
33
+ <?php if ($_iban = $_account->getIban()): ?>
34
+ <?php echo $this->__('IBAN') ?>: <?php echo $_iban ?>
35
+ {{pdf_row_separator}}
36
+ <?php endif; ?>
37
+ <?php if ($_bic = $_account->getBic()): ?>
38
+ <?php echo $this->__('BIC') ?>: <?php echo $_bic ?>
39
+ {{pdf_row_separator}}
40
+ <?php endif; ?>
41
+ <?php endforeach; ?>
42
+ <?php endif; ?>
43
+ <?php if ($this->getShowCustomTextInPdf() && $_customText = $this->getMethod()->getCustomText()): ?>
44
+ {{pdf_row_separator}}
45
+ <?php echo $_customText; ?>
46
+ <?php endif; ?>
47
+ {{pdf_row_separator}}
48
+ <?php endif; ?>
app/etc/modules/Mage_BankPayment.xml DELETED
@@ -1,12 +0,0 @@
1
- <config>
2
- <modules>
3
- <Mage_BankPayment>
4
- <active>false</active>
5
- <codePool>community</codePool>
6
- <depends>
7
- <Mage_Payment />
8
- </depends>
9
- <version>0.2.2</version>
10
- </Mage_BankPayment>
11
- </modules>
12
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/da_DK/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Kontohaver"
8
- "Account number","Kontonummer"
9
- "Account number1","Kontonummer"
10
- "Sort code","Sorteringsnøgle"
11
  "Bank name","Bank"
12
- "For international transfers please use the following data","For internationale overførsler, benyt venligst nedenstående oplysninger"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontoinformation"
16
- "International","International"
17
  "Custom text","Brugerdefineret tekst"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Kontohaver"
20
- "Bank Account number","Kontonummer"
21
- "Bank Sort code","Sorteringsnøgle"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Kontohaver"
 
 
 
8
  "Bank name","Bank"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Kontoinformation"
 
12
  "Custom text","Brugerdefineret tekst"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Kontohaver"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/de_DE/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Bitte überweisen Sie das Geld innerhalb von %s Tagen auf eines der folgenden Konten"
6
  "Please transfer the money to one of the following bank accounts","Bitte überweisen Sie das Geld auf eines der folgenden Konten"
7
  "Account holder","Kontoinhaber"
8
- "Account number","Kontonummer"
9
- "Account number1","Kontonummer"
10
- "Sort code","BLZ"
11
  "Bank name","Bankname"
12
- "For international transfers please use the following data","Für internationale Überweisungen benutzen Sie bitte folgende Daten"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Kontodaten"
16
- "International","International"
17
  "Custom text","Benutzerdefinierter Text"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Einzelheiten der Zahlungsart finden Sie <a target=""_blank"" href=""%s"">hier</a>."
19
  "Bank Account holder","Inhaber"
20
- "Bank Account number","Kto-Nr."
21
- "Bank Sort code","BLZ"
22
  "Bank Accounts","Bankkonten"
23
  "Add Bank Account","Bankkonto hinzufügen"
24
  "Delete Account","Konto löschen"
5
  "Please transfer the money within %s days to one of the following bank accounts","Bitte überweisen Sie das Geld innerhalb von %s Tagen auf eines der folgenden Konten"
6
  "Please transfer the money to one of the following bank accounts","Bitte überweisen Sie das Geld auf eines der folgenden Konten"
7
  "Account holder","Kontoinhaber"
 
 
 
8
  "Bank name","Bankname"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Kontodaten"
 
12
  "Custom text","Benutzerdefinierter Text"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Einzelheiten der Zahlungsart finden Sie <a target=""_blank"" href=""%s"">hier</a>."
14
  "Bank Account holder","Inhaber"
 
 
15
  "Bank Accounts","Bankkonten"
16
  "Add Bank Account","Bankkonto hinzufügen"
17
  "Delete Account","Konto löschen"
app/locale/el_GR/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Δικαιούχος"
8
- "Account number","Αριθμός Λογαριασμού"
9
- "Account number1","Αριθμός Λογαριασμού"
10
- "Sort code","Sort code"
11
  "Bank name","Τράπεζα"
12
- "For international transfers please use the following data","Για διεθνείς καταθέσεις παρακαλώ χρησιμοποιείστε και τα παρακάτω στοιχεία"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Πληροφορίες Λογαριασμού"
16
- "International","Διεθνείς"
17
  "Custom text","Custom text"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Δικαιούχος"
20
- "Bank Account number","Αριθμός Λογαριασμού"
21
- "Bank Sort code","Sort code"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Δικαιούχος"
 
 
 
8
  "Bank name","Τράπεζα"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Πληροφορίες Λογαριασμού"
 
12
  "Custom text","Custom text"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Δικαιούχος"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/en_US/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Account holder"
8
- "Account number","Account number"
9
- "Account number1","Account number"
10
- "Sort code","Sort code"
11
  "Bank name","Bank name"
12
- "For international transfers please use the following data","For international transfers please use also following data"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
- "International","International"
17
  "Custom text","Custom text"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Bank Account holder"
20
- "Bank Account number","Bank Account number"
21
- "Bank Sort code","Bank Sort code"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Account holder"
 
 
 
8
  "Bank name","Bank name"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Account info"
 
12
  "Custom text","Custom text"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Bank Account holder"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/es_ES/Phoenix_BankPayment.csv CHANGED
@@ -1,29 +1,22 @@
1
  "Bank Prepayment","Transferencia Bancaria"
2
- "Pay within X days","Pague en X dias"
3
- "Please transfer the money within %s days to the following bank account","Por favor, ingrese el dinero antes de %s días a la siguiente cuenta bancaria"
4
- "Please transfer the money to the following bank account","Por favor, ingrese el dinero a la siguiente cuenta bancaria"
5
- "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
- "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Titular de la cuenta"
8
- "Account number","Número de cuenta"
9
- "Account number1","Número de cuenta"
10
- "Sort code","Tipo de cuenta"
11
- "Bank name","Nombre del Banco"
12
- "For international transfers please use the following data","Para transferencias internacionales, por favor, utilice los siguientes datos"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Información de la cuenta"
16
- "International","Internacional"
17
- "Custom text","Texto personalizado "
18
- "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Titular de la cuenta"
20
- "Bank Account number","Número de cuenta"
21
- "Bank Sort code","Tipo de cuenta"
22
- "Bank Accounts","Bank Accounts"
23
- "Add Bank Account","Add Bank Account"
24
- "Delete Account","Delete Account"
25
- "Add your bank accounts data","Add your bank accounts data"
26
- "Form CMS Page","Form CMS Page"
27
- "Choose CMS page to display a link instead of the bank accounts in the payment form","Choose CMS page to display a link instead of the bank accounts in the payment form"
28
- "Show bank accounts in PDF","Show bank accounts in PDF"
29
- "Show custom text in PDF","Show custom text in PDF"
1
  "Bank Prepayment","Transferencia Bancaria"
2
+ "Pay within X days","Pagar en el plazo de X días"
3
+ "Please transfer the money within %s days to the following bank account","Por favor, transfiera el dinero dentro de %s días a la siguiente cuenta bancaria"
4
+ "Please transfer the money to the following bank account","Por favor, transfiera el dinero a la siguiente cuenta bancaria"
5
+ "Please transfer the money within %s days to one of the following bank accounts","Por favor, transfiera el dinero dentro de %s días a una de las siguientes cuentas bancarias"
6
+ "Please transfer the money to one of the following bank accounts","Por favor, transfiera el dinero a una de las siguientes cuentas bancarias"
7
  "Account holder","Titular de la cuenta"
8
+ "Bank name","Nombre del banco"
 
 
 
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Información de la cuenta"
12
+ "Custom text","Texto personalizado"
13
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Más información este método de pago se encuentra <a target=""_blank"" href=""%s"">aquí</a>."
 
14
  "Bank Account holder","Titular de la cuenta"
15
+ "Bank Accounts","Cuentas bancarias"
16
+ "Add Bank Account","Agregar cuenta bancaria"
17
+ "Delete Account","Eliminar cuenta"
18
+ "Add your bank accounts data","¡Por favor, complete los datos bancarios!"
19
+ "Form CMS Page","Formulario página CMS"
20
+ "Choose CMS page to display a link instead of the bank accounts in the payment form","Eliga la página CMS para visualizar un enlace en vez de las cuentas bancarias en el formulario de pago"
21
+ "Show bank accounts in PDF","Mostrar cuentas bancarias en PDF"
22
+ "Show custom text in PDF","Mostrar texto personalizado en PDF"
 
 
app/locale/fr_FR/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Détenteur du compte"
8
- "Account number","Numéro de compte"
9
- "Account number1","Numéro de compte"
10
- "Sort code","Clé RIB"
11
  "Bank name","Code banque"
12
- "For international transfers please use the following data","Pour les transferts internationaux compléter aussi les informations suivantes"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Information sur votre compte"
16
- "International","International"
17
  "Custom text","Autres instructions"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Détenteur du compte"
20
- "Bank Account number","Numéro de compte"
21
- "Bank Sort code","Clé RIB"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Détenteur du compte"
 
 
 
8
  "Bank name","Code banque"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Information sur votre compte"
 
12
  "Custom text","Autres instructions"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Détenteur du compte"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/it_IT/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Intestatario"
8
- "Account number","Numero conto"
9
- "Account number1","Numero conto"
10
- "Sort code","Ordinamento"
11
  "Bank name","Banca"
12
- "For international transfers please use the following data","Per bonifici internazionali utilizzate anche i seguenti dati"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informazioni conto"
16
- "International","Internationale"
17
  "Custom text","Testo aggiuntivo"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Intestatario"
20
- "Bank Account number","Numero conto"
21
- "Bank Sort code","Ordinamento"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Intestatario"
 
 
 
8
  "Bank name","Banca"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Informazioni conto"
 
12
  "Custom text","Testo aggiuntivo"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Intestatario"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/ja_JP/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","下記の銀行口座のいずれかに%s日以内にお振込みください"
6
  "Please transfer the money to one of the following bank accounts","下記の銀行口座のいずれかにお振込みください"
7
  "Account holder","口座名義"
8
- "Account number","口座番号"
9
- "Account number1","口座番号"
10
- "Sort code","Sort code"
11
  "Bank name","銀行名"
12
- "For international transfers please use also following data","国際送金の場合は次の情報をお使いください"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","口座情報"
16
- "International","国際"
17
  "Custom text","カスタムテキスト"
18
  "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","このお支払い方法についての詳細は<a target=""_blank"" href=""%s"">こちら</a>."
19
  "Bank Account holder","銀行口座名義"
20
- "Bank Account number","銀行口座情報"
21
- "Bank Sort code","Bank Sort code"
22
  "Bank Accounts","銀行口座"
23
  "Add Bank Account","銀行口座を追加"
24
  "Delete Account","口座を削除"
5
  "Please transfer the money within %s days to one of the following bank accounts","下記の銀行口座のいずれかに%s日以内にお振込みください"
6
  "Please transfer the money to one of the following bank accounts","下記の銀行口座のいずれかにお振込みください"
7
  "Account holder","口座名義"
 
 
 
8
  "Bank name","銀行名"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","口座情報"
 
12
  "Custom text","カスタムテキスト"
13
  "More information on this paymentmethod can be found <a target=""_blank"" href=""%s"">here</a>.","このお支払い方法についての詳細は<a target=""_blank"" href=""%s"">こちら</a>."
14
  "Bank Account holder","銀行口座名義"
 
 
15
  "Bank Accounts","銀行口座"
16
  "Add Bank Account","銀行口座を追加"
17
  "Delete Account","口座を削除"
app/locale/nb_NO/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Account holder"
8
- "Account number","Account number"
9
- "Account number1","Account number"
10
- "Sort code","Sort code (not used in Norway)"
11
  "Bank name","Bank name"
12
- "For international transfers please use the following data","For utenlandsbetalinger, vennligst bruk følgende bankdata"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Account info"
16
- "International","International"
17
  "Custom text","Tilpasset tekst"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Account holder"
20
- "Bank Account number","Account number"
21
- "Bank Sort code","Bank Sort code"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Account holder"
 
 
 
8
  "Bank name","Bank name"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Account info"
 
12
  "Custom text","Tilpasset tekst"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Account holder"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/nl_NL/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Rekeninghouder"
8
- "Account number","Rekeningnummer"
9
- "Account number1","Rekeningnummer"
10
- "Sort code","Sort code (wordt niet gebruikt in Nederland)"
11
  "Bank name","Bank naam"
12
- "For international transfers please use the following data","Voor internationale overschrijvingen gebruik a.u.b. de volgende gegevens"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Rekening info"
16
- "International","Internationaal"
17
  "Custom text","Custom text"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Rekeninghouder"
20
- "Bank Account number","Rekeningnummer"
21
- "Bank Sort code","Bank Sort code"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Rekeninghouder"
 
 
 
8
  "Bank name","Bank naam"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Rekening info"
 
12
  "Custom text","Custom text"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Rekeninghouder"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/pl_PL/Phoenix_BankPayment.csv CHANGED
@@ -5,20 +5,13 @@
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Właściciel konta"
8
- "Account number","Numer konta"
9
- "Account number1","Numer konta"
10
- "Sort code","Kolejność wyświetlania"
11
  "Bank name","Nazwa banku"
12
- "For international transfers please use the following data","Dla przelewów międzynarodowych użyj następujących danych"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
  "Account info","Informacje o koncie"
16
- "International","Międzynarodowy"
17
  "Custom text","Dodatkowy tekst"
18
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
  "Bank Account holder","Właściciel konta"
20
- "Bank Account number","Numer konta"
21
- "Bank Sort code","Kolejność wyświetlania"
22
  "Bank Accounts","Bank Accounts"
23
  "Add Bank Account","Add Bank Account"
24
  "Delete Account","Delete Account"
5
  "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
  "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Właściciel konta"
 
 
 
8
  "Bank name","Nazwa banku"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
  "Account info","Informacje o koncie"
 
12
  "Custom text","Dodatkowy tekst"
13
  "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
14
  "Bank Account holder","Właściciel konta"
 
 
15
  "Bank Accounts","Bank Accounts"
16
  "Add Bank Account","Add Bank Account"
17
  "Delete Account","Delete Account"
app/locale/pt_BR/Phoenix_BankPayment.csv CHANGED
@@ -1,29 +1,22 @@
1
  "Bank Prepayment","Transferência Bancária"
2
- "Pay within X days","Pague em X dias"
3
- "Please transfer the money within %s days to the following bank account","Por favor, transfira o dinheiro dentro de %s dias para a seguinte conta bancária"
4
  "Please transfer the money to the following bank account","Por favor, transfira o dinheiro para a seguinte conta bancária"
5
- "Please transfer the money within %s days to one of the following bank accounts","Please transfer the money within %s days to one of the following bank accounts"
6
- "Please transfer the money to one of the following bank accounts","Please transfer the money to one of the following bank accounts"
7
  "Account holder","Titular da conta"
8
- "Account number","Número da conta"
9
- "Account number1","Número da conta"
10
- "Sort code","Tipo da conta"
11
  "Bank name","Nome do banco"
12
- "For international transfers please use the following data","Para transferências internacionais, por favor, utilize os seguintes dados"
13
  "IBAN","IBAN"
14
  "BIC","BIC"
15
- "Account info","Informações da conta"
16
- "International","Internacional"
17
  "Custom text","Texto personalizado"
18
- "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>."
19
- "Bank Account holder","Titular da conta"
20
- "Bank Account number","Número da conta"
21
- "Bank Sort code","Tipo da conta"
22
- "Bank Accounts","Bank Accounts"
23
- "Add Bank Account","Add Bank Account"
24
- "Delete Account","Delete Account"
25
- "Add your bank accounts data","Add your bank accounts data"
26
- "Form CMS Page","Form CMS Page"
27
- "Choose CMS page to display a link instead of the bank accounts in the payment form","Choose CMS page to display a link instead of the bank accounts in the payment form"
28
- "Show bank accounts in PDF","Show bank accounts in PDF"
29
- "Show custom text in PDF","Show custom text in PDF"
1
  "Bank Prepayment","Transferência Bancária"
2
+ "Pay within X days","Pague no prazo de X dias"
3
+ "Please transfer the money within %s days to the following bank account","Por favor, transfira o dinheiro no prazo de %s dias para a seguinte conta bancária"
4
  "Please transfer the money to the following bank account","Por favor, transfira o dinheiro para a seguinte conta bancária"
5
+ "Please transfer the money within %s days to one of the following bank accounts","Por favor, transfira o dinheiro no prazo de %s dias para uma das seguintes contas bancárias"
6
+ "Please transfer the money to one of the following bank accounts","Por favor, transfira o dinheiro para uma das seguintes contas bancárias"
7
  "Account holder","Titular da conta"
 
 
 
8
  "Bank name","Nome do banco"
 
9
  "IBAN","IBAN"
10
  "BIC","BIC"
11
+ "Account info","Informação da conta"
 
12
  "Custom text","Texto personalizado"
13
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Mais informações sobre este método de pagamento pode ser encontrada <a target="_blank" href="%s">aqui</a>."
14
+ "Bank Account holder","Titular da conta bancária"
15
+ "Bank Accounts","Contas bancárias"
16
+ "Add Bank Account","Adicionar conta bancária"
17
+ "Delete Account","Remover conta"
18
+ "Add your bank accounts data","Por favor, preencha os dados bancários!"
19
+ "Form CMS Page","Formulário página de CMS"
20
+ "Choose CMS page to display a link instead of the bank accounts in the payment form","Escolha a página CMS para exibir um link em vez de contas bancárias na forma de pagamento"
21
+ "Show bank accounts in PDF","Mostrar contas bancárias em PDF"
22
+ "Show custom text in PDF","Mostrar texto personalizado em PDF"
 
 
app/locale/tr_TR/Phoenix_BankPayment.csv ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "Bank Prepayment","Havale/EFT"
2
+ "Pay within X days","X günde ödeme bekleniyor"
3
+ "Please transfer the money within %s days to the following bank account","Lütfen aşağaki hesaba %s gün içinde ödeme yapınız. Aksi takdirde siparişiniz iptal edilecektir."
4
+ "Please transfer the money to the following bank account","Lütfen ödemeyi aşağıdaki hesaba yapınız."
5
+ "Please transfer the money within %s days to one of the following bank accounts","Lütfen aşağaki hesaplardan birine %s gün içinde ödeme yapınız. Aksi takdirde siparişiniz iptal edilecektir."
6
+ "Please transfer the money to one of the following bank accounts","Lütfen ödemeyi aşağıdaki hesaplardan birine yapınız."
7
+ "Account holder","Alıcı İsmi"
8
+ "Bank name","Banka İsmi"
9
+ "IBAN","IBAN"
10
+ "BIC","BIC (Swift) Kodu"
11
+ "Account info","Hesap Bilgisi"
12
+ "Custom text","Özel Açıklama"
13
+ "More information on this payment method can be found <a target=""_blank"" href=""%s"">here</a>.","Havale ile ödeme yöntemi hakkında ayrıntılı bilgi için <a target=""_blank"" href=""%s"">burayı tıklayın.</a>"
14
+ "Bank Account holder","Alıcı"
15
+ "Bank Accounts","Banka Hesapları"
16
+ "Add Bank Account","Banka Hesabı Ekle"
17
+ "Delete Account","Hesabı Sil"
18
+ "Add your bank accounts data","Banka hesap bilgisi ekleyin"
19
+ "Form CMS Page","Formun Bulunacağı İçerik Sayfası"
20
+ "Choose CMS page to display a link instead of the bank accounts in the payment form","Ödeme formunda hesap bilgileri göstermek yerine istediğiniz içeriğe link vermek için bir sayfa seçin."
21
+ "Show bank accounts in PDF","Banka bilgilerini PDF'de göster"
22
+ "Show custom text in PDF","Girdiğiniz özel açıklamayı PDF dosyasında göster"
package.xml CHANGED
@@ -1,18 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
- <version>1.1.0</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>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</summary>
10
- <description>Bank prepayment module which notifies the buyer to which bank account he has to transfer the money.</description>
11
- <notes>- Moved templates to base folder</notes>
12
- <authors><author><name>Phoenix Medien</name><user>auto-converted</user><email>info@phoenix-medien.de</email></author></authors>
13
- <date>2012-06-04</date>
14
- <time>21:09:11</time>
15
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><dir name="pdf"><file name="info.phtml" hash="7c6d2e1e664d70f09ade058b32e06d40"/></dir><file name="form.phtml" hash="8a40960994fcc207504185f6f8496ee7"/><file name="info.phtml" hash="90976a36077a1c26095efa6801f2e4de"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="d17f83a13039a1b53263c786fb8cb7dd"/><file name="info.phtml" hash="a7ee46f4ff40fd7a9bb9dc8785977b6c"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="Phoenix_BankPayment.csv" hash="cf20b4b899bd4c27ad1ab599cb2a4a15"/></dir><dir name="de_DE"><file name="Phoenix_BankPayment.csv" hash="e15f446512665ba82d0b89f6e277a16f"/></dir><dir name="el_GR"><file name="Phoenix_BankPayment.csv" hash="37deb1bbdbd0dcf6ede82e342555036a"/></dir><dir name="en_US"><file name="Phoenix_BankPayment.csv" hash="9c8e34711daf16145ee6e75b2589a5ba"/></dir><dir name="es_ES"><file name="Phoenix_BankPayment.csv" hash="66c5675ba12c431290c2f8c29cf108de"/></dir><dir name="fr_FR"><file name="Phoenix_BankPayment.csv" hash="8530520abce05bae3eabfdf2229e8d4d"/></dir><dir name="it_IT"><file name="Phoenix_BankPayment.csv" hash="e8d9f83ac98959d1fd6c2847594011cf"/></dir><dir name="ja_JP"><file name="Phoenix_BankPayment.csv" hash="80b8757c63f5f5a9b8d0a9dfe3fa6b5e"/></dir><dir name="nb_NO"><file name="Phoenix_BankPayment.csv" hash="813f0a8c306c283f55429012d5dc2f21"/></dir><dir name="nl_NL"><file name="Phoenix_BankPayment.csv" hash="82e92fa5575b0fb92a7ae053424da06d"/></dir><dir name="pl_PL"><file name="Phoenix_BankPayment.csv" hash="cb45cc08f2fe61a3912b82e4bd372e6f"/></dir><dir name="pt_BR"><file name="Phoenix_BankPayment.csv" hash="133eececfca97e437521b281e5f5aad0"/></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash="e18bd0a877b5da700b8d565dc50ea788"/><file name="Phoenix_BankPayment.xml" hash="225a3bc6e06900570203a7b66460d7ca"/></dir></target><target name="magecommunity"><dir name="Phoenix"><dir name="BankPayment"><dir name="Block"><dir name="Adminhtml"><file name="BankAccount.php" hash="1efad32fd1a2015b359c06ed76ab9a8d"/></dir><file name="Form.php" hash="b5279b08c04902a46ab723c49b530f9c"/><file name="Info.php" hash="61b3aae2b2817f60e0c7dba2d34d789c"/></dir><dir name="etc"><file name="config.xml" hash="4c3946f4b05cff0b43be6371f3d54ced"/><file name="system.xml" hash="2c814b1ae88da52c6d4e31eb7fa69ab7"/></dir><dir name="Helper"><file name="Data.php" hash="f6b06bd3a19f1ba2d323f7e6547e9b77"/></dir><dir name="Model"><dir name="Source"><dir name="Order"><file name="Status.php" hash="244cf40b204a0dbc9d296fe90f0001da"/></dir><file name="CmsPage.php" hash="f685066651992f25ed3f8fd2c842959c"/></dir><file name="BankPayment.php" hash="9d1046d0886aa0ea24c42040af63ca58"/></dir><dir name="sql"><dir name="bankpayment_setup"><file name="mysql4-upgrade-0.2.5-0.3.0.php" hash="6606b754bfbc1fd68c3a3fa25a0799a5"/></dir></dir></dir></dir></target></contents>
 
 
16
  <compatible/>
17
- <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
+ <version>1.2.0</version>
5
  <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">OSL</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Vorkasse - Bank Prepayment module which notifies the buyer to which bank account he has to transfer the money.</summary>
10
+ <description>Bank Prepayment module which notifies the buyer to which bank account he has to transfer the money.</description>
11
+ <notes>IBAN ready&#xD;
12
+ Allow partial capturing&#xD;
13
+ Localization improvements</notes>
14
+ <authors><author><name>Phoenix Media GmbH</name><user>PHOENIX</user><email>bjoern.kraus@phoenix-media.eu</email></author></authors>
15
+ <date>2017-09-05</date>
16
+ <time>11:08:47</time>
17
+ <contents><target name="magecommunity"><dir name="Phoenix"><dir name="BankPayment"><dir name="Block"><dir name="Adminhtml"><file name="BankAccount.php" hash="80df5881081ded22b182ac2bde3b0a3e"/></dir><file name="Form.php" hash="b5279b08c04902a46ab723c49b530f9c"/><file name="Info.php" hash="61b3aae2b2817f60e0c7dba2d34d789c"/></dir><dir name="Helper"><file name="Data.php" hash="f6b06bd3a19f1ba2d323f7e6547e9b77"/></dir><dir name="Model"><file name="BankPayment.php" hash="830aed8fbdb52e182277efa9fc47237d"/><dir name="Source"><file name="CmsPage.php" hash="f685066651992f25ed3f8fd2c842959c"/><dir name="Order"><file name="Status.php" hash="244cf40b204a0dbc9d296fe90f0001da"/></dir></dir></dir><dir name="etc"><file name="config.xml" hash="db02d2239a4b263b4d9bc9b129d0fc60"/><file name="system.xml" hash="5bbe995f3a62c353e0bfef0526ec0139"/></dir><dir name="sql"><dir name="bankpayment_setup"><file name="mysql4-upgrade-0.2.5-0.3.0.php" hash="7d607e659e44f5dffb9fde051d7842ae"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash=""/><file name="Phoenix_BankPayment.xml" hash="225a3bc6e06900570203a7b66460d7ca"/></dir></target><target name="magelocale"><dir name="da_DK"><file name="Phoenix_BankPayment.csv" hash="512ffa0a63d7b279e2f49b23dae2f539"/></dir><dir name="de_DE"><file name="Phoenix_BankPayment.csv" hash="8da365309bee63a91d27d5ad6f55e5ad"/></dir><dir name="el_GR"><file name="Phoenix_BankPayment.csv" hash="3b7e89ee6ee378c615fbc2540beef6d9"/></dir><dir name="en_US"><file name="Phoenix_BankPayment.csv" hash="be655b6d86d6ca74ee522edd3055bdb8"/></dir><dir name="es_ES"><file name="Phoenix_BankPayment.csv" hash="783a6a348fae7adb165789647385ec93"/></dir><dir name="fr_FR"><file name="Phoenix_BankPayment.csv" hash="1eeb73a93bfe11a45ef9c46f56eb821f"/></dir><dir name="it_IT"><file name="Phoenix_BankPayment.csv" hash="919dfce530417c71f23cc150a1a95994"/></dir><dir name="ja_JP"><file name="Phoenix_BankPayment.csv" hash="40d0bcab02db8cd6e5356e916314cb18"/></dir><dir name="nb_NO"><file name="Phoenix_BankPayment.csv" hash="ca02b61bfda04c8c5ec820b61c4c240f"/></dir><dir name="nl_NL"><file name="Phoenix_BankPayment.csv" hash="7da80a98038ebde59265aacd6069a49d"/></dir><dir name="pl_PL"><file name="Phoenix_BankPayment.csv" hash="dd481377c49d7aa30726a01a4604b4ef"/></dir><dir name="pt_BR"><file name="Phoenix_BankPayment.csv" hash="53b04362f5fc9d7a9699905df2e75d54"/></dir><dir name="tr_TR"><file name="Phoenix_BankPayment.csv" hash="bdc0abdaaffa7a59dca409d7549a70ed"/></dir><dir name="sv_SE"><file name="Phoenix_BankPayment.csv" hash=""/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="85e7830048d22e286230ce3cece906a7"/><file name="info.phtml" hash="5254337da3e3dedc68140534cdf00551"/><dir name="pdf"><file name="info.phtml" hash="d89be5180058634efd03a6fe9a3496ca"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="4f50e86959424f23ad5ee8c76fdcb3d1"/><file name="info.phtml" hash="d8f122eedecc0743ce043ad23ee67b10"/><dir name="pdf"><file name="info.phtml" hash="e46a89749d1010ac1857cd747ade5c9b"/></dir></dir></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
+ <dependencies><required><php><min>5.2.0</min><max>7.0.22</max></php><extension><name>Core</name><min/><max/></extension></required></dependencies>
20
  </package>