Quadra_Cybermut - Version 2.0.2

Version Notes

Changelog :
2.0.2 :
- Some fields in the configuration of the module are now configurable in store view
- The field "empty cart" was added

2.0.1:
Stable version

2.0.0:
- Magento 1.5 compatibility
- Multishipping compatibility
- Bug fixed with magento 1.4
- Beta version

1.0.1:
- bug fixed on key encryption (thanks to Christophe)
- bug fixed when browser previous button is used

Features:
- compatible with versions 1.2 and 3.0
- easy back-end configuration
- auto-selected front-end language
- selectable order status on placing order
- selectable order status on payment success
- selectable order status on payment failure
- selectable order status on customer cancellation
- automatic payment confirmation
- back-end french language
- customer notification on payment success
- put the order on "Order confirmation email sent" status when payment is accepted
- order is cancelled when it passes in cancelled status

URL CGI to communicate to CM/CIC is:
http://www.domain.com/cybermut/payment/notify/

Download this release

Release Info

Developer Magento Core Team
Extension Quadra_Cybermut
Version 2.0.2
Comparing to
See all releases


Code changes from version 2.0.1 to 2.0.2

app/code/community/Quadra/Cybermut/controllers/PaymentController.php CHANGED
@@ -153,8 +153,11 @@ class Quadra_Cybermut_PaymentController extends Mage_Core_Controller_Front_Actio
153
  if (!$order->getEmailSent()) {
154
  $order->sendNewOrderEmail();
155
  }
156
-
157
- $this->saveInvoice($order);
 
 
 
158
  $order->save();
159
  }
160
  } else {
@@ -328,6 +331,10 @@ class Quadra_Cybermut_PaymentController extends Mage_Core_Controller_Front_Actio
328
  }
329
 
330
  $order->save();
 
 
 
 
331
 
332
  $this->_redirect('checkout/cart');
333
  }
@@ -443,7 +450,11 @@ class Quadra_Cybermut_PaymentController extends Mage_Core_Controller_Front_Actio
443
  $order->cancel();
444
  }
445
 
446
- $order->save();
 
 
 
 
447
  }
448
 
449
  $this->_redirect('checkout/cart');
@@ -469,4 +480,35 @@ class Quadra_Cybermut_PaymentController extends Mage_Core_Controller_Front_Actio
469
 
470
  return $this->_orderIds;
471
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
  }
153
  if (!$order->getEmailSent()) {
154
  $order->sendNewOrderEmail();
155
  }
156
+
157
+ if ($model->getConfigData('invoice_create')) {
158
+ $this->saveInvoice($order);
159
+ }
160
+
161
  $order->save();
162
  }
163
  } else {
331
  }
332
 
333
  $order->save();
334
+
335
+ if (!$model->getConfigData('empty_cart')) {
336
+ $this->_reorder(array($order->getId()));
337
+ }
338
 
339
  $this->_redirect('checkout/cart');
340
  }
450
  $order->cancel();
451
  }
452
 
453
+ $order->save();
454
+ }
455
+
456
+ if (!$model->getConfigData('empty_cart')) {
457
+ $this->_reorder($orderIds);
458
  }
459
 
460
  $this->_redirect('checkout/cart');
480
 
481
  return $this->_orderIds;
482
  }
483
+
484
+ protected function _reorder($orderIds)
485
+ {
486
+ $cart = Mage::getSingleton('checkout/cart');
487
+ $cartTruncated = false;
488
+ /* @var $cart Mage_Checkout_Model_Cart */
489
+
490
+ foreach ($orderIds as $orderId) {
491
+ $order = Mage::getModel('sales/order')->load($orderId);
492
+
493
+ $items = $order->getItemsCollection();
494
+ foreach ($items as $item) {
495
+ try {
496
+ $cart->addOrderItem($item);
497
+ } catch (Mage_Core_Exception $e){
498
+ if (Mage::getSingleton('checkout/session')->getUseNotice(true)) {
499
+ Mage::getSingleton('checkout/session')->addNotice($e->getMessage());
500
+ }
501
+ else {
502
+ Mage::getSingleton('checkout/session')->addError($e->getMessage());
503
+ }
504
+ } catch (Exception $e) {
505
+ Mage::getSingleton('checkout/session')->addException($e,
506
+ Mage::helper('checkout')->__('Cannot add the item to shopping cart.')
507
+ );
508
+ }
509
+ }
510
+ }
511
+
512
+ $cart->save();
513
+ }
514
  }
app/code/community/Quadra/Cybermut/etc/config.xml CHANGED
@@ -178,6 +178,7 @@
178
  <title>CyberMUT-P@iement</title>
179
  <allowspecific>0</allowspecific>
180
  <transaction_type>O</transaction_type>
 
181
  </cybermut_payment>
182
  </payment>
183
  </default>
178
  <title>CyberMUT-P@iement</title>
179
  <allowspecific>0</allowspecific>
180
  <transaction_type>O</transaction_type>
181
+ <empty_cart>1</empty_cart>
182
  </cybermut_payment>
183
  </payment>
184
  </default>
app/code/community/Quadra/Cybermut/etc/system.xml CHANGED
@@ -35,7 +35,7 @@
35
  <frontend_type>select</frontend_type>
36
  <backend_model>cybermut/config_data_cybermut</backend_model>
37
  <source_model>adminhtml/system_config_source_yesno</source_model>
38
- <sort_order>1</sort_order>
39
  <show_in_default>1</show_in_default>
40
  <show_in_website>1</show_in_website>
41
  <show_in_store>0</show_in_store>
@@ -43,16 +43,16 @@
43
  <title translate="label">
44
  <label>Title</label>
45
  <frontend_type>text</frontend_type>
46
- <sort_order>2</sort_order>
47
  <show_in_default>1</show_in_default>
48
  <show_in_website>1</show_in_website>
49
- <show_in_store>0</show_in_store>
50
  </title>
51
  <version translate="label">
52
  <label>Version</label>
53
  <frontend_type>select</frontend_type>
54
  <source_model>cybermut/system_config_source_version</source_model>
55
- <sort_order>3</sort_order>
56
  <show_in_default>1</show_in_default>
57
  <show_in_website>1</show_in_website>
58
  <show_in_store>0</show_in_store>
@@ -60,7 +60,7 @@
60
  <tpe_no translate="label">
61
  <label>TPE number</label>
62
  <frontend_type>text</frontend_type>
63
- <sort_order>4</sort_order>
64
  <show_in_default>1</show_in_default>
65
  <show_in_website>1</show_in_website>
66
  <show_in_store>0</show_in_store>
@@ -68,7 +68,7 @@
68
  <site_code translate="label">
69
  <label>Site code</label>
70
  <frontend_type>text</frontend_type>
71
- <sort_order>5</sort_order>
72
  <show_in_default>1</show_in_default>
73
  <show_in_website>1</show_in_website>
74
  <show_in_store>0</show_in_store>
@@ -77,7 +77,7 @@
77
  <label>Key</label>
78
  <frontend_type>file</frontend_type>
79
  <backend_model>cybermut/system_config_backend_keyencrypted</backend_model>
80
- <sort_order>6</sort_order>
81
  <show_in_default>1</show_in_default>
82
  <show_in_website>1</show_in_website>
83
  <show_in_store>0</show_in_store>
@@ -86,16 +86,16 @@
86
  <label>Bank</label>
87
  <frontend_type>select</frontend_type>
88
  <source_model>cybermut/source_bank</source_model>
89
- <sort_order>7</sort_order>
90
  <show_in_default>1</show_in_default>
91
  <show_in_website>1</show_in_website>
92
- <show_in_store>1</show_in_store>
93
  </bank>
94
  <description translate="label comment">
95
  <label>Transaction Description</label>
96
  <comment>Order number will be used if left empty</comment>
97
  <frontend_type>text</frontend_type>
98
- <sort_order>8</sort_order>
99
  <show_in_default>1</show_in_default>
100
  <show_in_website>1</show_in_website>
101
  <show_in_store>0</show_in_store>
@@ -105,7 +105,7 @@
105
  <comment>Preference will be given to store language chosen by the user</comment>
106
  <frontend_type>select</frontend_type>
107
  <source_model>cybermut/source_language</source_model>
108
- <sort_order>9</sort_order>
109
  <show_in_default>1</show_in_default>
110
  <show_in_website>1</show_in_website>
111
  <show_in_store>1</show_in_store>
@@ -114,7 +114,7 @@
114
  <label>Test mode</label>
115
  <frontend_type>select</frontend_type>
116
  <source_model>adminhtml/system_config_source_yesno</source_model>
117
- <sort_order>10</sort_order>
118
  <show_in_default>1</show_in_default>
119
  <show_in_website>1</show_in_website>
120
  <show_in_store>0</show_in_store>
@@ -123,7 +123,7 @@
123
  <label>Debug</label>
124
  <frontend_type>select</frontend_type>
125
  <source_model>adminhtml/system_config_source_yesno</source_model>
126
- <sort_order>11</sort_order>
127
  <show_in_default>1</show_in_default>
128
  <show_in_website>1</show_in_website>
129
  <show_in_store>0</show_in_store>
@@ -132,7 +132,7 @@
132
  <label>New order status</label>
133
  <frontend_type>select</frontend_type>
134
  <source_model>cybermut/system_config_source_order_status_new</source_model>
135
- <sort_order>12</sort_order>
136
  <show_in_default>1</show_in_default>
137
  <show_in_website>1</show_in_website>
138
  <show_in_store>0</show_in_store>
@@ -141,7 +141,7 @@
141
  <label>Order status when payment accepted by Cybermut</label>
142
  <frontend_type>select</frontend_type>
143
  <source_model>cybermut/system_config_source_order_status_accepted</source_model>
144
- <sort_order>13</sort_order>
145
  <show_in_default>1</show_in_default>
146
  <show_in_website>1</show_in_website>
147
  <show_in_store>0</show_in_store>
@@ -150,7 +150,7 @@
150
  <label>Order status when payment refused by Cybermut</label>
151
  <frontend_type>select</frontend_type>
152
  <source_model>cybermut/system_config_source_order_status_refused</source_model>
153
- <sort_order>14</sort_order>
154
  <show_in_default>1</show_in_default>
155
  <show_in_website>1</show_in_website>
156
  <show_in_store>0</show_in_store>
@@ -159,15 +159,33 @@
159
  <label>Order status when payment canceled by customer</label>
160
  <frontend_type>select</frontend_type>
161
  <source_model>cybermut/system_config_source_order_status_canceled</source_model>
162
- <sort_order>15</sort_order>
163
  <show_in_default>1</show_in_default>
164
  <show_in_website>1</show_in_website>
165
  <show_in_store>0</show_in_store>
166
  </order_status_payment_canceled>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  <allowspecific translate="label">
168
  <label>Payment from applicable countries</label>
169
  <frontend_type>allowspecific</frontend_type>
170
- <sort_order>16</sort_order>
171
  <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
172
  <show_in_default>1</show_in_default>
173
  <show_in_website>1</show_in_website>
@@ -176,19 +194,19 @@
176
  <specificcountry translate="label">
177
  <label>Payment from Specific countries</label>
178
  <frontend_type>multiselect</frontend_type>
179
- <sort_order>17</sort_order>
180
  <source_model>adminhtml/system_config_source_country</source_model>
181
  <show_in_default>1</show_in_default>
182
  <show_in_website>1</show_in_website>
183
  <show_in_store>1</show_in_store>
184
- </specificcountry>
185
  <sort_order translate="label">
186
  <label>Sort order</label>
187
  <frontend_type>text</frontend_type>
188
- <sort_order>18</sort_order>
189
  <show_in_default>1</show_in_default>
190
  <show_in_website>1</show_in_website>
191
- <show_in_store>0</show_in_store>
192
  </sort_order>
193
  </fields>
194
  </cybermut_payment>
35
  <frontend_type>select</frontend_type>
36
  <backend_model>cybermut/config_data_cybermut</backend_model>
37
  <source_model>adminhtml/system_config_source_yesno</source_model>
38
+ <sort_order>10</sort_order>
39
  <show_in_default>1</show_in_default>
40
  <show_in_website>1</show_in_website>
41
  <show_in_store>0</show_in_store>
43
  <title translate="label">
44
  <label>Title</label>
45
  <frontend_type>text</frontend_type>
46
+ <sort_order>20</sort_order>
47
  <show_in_default>1</show_in_default>
48
  <show_in_website>1</show_in_website>
49
+ <show_in_store>1</show_in_store>
50
  </title>
51
  <version translate="label">
52
  <label>Version</label>
53
  <frontend_type>select</frontend_type>
54
  <source_model>cybermut/system_config_source_version</source_model>
55
+ <sort_order>30</sort_order>
56
  <show_in_default>1</show_in_default>
57
  <show_in_website>1</show_in_website>
58
  <show_in_store>0</show_in_store>
60
  <tpe_no translate="label">
61
  <label>TPE number</label>
62
  <frontend_type>text</frontend_type>
63
+ <sort_order>40</sort_order>
64
  <show_in_default>1</show_in_default>
65
  <show_in_website>1</show_in_website>
66
  <show_in_store>0</show_in_store>
68
  <site_code translate="label">
69
  <label>Site code</label>
70
  <frontend_type>text</frontend_type>
71
+ <sort_order>50</sort_order>
72
  <show_in_default>1</show_in_default>
73
  <show_in_website>1</show_in_website>
74
  <show_in_store>0</show_in_store>
77
  <label>Key</label>
78
  <frontend_type>file</frontend_type>
79
  <backend_model>cybermut/system_config_backend_keyencrypted</backend_model>
80
+ <sort_order>60</sort_order>
81
  <show_in_default>1</show_in_default>
82
  <show_in_website>1</show_in_website>
83
  <show_in_store>0</show_in_store>
86
  <label>Bank</label>
87
  <frontend_type>select</frontend_type>
88
  <source_model>cybermut/source_bank</source_model>
89
+ <sort_order>70</sort_order>
90
  <show_in_default>1</show_in_default>
91
  <show_in_website>1</show_in_website>
92
+ <show_in_store>0</show_in_store>
93
  </bank>
94
  <description translate="label comment">
95
  <label>Transaction Description</label>
96
  <comment>Order number will be used if left empty</comment>
97
  <frontend_type>text</frontend_type>
98
+ <sort_order>80</sort_order>
99
  <show_in_default>1</show_in_default>
100
  <show_in_website>1</show_in_website>
101
  <show_in_store>0</show_in_store>
105
  <comment>Preference will be given to store language chosen by the user</comment>
106
  <frontend_type>select</frontend_type>
107
  <source_model>cybermut/source_language</source_model>
108
+ <sort_order>90</sort_order>
109
  <show_in_default>1</show_in_default>
110
  <show_in_website>1</show_in_website>
111
  <show_in_store>1</show_in_store>
114
  <label>Test mode</label>
115
  <frontend_type>select</frontend_type>
116
  <source_model>adminhtml/system_config_source_yesno</source_model>
117
+ <sort_order>100</sort_order>
118
  <show_in_default>1</show_in_default>
119
  <show_in_website>1</show_in_website>
120
  <show_in_store>0</show_in_store>
123
  <label>Debug</label>
124
  <frontend_type>select</frontend_type>
125
  <source_model>adminhtml/system_config_source_yesno</source_model>
126
+ <sort_order>110</sort_order>
127
  <show_in_default>1</show_in_default>
128
  <show_in_website>1</show_in_website>
129
  <show_in_store>0</show_in_store>
132
  <label>New order status</label>
133
  <frontend_type>select</frontend_type>
134
  <source_model>cybermut/system_config_source_order_status_new</source_model>
135
+ <sort_order>120</sort_order>
136
  <show_in_default>1</show_in_default>
137
  <show_in_website>1</show_in_website>
138
  <show_in_store>0</show_in_store>
141
  <label>Order status when payment accepted by Cybermut</label>
142
  <frontend_type>select</frontend_type>
143
  <source_model>cybermut/system_config_source_order_status_accepted</source_model>
144
+ <sort_order>121</sort_order>
145
  <show_in_default>1</show_in_default>
146
  <show_in_website>1</show_in_website>
147
  <show_in_store>0</show_in_store>
150
  <label>Order status when payment refused by Cybermut</label>
151
  <frontend_type>select</frontend_type>
152
  <source_model>cybermut/system_config_source_order_status_refused</source_model>
153
+ <sort_order>122</sort_order>
154
  <show_in_default>1</show_in_default>
155
  <show_in_website>1</show_in_website>
156
  <show_in_store>0</show_in_store>
159
  <label>Order status when payment canceled by customer</label>
160
  <frontend_type>select</frontend_type>
161
  <source_model>cybermut/system_config_source_order_status_canceled</source_model>
162
+ <sort_order>123</sort_order>
163
  <show_in_default>1</show_in_default>
164
  <show_in_website>1</show_in_website>
165
  <show_in_store>0</show_in_store>
166
  </order_status_payment_canceled>
167
+ <invoice_create translate="label">
168
+ <label>Create invoice when payment accepted</label>
169
+ <frontend_type>select</frontend_type>
170
+ <source_model>adminhtml/system_config_source_yesno</source_model>
171
+ <sort_order>130</sort_order>
172
+ <show_in_default>1</show_in_default>
173
+ <show_in_website>1</show_in_website>
174
+ <show_in_store>0</show_in_store>
175
+ </invoice_create>
176
+ <empty_cart translate="label">
177
+ <label>Empty cart when payment refused by Cybermut or canceled by customer</label>
178
+ <frontend_type>select</frontend_type>
179
+ <source_model>adminhtml/system_config_source_yesno</source_model>
180
+ <sort_order>135</sort_order>
181
+ <show_in_default>1</show_in_default>
182
+ <show_in_website>1</show_in_website>
183
+ <show_in_store>0</show_in_store>
184
+ </empty_cart>
185
  <allowspecific translate="label">
186
  <label>Payment from applicable countries</label>
187
  <frontend_type>allowspecific</frontend_type>
188
+ <sort_order>140</sort_order>
189
  <source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
190
  <show_in_default>1</show_in_default>
191
  <show_in_website>1</show_in_website>
194
  <specificcountry translate="label">
195
  <label>Payment from Specific countries</label>
196
  <frontend_type>multiselect</frontend_type>
197
+ <sort_order>150</sort_order>
198
  <source_model>adminhtml/system_config_source_country</source_model>
199
  <show_in_default>1</show_in_default>
200
  <show_in_website>1</show_in_website>
201
  <show_in_store>1</show_in_store>
202
+ </specificcountry>
203
  <sort_order translate="label">
204
  <label>Sort order</label>
205
  <frontend_type>text</frontend_type>
206
+ <sort_order>151</sort_order>
207
  <show_in_default>1</show_in_default>
208
  <show_in_website>1</show_in_website>
209
+ <show_in_store>1</show_in_store>
210
  </sort_order>
211
  </fields>
212
  </cybermut_payment>
app/locale/fr_FR/Quadra_Cybermut.csv CHANGED
@@ -45,4 +45,6 @@
45
  "TPE number","Numéro TPE"
46
  "New order status","Statut de commande"
47
  "Sort order","Ordre de tri"
48
- "The payment was canceled.","Le paiement a été annulé."
 
 
45
  "TPE number","Numéro TPE"
46
  "New order status","Statut de commande"
47
  "Sort order","Ordre de tri"
48
+ "The payment was canceled.","Le paiement a été annulé."
49
+ "Create invoice when payment accepted","Créer une facture quand le paiement est accepté"
50
+ "Empty cart when payment refused by Cybermut or canceled by customer","Vider le panier quand le paiement est refusé par Cybermut ou annulé par le client"
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Quadra_Cybermut</name>
4
- <version>2.0.1</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>
@@ -12,6 +12,10 @@ CyberMUT Paiement / Paiement CIC integration</summary>
12
  Compatible with CM-CIC versions 1.2 and 3.0.
13
 
14
  Changelog :
 
 
 
 
15
  2.0.1: Stable version
16
 
17
  2.0.0:
@@ -24,6 +28,10 @@ Changelog :
24
  - bug fixed on key encryption (thanks to Christophe)
25
  - bug fixed when browser previous button is used</description>
26
  <notes>Changelog :
 
 
 
 
27
  2.0.1:
28
  Stable version
29
 
@@ -54,9 +62,9 @@ Features:
54
  URL CGI to communicate to CM/CIC is:
55
  http://www.domain.com/cybermut/payment/notify/</notes>
56
  <authors><author><name>Quadra Informatique</name><user>auto-converted</user><email>ecommerce@quadra-informatique.fr</email></author></authors>
57
- <date>2011-07-13</date>
58
- <time>07:13:00</time>
59
- <contents><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="media"><dir name="cybermut"><file name="cb.gif" hash="297387b1588bc880bd9d9abe00db73c5"/><file name="master.gif" hash="1fd622c6300f37711c983074be1fdae5"/><file name="visa.gif" hash="d2b7afda7cfdf78ae63b0c71f99beac8"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="cybermut.xml" hash="67bd36d185041fb617740843cdda71db"/></dir><dir name="template"><dir name="cybermut"><file name="error.phtml" hash="baff7801312a42a9fa2e9e377b7df384"/><file name="form.phtml" hash="f6bc6dca124ec013fdaf56f9263372c1"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Quadra_Cybermut.csv" hash="8070f280195858460b805e3d88256f24"/></dir></target><target name="mageetc"><dir name="modules"><file name="Quadra_Cybermut.xml" hash="c611bf9164edc0f89455d3476d15218c"/></dir></target><target name="magecommunity"><dir name="Quadra"><dir name="Cybermut"><dir name="Block"><file name="Error.php" hash="08e91b562f3f7008b722fe5ecfc43e7f"/><file name="Form.php" hash="b44c68bda1e58eb3c6e0d676285eb2a0"/><file name="Redirect.php" hash="1b543dd7984216602fd58095a1a68f6a"/></dir><dir name="controllers"><file name="PaymentController.php" hash="fc032d3cdfd781ea6469b8b54291f41f"/></dir><dir name="etc"><file name="config.xml" hash="17dd6701bbc86ecd2be9729a00895629"/><file name="system.xml" hash="1b3c514f33d2bf429a0d89c4a75bd6a6"/></dir><dir name="Helper"><file name="Data.php" hash="4f1c6d75a3e6ff2fbb6327276e5f0bbc"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="59a82e2a6fe19ec772c3176919565cea"/></dir><dir name="Config"><dir name="Data"><file name="Cybermut.php" hash="c92fc74d1f8843a563db3ea531bdcbbf"/></dir></dir><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="cf59a912327bc4dab17949c6110881ac"/></dir><file name="Debug.php" hash="3e3d04fafa09d8a8eb4700650a4e5210"/></dir><file name="Setup.php" hash="5a4b6bb84ef78c3c7da3e0d8b569fa09"/></dir><dir name="Source"><file name="Bank.php" hash="b760d06346265f772facca102f53e13c"/><file name="Language.php" hash="dbfc7cadd8877aa3aafebb548ceff7fc"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Keyencrypted.php" hash="1aaeaac93381b8282cc6a5062606b22c"/></dir><dir name="Source"><dir name="Order"><dir name="Status"><file name="Accepted.php" hash="d2a70679712bfa6d1c12e8076a11af68"/><file name="Canceled.php" hash="3b2273308fe861731ef2cee61b23b072"/><file name="New.php" hash="d44ca61705f2a9ba48f4612098712adb"/><file name="Refused.php" hash="d12f3c14cc466b98601641d17b0f1aa0"/></dir><file name="Status.php" hash="1469de41ba056374029e4a685881f745"/></dir><file name="Version.php" hash="f44ebcf14c9f833e9d696bd24ae042ac"/></dir></dir></dir><file name="Observer.php" hash="b61bef10fa74554e02425b7d7131e3c6"/><file name="Payment.php" hash="14eba8e672c96bc3738d8eaebd2f17ce"/></dir><dir name="sql"><dir name="cybermut_setup"><file name="mysql4-install-0.1.0.php" hash="38f84173d568ec2a29254437f7a4cc2a"/></dir></dir></dir></dir></target></contents>
60
  <compatible/>
61
  <dependencies><required><package><name>Quadra_Extensions</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
62
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Quadra_Cybermut</name>
4
+ <version>2.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>
12
  Compatible with CM-CIC versions 1.2 and 3.0.
13
 
14
  Changelog :
15
+ 2.0.2 :
16
+ - Some fields in the configuration of the module are now configurable in store view
17
+ - The field "empty cart" was added
18
+
19
  2.0.1: Stable version
20
 
21
  2.0.0:
28
  - bug fixed on key encryption (thanks to Christophe)
29
  - bug fixed when browser previous button is used</description>
30
  <notes>Changelog :
31
+ 2.0.2 :
32
+ - Some fields in the configuration of the module are now configurable in store view
33
+ - The field "empty cart" was added
34
+
35
  2.0.1:
36
  Stable version
37
 
62
  URL CGI to communicate to CM/CIC is:
63
  http://www.domain.com/cybermut/payment/notify/</notes>
64
  <authors><author><name>Quadra Informatique</name><user>auto-converted</user><email>ecommerce@quadra-informatique.fr</email></author></authors>
65
+ <date>2011-07-29</date>
66
+ <time>07:48:44</time>
67
+ <contents><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="media"><dir name="cybermut"><file name="cb.gif" hash="297387b1588bc880bd9d9abe00db73c5"/><file name="master.gif" hash="1fd622c6300f37711c983074be1fdae5"/><file name="visa.gif" hash="d2b7afda7cfdf78ae63b0c71f99beac8"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="cybermut.xml" hash="67bd36d185041fb617740843cdda71db"/></dir><dir name="template"><dir name="cybermut"><file name="error.phtml" hash="baff7801312a42a9fa2e9e377b7df384"/><file name="form.phtml" hash="f6bc6dca124ec013fdaf56f9263372c1"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Quadra_Cybermut.csv" hash="e480b58c115f0feacc0cc270d44d62c8"/></dir></target><target name="mageetc"><dir name="modules"><file name="Quadra_Cybermut.xml" hash="c611bf9164edc0f89455d3476d15218c"/></dir></target><target name="magecommunity"><dir name="Quadra"><dir name="Cybermut"><dir name="Block"><file name="Error.php" hash="08e91b562f3f7008b722fe5ecfc43e7f"/><file name="Form.php" hash="b44c68bda1e58eb3c6e0d676285eb2a0"/><file name="Redirect.php" hash="1b543dd7984216602fd58095a1a68f6a"/></dir><dir name="controllers"><file name="PaymentController.php" hash="08ab8e15d5e8a8cc4a2b3f561922574b"/></dir><dir name="etc"><file name="config.xml" hash="ee146d0db20fc6b04c4652399f962d99"/><file name="system.xml" hash="923f1f07acfb3bcb3c0fe6f5b827dac9"/></dir><dir name="Helper"><file name="Data.php" hash="4f1c6d75a3e6ff2fbb6327276e5f0bbc"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="59a82e2a6fe19ec772c3176919565cea"/></dir><dir name="Config"><dir name="Data"><file name="Cybermut.php" hash="c92fc74d1f8843a563db3ea531bdcbbf"/></dir></dir><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="cf59a912327bc4dab17949c6110881ac"/></dir><file name="Debug.php" hash="3e3d04fafa09d8a8eb4700650a4e5210"/></dir><file name="Setup.php" hash="5a4b6bb84ef78c3c7da3e0d8b569fa09"/></dir><dir name="Source"><file name="Bank.php" hash="b760d06346265f772facca102f53e13c"/><file name="Language.php" hash="dbfc7cadd8877aa3aafebb548ceff7fc"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Keyencrypted.php" hash="1aaeaac93381b8282cc6a5062606b22c"/></dir><dir name="Source"><dir name="Order"><dir name="Status"><file name="Accepted.php" hash="d2a70679712bfa6d1c12e8076a11af68"/><file name="Canceled.php" hash="3b2273308fe861731ef2cee61b23b072"/><file name="New.php" hash="d44ca61705f2a9ba48f4612098712adb"/><file name="Refused.php" hash="d12f3c14cc466b98601641d17b0f1aa0"/></dir><file name="Status.php" hash="1469de41ba056374029e4a685881f745"/></dir><file name="Version.php" hash="f44ebcf14c9f833e9d696bd24ae042ac"/></dir></dir></dir><file name="Observer.php" hash="b61bef10fa74554e02425b7d7131e3c6"/><file name="Payment.php" hash="14eba8e672c96bc3738d8eaebd2f17ce"/></dir><dir name="sql"><dir name="cybermut_setup"><file name="mysql4-install-0.1.0.php" hash="38f84173d568ec2a29254437f7a4cc2a"/></dir></dir></dir></dir></target></contents>
68
  <compatible/>
69
  <dependencies><required><package><name>Quadra_Extensions</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
70
  </package>