BankPayment - Version 0.2.2

Version Notes

Notice for upgrades from v0.2.0 to v0.2.1:

As the code was moved from local to community code space, you have to remove the folder manually /app/code/local/Mage/BankPayment to clean up your existing Magento installation.

Changelog

0.2.2
- custom text field converted to custom text area (multiline)
- bank data is now aligned in a table

0.2.1
- custom text field added
- added Norwegian Bokmål locale
- moved from local to community code space

0.2.0
- first public release

Download this release

Release Info

Developer Magento Core Team
Extension BankPayment
Version 0.2.2
Comparing to
See all releases


Code changes from version 0.2.1 to 0.2.2

app/code/community/Mage/BankPayment/Block/Form.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Magento
4
  *
1
  <?php
2
+
3
  /**
4
  * Magento
5
  *
app/code/community/Mage/BankPayment/Block/Info.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Magento
4
  *
1
  <?php
2
+
3
  /**
4
  * Magento
5
  *
app/code/community/Mage/BankPayment/Model/BankPayment.php CHANGED
@@ -17,6 +17,7 @@
17
 
18
  class Mage_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Abstract
19
  {
 
20
  /**
21
  * unique internal payment method identifier
22
  *
@@ -61,9 +62,10 @@ class Mage_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Abstr
61
  {
62
  return intval($this->getConfigData('paywithinxdays'));
63
  }
64
-
65
  public function getCustomText()
66
  {
67
- return $this->getConfigData('customtext');
68
  }
 
69
  }
17
 
18
  class Mage_BankPayment_Model_BankPayment extends Mage_Payment_Model_Method_Abstract
19
  {
20
+
21
  /**
22
  * unique internal payment method identifier
23
  *
62
  {
63
  return intval($this->getConfigData('paywithinxdays'));
64
  }
65
+
66
  public function getCustomText()
67
  {
68
+ return nl2br($this->getConfigData('customtext'));
69
  }
70
+
71
  }
app/code/community/Mage/BankPayment/etc/system.xml CHANGED
@@ -121,7 +121,7 @@
121
  </paywithinxdays>
122
  <customtext translate="label">
123
  <label>Custom text</label>
124
- <frontend_type>text</frontend_type>
125
  <sort_order>15</sort_order>
126
  <show_in_default>1</show_in_default>
127
  <show_in_website>1</show_in_website>
121
  </paywithinxdays>
122
  <customtext translate="label">
123
  <label>Custom text</label>
124
+ <frontend_type>textarea</frontend_type>
125
  <sort_order>15</sort_order>
126
  <show_in_default>1</show_in_default>
127
  <show_in_website>1</show_in_website>
app/design/adminhtml/default/default/template/bankpayment/form.phtml CHANGED
@@ -16,7 +16,7 @@
16
  */
17
 
18
  ?>
19
- <ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none">
20
  <li>
21
  <div class="input-box">
22
  <?php if ($this->getMethod()->getPayWithinXDays() > 0): ?>
@@ -24,27 +24,35 @@
24
  <?php else: ?>
25
  <?php echo $this->__('Please transfer the money to the following bank account'); ?>:
26
  <?php endif; ?><br /><br />
 
 
27
  <?php if ($this->getMethod()->getAccountHolder()): ?>
28
- <?php echo '<label>'.$this->__('Account holder').'</label>: '.$this->getMethod()->getAccountHolder() ?><br />
29
  <?php endif; ?>
30
  <?php if ($this->getMethod()->getAccountNumber()): ?>
31
- <?php echo '<label>'.$this->__('Account number').'</label>: '.$this->getMethod()->getAccountNumber() ?><br />
32
  <?php endif; ?>
33
  <?php if ($this->getMethod()->getSortCode()): ?>
34
- <?php echo '<label>'.$this->__('Sort code').'</label>: '.$this->getMethod()->getSortCode() ?><br />
35
  <?php endif; ?>
36
  <?php if ($this->getMethod()->getBankName()): ?>
37
- <?php echo '<label>'.$this->__('Bank name').'</label>: '.$this->getMethod()->getBankName() ?><br />
38
  <?php endif; ?>
 
 
39
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
40
  <br /><br />
41
  <?php echo $this->__('For international transfers please use also following data') ?>:<br /><br />
42
- <?php echo '<label>'.$this->__('IBAN').'</label>: '.$this->getMethod()->getIBAN() ?><br />
43
- <?php echo '<label>'.$this->__('BIC').'</label>: '.$this->getMethod()->getBIC() ?><br />
 
 
 
 
44
  <?php endif; ?>
45
  <?php if ($this->getMethod()->getCustomText()): ?>
46
  <br />
47
- <?php echo $this->getMethod()->getCustomText() ?><br />
48
  <?php endif; ?>
49
  </div>
50
  </li>
16
  */
17
 
18
  ?>
19
+ <ul id="payment_form_<?php echo $this->getMethodCode(); ?>" style="display:none">
20
  <li>
21
  <div class="input-box">
22
  <?php if ($this->getMethod()->getPayWithinXDays() > 0): ?>
24
  <?php else: ?>
25
  <?php echo $this->__('Please transfer the money to the following bank account'); ?>:
26
  <?php endif; ?><br /><br />
27
+ <table>
28
+ <tbody>
29
  <?php if ($this->getMethod()->getAccountHolder()): ?>
30
+ <?php echo '<tr><td><label>' . $this->__('Account holder') . '</label>:</td><td>' . $this->getMethod()->getAccountHolder() . '</td></tr>'; ?>
31
  <?php endif; ?>
32
  <?php if ($this->getMethod()->getAccountNumber()): ?>
33
+ <?php echo '<tr><td><label>' . $this->__('Account number') . '</label>:</td><td>' . $this->getMethod()->getAccountNumber() . '</td></tr>'; ?>
34
  <?php endif; ?>
35
  <?php if ($this->getMethod()->getSortCode()): ?>
36
+ <?php echo '<tr><td><label>' . $this->__('Sort code') . '</label>:</td><td>' . $this->getMethod()->getSortCode() . '</td></tr>'; ?>
37
  <?php endif; ?>
38
  <?php if ($this->getMethod()->getBankName()): ?>
39
+ <?php echo '<tr><td><label>' . $this->__('Bank name') . '</label>:</td><td>' . $this->getMethod()->getBankName() . '</td></tr>'; ?>
40
  <?php endif; ?>
41
+ </tbody>
42
+ <table>
43
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
44
  <br /><br />
45
  <?php echo $this->__('For international transfers please use also following data') ?>:<br /><br />
46
+ <table>
47
+ <tbody>
48
+ <?php echo '<tr><td><label>' . $this->__('IBAN') . '</label>:</td><td>' . $this->getMethod()->getIBAN() . '</td></tr>'; ?>
49
+ <?php echo '<tr><td><label>' . $this->__('BIC') . '</label>:</td><td>' . $this->getMethod()->getBIC() . '</td></tr>'; ?>
50
+ </tbody>
51
+ </table>
52
  <?php endif; ?>
53
  <?php if ($this->getMethod()->getCustomText()): ?>
54
  <br />
55
+ <?php echo $this->getMethod()->getCustomText(); ?><br />
56
  <?php endif; ?>
57
  </div>
58
  </li>
app/design/adminhtml/default/default/template/bankpayment/info.phtml CHANGED
@@ -16,27 +16,35 @@
16
  */
17
 
18
  ?>
19
- <?php echo $this->getMethod()->getTitle() ?><br /><br/>
20
- <div style="font-style: italic"><?php echo $this->__('Account info'); ?></div>
21
- <?php if ($this->getMethod()->getAccountHolder()): ?>
22
- <?php echo '<label>'.$this->__('Account holder').'</label>: '.$this->getMethod()->getAccountHolder() ?><br />
23
- <?php endif; ?>
24
- <?php if ($this->getMethod()->getAccountNumber()): ?>
25
- <?php echo '<label>'.$this->__('Account number').'</label>: '.$this->getMethod()->getAccountNumber() ?><br />
26
- <?php endif; ?>
27
- <?php if ($this->getMethod()->getSortCode()): ?>
28
- <?php echo '<label>'.$this->__('Sort code').'</label>: '.$this->getMethod()->getSortCode() ?><br />
29
- <?php endif; ?>
30
- <?php if ($this->getMethod()->getBankName()): ?>
31
- <?php echo '<label>'.$this->__('Bank name').'</label>: '.$this->getMethod()->getBankName() ?><br />
32
- <?php endif; ?>
 
 
 
 
33
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
34
  <br />
35
- <div style="font-style: italic"><?php echo $this->__('International') ?></div>
36
- <?php echo '<label>'.$this->__('IBAN').'</label>: '.$this->getMethod()->getIBAN() ?><br />
37
- <?php echo '<label>'.$this->__('BIC').'</label>: '.$this->getMethod()->getBIC() ?><br />
 
 
 
 
38
  <?php endif; ?>
39
  <?php if ($this->getMethod()->getCustomText()): ?>
40
  <br />
41
- <?php echo $this->getMethod()->getCustomText() ?><br />
42
  <?php endif; ?>
16
  */
17
 
18
  ?>
19
+ <?php echo $this->getMethod()->getTitle(); ?><br /><br/>
20
+ <div style="font-style: italic;"><?php echo $this->__('Account info'); ?></div>
21
+ <table>
22
+ <tbody>
23
+ <?php if ($this->getMethod()->getAccountHolder()): ?>
24
+ <?php echo '<tr><td><label>' . $this->__('Account holder') . '</label>:</td><td>' . $this->getMethod()->getAccountHolder(); ?><br />
25
+ <?php endif; ?>
26
+ <?php if ($this->getMethod()->getAccountNumber()): ?>
27
+ <?php echo '<tr><td><label>' . $this->__('Account number') . '</label>:</td><td>' . $this->getMethod()->getAccountNumber(); ?><br />
28
+ <?php endif; ?>
29
+ <?php if ($this->getMethod()->getSortCode()): ?>
30
+ <?php echo '<tr><td><label>' . $this->__('Sort code') . '</label>:</td><td>' . $this->getMethod()->getSortCode(); ?><br />
31
+ <?php endif; ?>
32
+ <?php if ($this->getMethod()->getBankName()): ?>
33
+ <?php echo '<tr><td><label>' . $this->__('Bank name') . '</label>:</td><td>' . $this->getMethod()->getBankName(); ?><br />
34
+ <?php endif; ?>
35
+ </tbody>
36
+ </table>
37
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
38
  <br />
39
+ <div style="font-style: italic;"><?php echo $this->__('International') ?></div>
40
+ <table>
41
+ <tbody>
42
+ <?php echo '<tr><td><label>' . $this->__('IBAN') . '</label>:</td><td>' . $this->getMethod()->getIBAN() . '</td></tr>'; ?>
43
+ <?php echo '<tr><td><label>' . $this->__('BIC') . '</label>:</td><td>' . $this->getMethod()->getBIC() . '</td></tr>'; ?>
44
+ </tbody>
45
+ </table>
46
  <?php endif; ?>
47
  <?php if ($this->getMethod()->getCustomText()): ?>
48
  <br />
49
+ <?php echo $this->getMethod()->getCustomText(); ?><br />
50
  <?php endif; ?>
app/design/frontend/default/default/template/bankpayment/form.phtml CHANGED
@@ -17,7 +17,7 @@
17
 
18
  ?>
19
  <fieldset class="form-list">
20
- <ul id="payment_form_<?php echo $this->getMethodCode() ?>" style="display:none">
21
  <li>
22
  <div class="input-box">
23
  <?php if ($this->getMethod()->getPayWithinXDays() > 0): ?>
@@ -25,27 +25,35 @@
25
  <?php else: ?>
26
  <?php echo $this->__('Please transfer the money to the following bank account'); ?>:
27
  <?php endif; ?><br /><br />
28
- <?php if ($this->getMethod()->getAccountHolder()): ?>
29
- <?php echo '<label>'.$this->__('Account holder').'</label>: '.$this->getMethod()->getAccountHolder() ?><br />
30
- <?php endif; ?>
31
- <?php if ($this->getMethod()->getAccountNumber()): ?>
32
- <?php echo '<label>'.$this->__('Account number').'</label>: '.$this->getMethod()->getAccountNumber() ?><br />
33
- <?php endif; ?>
34
- <?php if ($this->getMethod()->getSortCode()): ?>
35
- <?php echo '<label>'.$this->__('Sort code').'</label>: '.$this->getMethod()->getSortCode() ?><br />
36
- <?php endif; ?>
37
- <?php if ($this->getMethod()->getBankName()): ?>
38
- <?php echo '<label>'.$this->__('Bank name').'</label>: '.$this->getMethod()->getBankName() ?><br />
39
- <?php endif; ?>
 
 
 
 
40
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
41
  <br /><br />
42
  <?php echo $this->__('For international transfers please use also following data') ?>:<br /><br />
43
- <?php echo '<label>'.$this->__('IBAN').'</label>: '.$this->getMethod()->getIBAN() ?><br />
44
- <?php echo '<label>'.$this->__('BIC').'</label>: '.$this->getMethod()->getBIC() ?><br />
 
 
 
 
45
  <?php endif; ?>
46
  <?php if ($this->getMethod()->getCustomText()): ?>
47
  <br />
48
- <?php echo $this->getMethod()->getCustomText() ?><br />
49
  <?php endif; ?>
50
  </div>
51
  </li>
17
 
18
  ?>
19
  <fieldset class="form-list">
20
+ <ul id="payment_form_<?php echo $this->getMethodCode(); ?>" style="display:none">
21
  <li>
22
  <div class="input-box">
23
  <?php if ($this->getMethod()->getPayWithinXDays() > 0): ?>
25
  <?php else: ?>
26
  <?php echo $this->__('Please transfer the money to the following bank account'); ?>:
27
  <?php endif; ?><br /><br />
28
+ <table>
29
+ <tbody>
30
+ <?php if ($this->getMethod()->getAccountHolder()): ?>
31
+ <?php echo '<tr><td><label>' . $this->__('Account holder') . '</label>:</td><td>' . $this->getMethod()->getAccountHolder() . '</td></tr>'; ?>
32
+ <?php endif; ?>
33
+ <?php if ($this->getMethod()->getAccountNumber()): ?>
34
+ <?php echo '<tr><td><label>' . $this->__('Account number1') . '</label>:</td><td>' . $this->getMethod()->getAccountNumber() . '</td></tr>'; ?>
35
+ <?php endif; ?>
36
+ <?php if ($this->getMethod()->getSortCode()): ?>
37
+ <?php echo '<tr><td><label>' . $this->__('Sort code') . '</label>:</td><td>' . $this->getMethod()->getSortCode() . '</td></tr>'; ?>
38
+ <?php endif; ?>
39
+ <?php if ($this->getMethod()->getBankName()): ?>
40
+ <?php echo '<tr><td><label>' . $this->__('Bank name') . '</label>:</td><td>' . $this->getMethod()->getBankName() . '</td></tr>'; ?>
41
+ <?php endif; ?>
42
+ </tbody>
43
+ </table>
44
  <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
45
  <br /><br />
46
  <?php echo $this->__('For international transfers please use also following data') ?>:<br /><br />
47
+ <table>
48
+ <tbody>
49
+ <?php echo '<tr><td><label>' . $this->__('IBAN') . '</label>:</td><td>' . $this->getMethod()->getIBAN() . '</td></tr>'; ?>
50
+ <?php echo '<tr><td><label>' . $this->__('BIC') . '</label>:</td><td>' . $this->getMethod()->getBIC() . '</td></tr>'; ?>
51
+ </tbody>
52
+ </table>
53
  <?php endif; ?>
54
  <?php if ($this->getMethod()->getCustomText()): ?>
55
  <br />
56
+ <?php echo $this->getMethod()->getCustomText(); ?><br />
57
  <?php endif; ?>
58
  </div>
59
  </li>
app/design/frontend/default/default/template/bankpayment/info.phtml CHANGED
@@ -1,44 +1,52 @@
1
- <?php
2
-
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @category Mage
13
- * @package Mage_BankPayment
14
- * @copyright Copyright (c) 2008 Andrej Sinicyn
15
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
16
- */
17
-
18
- ?>
19
- <p>
20
- <?php echo $this->getMethod()->getTitle() ?><br />
21
- <div style="font-style: italic"><?php echo $this->__('Account info'); ?></div>
22
- <?php if ($this->getMethod()->getAccountHolder()): ?>
23
- <?php echo '<label>'.$this->__('Account holder').'</label>: '.$this->getMethod()->getAccountHolder() ?><br />
24
- <?php endif; ?>
25
- <?php if ($this->getMethod()->getAccountNumber()): ?>
26
- <?php echo '<label>'.$this->__('Account number').'</label>: '.$this->getMethod()->getAccountNumber() ?><br />
27
- <?php endif; ?>
28
- <?php if ($this->getMethod()->getSortCode()): ?>
29
- <?php echo '<label>'.$this->__('Sort code').'</label>: '.$this->getMethod()->getSortCode() ?><br />
30
- <?php endif; ?>
31
- <?php if ($this->getMethod()->getBankName()): ?>
32
- <?php echo '<label>'.$this->__('Bank name').'</label>: '.$this->getMethod()->getBankName() ?><br />
33
- <?php endif; ?>
34
- <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
35
- <br />
36
- <div style="font-style: italic"><?php echo $this->__('International') ?></div>
37
- <?php echo '<label>'.$this->__('IBAN').'</label>: '.$this->getMethod()->getIBAN() ?><br />
38
- <?php echo '<label>'.$this->__('BIC').'</label>: '.$this->getMethod()->getBIC() ?><br />
39
- <?php endif; ?>
40
- <?php if ($this->getMethod()->getCustomText()): ?>
41
- <br />
42
- <?php echo $this->getMethod()->getCustomText() ?><br />
43
- <?php endif; ?>
44
- </p>
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0)
9
+ * that is available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ *
12
+ * @category Mage
13
+ * @package Mage_BankPayment
14
+ * @copyright Copyright (c) 2008 Andrej Sinicyn
15
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
16
+ */
17
+
18
+ ?>
19
+ <p>
20
+ <?php echo $this->getMethod()->getTitle(); ?><br />
21
+ <div style="font-style: italic;"><?php echo $this->__('Account info'); ?></div>
22
+ <table>
23
+ <tbody>
24
+ <?php if ($this->getMethod()->getAccountHolder()): ?>
25
+ <?php echo '<tr><td><label>' . $this->__('Account holder') . '</label>:</td><td>' . $this->getMethod()->getAccountHolder() . '</td></tr>'; ?>
26
+ <?php endif; ?>
27
+ <?php if ($this->getMethod()->getAccountNumber()): ?>
28
+ <?php echo '<tr><td><label>' . $this->__('Account number') . '</label>:</td><td>' . $this->getMethod()->getAccountNumber() . '</td></tr>'; ?>
29
+ <?php endif; ?>
30
+ <?php if ($this->getMethod()->getSortCode()): ?>
31
+ <?php echo '<tr><td><label>' . $this->__('Sort code') . '</label>:</td><td>' . $this->getMethod()->getSortCode() . '</td></tr>'; ?>
32
+ <?php endif; ?>
33
+ <?php if ($this->getMethod()->getBankName()): ?>
34
+ <?php echo '<tr><td><label>' . $this->__('Bank name') . '</label>:</td><td>' . $this->getMethod()->getBankName() . '</td></tr>'; ?>
35
+ <?php endif; ?>
36
+ </tbody>
37
+ </table>
38
+ <?php if ($this->getMethod()->getIBAN() && $this->getMethod()->getBIC()): ?>
39
+ <br />
40
+ <div style="font-style: italic;"><?php echo $this->__('International') ?></div>
41
+ <table>
42
+ <tbody>
43
+ <?php echo '<tr><td><label>' . $this->__('IBAN') . '</label>:</td><td>' . $this->getMethod()->getIBAN() . '</td></tr>'; ?>
44
+ <?php echo '<tr><td><label>' . $this->__('BIC') . '</label>:</td><td>' . $this->getMethod()->getBIC() . '</td></tr>'; ?>
45
+ </tbody>
46
+ </table>
47
+ <?php endif; ?>
48
+ <?php if ($this->getMethod()->getCustomText()): ?>
49
+ <br />
50
+ <?php echo $this->getMethod()->getCustomText(); ?><br />
51
+ <?php endif; ?>
52
+ </p>
app/etc/modules/Mage_BankPayment.xml CHANGED
@@ -6,7 +6,7 @@
6
  <depends>
7
  <Mage_Payment />
8
  </depends>
9
- <version>0.2.1</version>
10
  </Mage_BankPayment>
11
  </modules>
12
  </config>
6
  <depends>
7
  <Mage_Payment />
8
  </depends>
9
+ <version>0.2.2</version>
10
  </Mage_BankPayment>
11
  </modules>
12
  </config>
package.xml CHANGED
@@ -1,13 +1,30 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
- <version>0.2.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>This module adds bank prepayment method, which notifies the buyer to which bank account he has to transfer the money.</summary>
10
- <description>This module adds bank prepayment method, which notifies the buyer to which bank account he has to transfer the money.</description>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  <notes>Notice for upgrades from v0.2.0 to v0.2.1:
12
 
13
  As the code was moved from local to community code space, you have to remove the folder manually /app/code/local/Mage/BankPayment to clean up your existing Magento installation.
@@ -15,6 +32,10 @@ As the code was moved from local to community code space, you have to remove the
15
 
16
  Changelog
17
 
 
 
 
 
18
  0.2.1
19
  - custom text field added
20
  - added Norwegian Bokm&#xE5;l locale
@@ -23,9 +44,9 @@ Changelog
23
  0.2.0
24
  - first public release</notes>
25
  <authors><author><name>Andrej Sinicyn</name><user>auto-converted</user><email>andrej.sinicyn@gmx.de</email></author></authors>
26
- <date>2008-07-02</date>
27
- <time>11:54:27</time>
28
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="e7692655678440ee7a8a0ce993ea5ca1"/><file name="info.phtml" hash="a25d3d8b758cec67a4235ff4ba397fe2"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="6ba8b543faca2f878dc38939e67a6788"/><file name="info.phtml" hash="410c017da1fd068369d6bacfd29f6677"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Mage_BankPayment.csv" hash="1bcaf3d87e3b8a0fee75e9f47a9fcf1e"/></dir><dir name="en_US"><file name="Mage_BankPayment.csv" hash="76cc581fe3bc3602baa20447812c7d0b"/></dir><dir name="nb_NO"><file name="Mage_BankPayment.csv" hash="e35eb2ac59de21fc920bc1e26aa28f27"/></dir></target><target name="magecommunity"><dir name="Mage"><dir name="BankPayment"><dir name="Block"><file name="Form.php" hash="9bbe59a980c01fa954ac1519b144a0a7"/><file name="Info.php" hash="f786bada7970940d69602f0f64610d7e"/></dir><dir name="etc"><file name="config.xml" hash="e7bbd8f8a78ab4e1bcdf0579451e82c9"/><file name="system.xml" hash="9aed41b80b9356f1951575281952ab9e"/></dir><dir name="Model"><file name="BankPayment.php" hash="c7fc448aa09195c31516b0eb427663f9"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash="24c87297e1f06f9d570c5399e701b524"/></dir></target></contents>
29
  <compatible/>
30
  <dependencies/>
31
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>BankPayment</name>
4
+ <version>0.2.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Bank prepayment module which notifies the byer to which bank account he has to transfer the money.</summary>
10
+ <description>Notice for upgrades from v0.2.0 to v0.2.1:
11
+
12
+ As the code was moved from local to community code space, you have to remove the folder manually /app/code/local/Mage/BankPayment to clean up your existing Magento installation.
13
+
14
+
15
+ Changelog
16
+
17
+ 0.2.2
18
+ - custom text field converted to custom text area (multiline)
19
+ - bank data is now aligned in a table
20
+
21
+ 0.2.1
22
+ - custom text field added
23
+ - added Norwegian Bokm&#xE5;l locale
24
+ - moved from local to community code space
25
+
26
+ 0.2.0
27
+ - first public release</description>
28
  <notes>Notice for upgrades from v0.2.0 to v0.2.1:
29
 
30
  As the code was moved from local to community code space, you have to remove the folder manually /app/code/local/Mage/BankPayment to clean up your existing Magento installation.
32
 
33
  Changelog
34
 
35
+ 0.2.2
36
+ - custom text field converted to custom text area (multiline)
37
+ - bank data is now aligned in a table
38
+
39
  0.2.1
40
  - custom text field added
41
  - added Norwegian Bokm&#xE5;l locale
44
  0.2.0
45
  - first public release</notes>
46
  <authors><author><name>Andrej Sinicyn</name><user>auto-converted</user><email>andrej.sinicyn@gmx.de</email></author></authors>
47
+ <date>2008-07-09</date>
48
+ <time>11:05:52</time>
49
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="a93a004ff9187cc9bee25650c4a1867a"/><file name="info.phtml" hash="d0a16fd258a7201e5788a8f5610abf31"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="bankpayment"><file name="form.phtml" hash="a3fb6613cea6ceb573c4c5092c3752d2"/><file name="info.phtml" hash="67a25035b4dd17e5710657a1ab8309eb"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Mage_BankPayment.csv" hash="1bcaf3d87e3b8a0fee75e9f47a9fcf1e"/></dir><dir name="en_US"><file name="Mage_BankPayment.csv" hash="76cc581fe3bc3602baa20447812c7d0b"/></dir><dir name="nb_NO"><file name="Mage_BankPayment.csv" hash="e35eb2ac59de21fc920bc1e26aa28f27"/></dir></target><target name="magecommunity"><dir name="Mage"><dir name="BankPayment"><dir name="Block"><file name="Form.php" hash="124cc6bd01d2e8e39cd178d74369712b"/><file name="Info.php" hash="fdeffa069bd9759f547235cc3716a058"/></dir><dir name="etc"><file name="config.xml" hash="e7bbd8f8a78ab4e1bcdf0579451e82c9"/><file name="system.xml" hash="017122a45aba0623ebb217c969d5b96c"/></dir><dir name="Model"><file name="BankPayment.php" hash="e93de86da934dcbf06bf75659b9d40c2"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_BankPayment.xml" hash="f5bef86825ee161b455a76270a219d8a"/></dir></target></contents>
50
  <compatible/>
51
  <dependencies/>
52
  </package>