Lusopay_LusopayGateway - Version 1.6.0

Version Notes

Versão para magento 1.9

Download this release

Release Info

Developer Lusopay
Extension Lusopay_LusopayGateway
Version 1.6.0
Comparing to
See all releases


Code changes from version 1.5.2 to 1.6.0

app/code/local/Magnimeios/Magnimeiosgateway/Model/GerarRef.php CHANGED
@@ -75,60 +75,70 @@ class Magnimeios_Magnimeiosgateway_Model_GerarRef extends Mage_Payment_Model_Met
75
 
76
  $chave = $this->getConfigData('chave');
77
  $nif = $this->getConfigData('nif');
78
- //var_dump($chave);
79
- //echo $nif;
80
- //Data, connection, auth
81
- //webservice de teste
82
- //$soapUrl = "http://development.magnimeios.pt/MagnimeiosWS.asmx?op=GetNewDynamicRef"; // asmx URL of WSDL
83
- $soapUrl = "http://webservice.magnimeios.pt/MagnimeiosWS.asmx?op=GetNewDynamicRef"; // asmx URL of WSDL
84
-
85
- // xml post structure
86
- $xml_post_string = '<?xml version="1.0" encoding="utf-8"?>
87
- <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
88
- <soap12:Body>
89
- <GetNewDynamicRef xmlns="http://tempuri.org/">
90
- <clientGuid>'.$chave.'</clientGuid>
91
- <nif>'.$nif.'</nif>
92
- <valueList>
93
- <Value>
94
- <amount>'.$order_value.'</amount>
95
- <description>'.$order_id.'</description>
96
- <serviceType>Both</serviceType>
97
- </Value>
98
- </valueList>
99
- <sendEmail>true</sendEmail>
100
- </GetNewDynamicRef>
101
- </soap12:Body>
102
- </soap12:Envelope>';
103
-
104
- $headers = array(
105
- "Host: webservice.magnimeios.pt",
106
- "Content-type: text/xml;charset=\"utf-8\"",
107
- "Accept: text/xml",
108
- "Cache-Control: no-cache",
109
- "Pragma: no-cache",
110
- "SOAPAction: http://tempuri.org/GetNewDynamicRef",
111
- "Content-length: ".strlen($xml_post_string),
112
- ); //SOAPAction: your op URL
113
 
114
- $url = $soapUrl;
115
 
 
 
 
 
 
 
 
 
 
116
 
117
- // PHP cURL for https connection with auth
118
- $ch = curl_init();
119
- curl_setopt($ch, CURLOPT_URL, $url);
120
- curl_setopt($ch, CURLOPT_TIMEOUT, 60);
121
- curl_setopt($ch, CURLOPT_POST, true);
122
- curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // the SOAP request
123
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
124
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 
 
 
 
 
125
 
126
- // converting
127
- $response = curl_exec($ch);
128
- curl_close($ch);
129
 
130
- $referenceMB = "/<referenceMB>(.*?)<\/referenceMB>/s";
131
- $referencePS = "/<referencePS>(.*?)<\/referencePS>/s";
 
132
  if(preg_match($referencePS,$response,$referencePS_value) && preg_match($referenceMB, $response, $referenceMB_value)) {
133
  $refs[1] = $referencePS_value[1];
134
  //$refs[1] = -1;
@@ -188,58 +198,67 @@ class Magnimeios_Magnimeiosgateway_Model_GerarRef extends Mage_Payment_Model_Met
188
 
189
  $chave = $this->getConfigData('chave');
190
  $nif = $this->getConfigData('nif');
191
-
192
-
193
- //$soapUrl = "http://development.magnimeios.pt/MagnimeiosWS.asmx?op=GetNewDynamicRef"; // asmx URL of WSDL
194
- $soapUrl = "http://webservice.magnimeios.pt/MagnimeiosWS.asmx?op=GetNewDynamicRef"; // asmx URL of WSDL
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
 
196
- // xml post structure
197
- $xml_post_string = '<?xml version="1.0" encoding="utf-8"?>
198
- <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
199
- <soap12:Body>
200
- <GetNewDynamicRef xmlns="http://tempuri.org/">
201
- <clientGuid>'.$chave.'</clientGuid>
202
- <nif>'.$nif.'</nif>
203
- <valueList>
204
- <Value>
205
- <amount>'.$order_value.'</amount>
206
- <description>'.$order_id.'</description>
207
- <serviceType>Both</serviceType>
208
- </Value>
209
- </valueList>
210
- <sendEmail>true</sendEmail>
211
- </GetNewDynamicRef>
212
- </soap12:Body>
213
- </soap12:Envelope>';
214
 
215
- $headers = array(
216
- "Host: webservice.magnimeios.pt",
217
- "Content-type: text/xml;charset=\"utf-8\"",
218
- "Accept: text/xml",
219
- "Cache-Control: no-cache",
220
- "Pragma: no-cache",
221
- "SOAPAction: http://tempuri.org/GetNewDynamicRef",
222
- "Content-length: ".strlen($xml_post_string),
223
- ); //SOAPAction: your op URL
224
 
225
- $url = $soapUrl;
 
 
 
 
 
 
 
 
 
 
 
 
226
 
 
 
 
227
 
228
- // PHP cURL for https connection with auth
229
- $ch = curl_init();
230
- curl_setopt($ch, CURLOPT_URL, $url);
231
- curl_setopt($ch, CURLOPT_TIMEOUT, 60);
232
- curl_setopt($ch, CURLOPT_POST, true);
233
- curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string); // the SOAP request
234
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
235
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
236
-
237
- // converting
238
- $response = curl_exec($ch);
239
- curl_close($ch);
240
-
241
- $referenceMB = "/<referenceMB>(.*?)<\/referenceMB>/s";
242
- $referencePS = "/<referencePS>(.*?)<\/referencePS>/s";
243
  if(preg_match($referencePS,$response,$referencePS_value) && preg_match($referenceMB, $response, $referenceMB_value)) {
244
  $refs[1] = $referencePS_value[1];
245
  $refs[2] = $referenceMB_value[1];
75
 
76
  $chave = $this->getConfigData('chave');
77
  $nif = $this->getConfigData('nif');
78
+
79
+
80
+
81
+
82
+ $soapUrl = "https://services.lusopay.com/PaymentServices/PaymentServices.svc?wsdl";
83
+
84
+ $xml_post_string='<?xml version="1.0" encoding="utf-8"?>
85
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:pay="http://schemas.datacontract.org/2004/07/PaymentServices">
86
+ <soapenv:Body>
87
+ <tem:getNewDynamicReference>
88
+ <!--Optional:-->
89
+ <tem:clientGuid>'.$chave.'</tem:clientGuid>
90
+ <!--Optional:-->
91
+ <tem:vatNumber>'.$nif.'</tem:vatNumber>
92
+ <!--Optional:-->
93
+ <tem:valueList>
94
+ <!--Zero or more repetitions:-->
95
+ <pay:References>
96
+ <!--Optional:-->
97
+ <pay:amount>'.$order_value.'</pay:amount>
98
+ <!--Optional:-->
99
+ <pay:description>'.$order_id.'</pay:description>
100
+ <!--Optional:-->
101
+ <pay:serviceType>Both</pay:serviceType>
102
+ </pay:References>
103
+ </tem:valueList>
104
+ <!--Optional:-->
105
+ <tem:sendEmail>true</tem:sendEmail>
106
+ </tem:getNewDynamicReference>
107
+ </soapenv:Body>
108
+ </soapenv:Envelope>';
 
 
 
 
109
 
 
110
 
111
+ $headers = array(
112
+ "Host: services.lusopay.com",
113
+ "Content-type: text/xml;charset=\"utf-8\"",
114
+ "Accept: text/xml",
115
+ "Cache-Control: no-cache",
116
+ "Pragma: no-cache",
117
+ "SOAPAction: http://tempuri.org/IPaymentServices/getNewDynamicReference",
118
+ "Content-length: ".strlen($xml_post_string),
119
+ );
120
 
121
+ //SOAPAction: your op URL
122
+ $url = $soapUrl;
123
+ // PHP cURL for http connection with auth
124
+ $ch = curl_init();
125
+
126
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
127
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
128
+ curl_setopt($ch, CURLOPT_URL, $url);
129
+
130
+ curl_setopt($ch, CURLOPT_POST, 1);
131
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string);
132
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
133
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
134
 
135
+ $response = curl_exec($ch);
136
+
137
+ curl_close($ch);
138
 
139
+ $referenceMB = "/<a:referenceMB>(.*?)<\/a:referenceMB>/s";
140
+ $referencePS = "/<a:referencePS>(.*?)<\/a:referencePS>/s";
141
+
142
  if(preg_match($referencePS,$response,$referencePS_value) && preg_match($referenceMB, $response, $referenceMB_value)) {
143
  $refs[1] = $referencePS_value[1];
144
  //$refs[1] = -1;
198
 
199
  $chave = $this->getConfigData('chave');
200
  $nif = $this->getConfigData('nif');
201
+
202
+ $soapUrl = "https://services.lusopay.com/PaymentServices_test/PaymentServices.svc?wsdl";
203
+
204
+ $xml_post_string='<?xml version="1.0" encoding="utf-8"?>
205
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:pay="http://schemas.datacontract.org/2004/07/PaymentServices">
206
+ <soapenv:Body>
207
+ <tem:getNewDynamicReference>
208
+ <!--Optional:-->
209
+ <tem:clientGuid>'.$chave.'</tem:clientGuid>
210
+ <!--Optional:-->
211
+ <tem:vatNumber>'.$nif.'</tem:vatNumber>
212
+ <!--Optional:-->
213
+ <tem:valueList>
214
+ <!--Zero or more repetitions:-->
215
+ <pay:References>
216
+ <!--Optional:-->
217
+ <pay:amount>'.$order_value.'</pay:amount>
218
+ <!--Optional:-->
219
+ <pay:description>'.$order_id.'</pay:description>
220
+ <!--Optional:-->
221
+ <pay:serviceType>Both</pay:serviceType>
222
+ </pay:References>
223
+ </tem:valueList>
224
+ <!--Optional:-->
225
+ <tem:sendEmail>true</tem:sendEmail>
226
+ </tem:getNewDynamicReference>
227
+ </soapenv:Body>
228
+ </soapenv:Envelope>';
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
 
231
+ $headers = array(
232
+ "Host: services.lusopay.com",
233
+ "Content-type: text/xml;charset=\"utf-8\"",
234
+ "Accept: text/xml",
235
+ "Cache-Control: no-cache",
236
+ "Pragma: no-cache",
237
+ "SOAPAction: http://tempuri.org/IPaymentServices/getNewDynamicReference",
238
+ "Content-length: ".strlen($xml_post_string),
239
+ );
240
 
241
+ //SOAPAction: your op URL
242
+ $url = $soapUrl;
243
+ // PHP cURL for http connection with auth
244
+ $ch = curl_init();
245
+
246
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
247
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
248
+ curl_setopt($ch, CURLOPT_URL, $url);
249
+
250
+ curl_setopt($ch, CURLOPT_POST, 1);
251
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_post_string);
252
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
253
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
254
 
255
+ $response = curl_exec($ch);
256
+
257
+ curl_close($ch);
258
 
259
+ $referenceMB = "/<a:referenceMB>(.*?)<\/a:referenceMB>/s";
260
+ $referencePS = "/<a:referencePS>(.*?)<\/a:referencePS>/s";
261
+
 
 
 
 
 
 
 
 
 
 
 
 
262
  if(preg_match($referencePS,$response,$referencePS_value) && preg_match($referenceMB, $response, $referenceMB_value)) {
263
  $refs[1] = $referencePS_value[1];
264
  $refs[2] = $referenceMB_value[1];
app/design/adminhtml/default/default/template/magnimeiosgateway/info/info.phtml CHANGED
@@ -45,7 +45,7 @@
45
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
46
  </tr>
47
  <tr>
48
- <td rowspan="4"><div align="center"><img src="http://www.lusopay.pt/imagens/modulos/Logo_Lusopay_MB125x80px.png" alt=""></div></td>
49
  <td style="font-size: x-small; font-weight:bold; text-align:left">Entidade:</td>
50
  <td style="font-size: x-small; text-align:left"><span><?php echo $this->htmlEscape($this->getInfo()->getMagnimeiosEntidade()) ?></span></td>
51
  </tr>
@@ -75,7 +75,7 @@
75
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
76
  </tr>
77
  <tr>
78
- <td rowspan="4"><div align="center"><img src="http://www.lusopay.pt/imagens/modulos/Logo_Lusopay_Payshop125x80px.png" alt=""></div></td>
79
  </tr>
80
  <tr>
81
  <td style="font-size: x-small; font-weight:bold; text-align:left">Referência:</td>
45
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Multibanco (By LUSOPAY)</center></td>
46
  </tr>
47
  <tr>
48
+ <td rowspan="4"><div align="center"><img src="https://www.lusopay.com/App_Files/cms/documents/images/Logo_Lusopay_MB125x80px.png" alt=""></div></td>
49
  <td style="font-size: x-small; font-weight:bold; text-align:left">Entidade:</td>
50
  <td style="font-size: x-small; text-align:left"><span><?php echo $this->htmlEscape($this->getInfo()->getMagnimeiosEntidade()) ?></span></td>
51
  </tr>
75
  <td style="font-size: x-small; border-bottom: 1px solid #DCDCDC; background-color: #DCDCDC; color: Black" colspan="3"><center>Pagamento por Payshop (By LUSOPAY)</center></td>
76
  </tr>
77
  <tr>
78
+ <td rowspan="4"><div align="center"><img src="https://www.lusopay.com/App_Files/cms/documents/images/Logo_Lusopay_Payshop125x80px.png" alt=""></div></td>
79
  </tr>
80
  <tr>
81
  <td style="font-size: x-small; font-weight:bold; text-align:left">Referência:</td>
app/design/frontend/base/default/template/magnimeiosgateway/info/info.phtml CHANGED
@@ -48,7 +48,7 @@
48
 
49
  <table border="0" cellspacing="1" cellpadding="0" Style="<?php echo $showMB;?>">
50
  <tr>
51
- <td colspan="2"><img src="http://www.lusopay.pt/imagens/modulos/Logo_Lusopay_MB125x80px.png" border="0" alt="<?php echo $this->getMethod()->getTitle(); ?>" title="Pagamento por Multibanco" /></td>
52
  </tr>
53
 
54
 
@@ -67,7 +67,7 @@
67
  </table>
68
  <table border="0" cellspacing="1" cellpadding="0" Style="<?php echo $showPS;?>">
69
  <tr>
70
- <td colspan="2"><img src="http://www.lusopay.pt/imagens/modulos/Logo_Lusopay_Payshop125x80px.png" border="0" alt="<?php echo $this->getMethod()->getTitle(); ?>" title="Pagamento por Payshop" /></td>
71
  </tr>
72
  <tr>
73
  <td><?php echo $this->__('<strong>Referência:</strong>'); ?> </td>
48
 
49
  <table border="0" cellspacing="1" cellpadding="0" Style="<?php echo $showMB;?>">
50
  <tr>
51
+ <td colspan="2"><img src="https://www.lusopay.com/App_Files/cms/documents/images/Logo_Lusopay_MB125x80px.png" border="0" alt="<?php echo $this->getMethod()->getTitle(); ?>" title="Pagamento por Multibanco" /></td>
52
  </tr>
53
 
54
 
67
  </table>
68
  <table border="0" cellspacing="1" cellpadding="0" Style="<?php echo $showPS;?>">
69
  <tr>
70
+ <td colspan="2"><img src="https://www.lusopay.com/App_Files/cms/documents/images/Logo_Lusopay_Payshop125x80px.png" border="0" alt="<?php echo $this->getMethod()->getTitle(); ?>" title="Pagamento por Payshop" /></td>
71
  </tr>
72
  <tr>
73
  <td><?php echo $this->__('<strong>Referência:</strong>'); ?> </td>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lusopay_LusopayGateway</name>
4
- <version>1.5.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
@@ -10,9 +10,9 @@
10
  <description>Metodo de pagamento atrav&#xE9;s da gera&#xE7;&#xE3;o refer&#xEA;ncias Multibanco e payshop</description>
11
  <notes>Vers&#xE3;o para magento 1.9</notes>
12
  <authors><author><name>Lusopay</name><user>lusopay</user><email>hf@lusopay.com</email></author></authors>
13
- <date>2015-01-12</date>
14
- <time>18:18:03</time>
15
- <contents><target name="magelocal"><dir name="Magnimeios"><dir name="Magnimeiosgateway"><dir name="Block"><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/></dir><dir name="Helper"><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/></dir><dir name="Model"><dir name="Convert"><file name="Order.php" hash="5b2063bb5a1e5186b1e7052e694a208c"/><file name="Quote.php" hash="67c336422be52cffee09ab454677eeee"/><file name="Quote.php" hash="67c336422be52cffee09ab454677eeee"/><file name="Order.php" hash="5b2063bb5a1e5186b1e7052e694a208c"/></dir><file name="GerarRef.php" hash="73ef82324092a4f1de160e46404de14f"/><dir name="Mysql4"><file name="Setup.php" hash="81bb2624d9a505d700353013efebf632"/><file name="Setup.php" hash="81bb2624d9a505d700353013efebf632"/></dir><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/><file name="GerarRef.php" hash="73ef82324092a4f1de160e46404de14f"/><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/></dir><dir name="etc"><file name="config.xml" hash="5af65afe91e361e06cb79fe5dde89214"/><file name="system.xml" hash="2bfdf005b6527f0fa3107e62378b0610"/><file name="config.xml" hash="5af65afe91e361e06cb79fe5dde89214"/><file name="system.xml" hash="2bfdf005b6527f0fa3107e62378b0610"/></dir><dir name="sql"><dir name="magnimeiosgateway_setup"><file name="mysql4-install-2.0.0.php" hash="cfdf054ed86842fdc86de599aecf4fff"/><file name="mysql4-install-2.0.0.php" hash="cfdf054ed86842fdc86de599aecf4fff"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="info"><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir><file name="info.phtml" hash="d3797bc60dce649cc1e25154e3e1c521"/></dir><dir name="form"><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/><file name="mark.phtml" hash="747f61cb869f185ac3e808f6707838ed"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="form.phtml" hash="b2493fedcfcfd316e214e4dc43a25536"/><file name="mark.phtml" hash="c7d148bf708105b0d8c42a2fbb4814d0"/></dir><dir name="info"><file name="info.phtml" hash="eb5f61d4b30403277fd6a23be7bdc8a3"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magnimeios_Magnimeiosgateway.xml" hash="bf2c21eae3198cddf69ab496cb29443f"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="magnimeiosgateway"><file name="Logo_Lusopay_256x85px.png" hash="bcc54ae1f8a25cf10f8642a8f91339e2"/><file name="logo.png" hash="c2e0e05d5dd6ac2331020dff60adf696"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="magnimeiosgateway"><file name="Logo_Lusopay_MBePayshop125x80px.png" hash="dbe096eb26c34cf69816b97fb049926b"/><file name="logo.png" hash="ad194614eeee86b5dc1fe688e5a0d573"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Lusopay_LusopayGateway</name>
4
+ <version>1.6.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
10
  <description>Metodo de pagamento atrav&#xE9;s da gera&#xE7;&#xE3;o refer&#xEA;ncias Multibanco e payshop</description>
11
  <notes>Vers&#xE3;o para magento 1.9</notes>
12
  <authors><author><name>Lusopay</name><user>lusopay</user><email>hf@lusopay.com</email></author></authors>
13
+ <date>2015-03-24</date>
14
+ <time>10:08:36</time>
15
+ <contents><target name="magelocal"><dir name="Magnimeios"><dir name="Magnimeiosgateway"><dir name="Block"><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/><file name="Form.php" hash="3f75ba24352b086af9c008039f9bc63f"/><file name="Info.php" hash="70f29099be47705bb11c1c5765c58b24"/></dir><dir name="Helper"><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/><file name="Data.php" hash="cc2d593bb9bf9228d46291519801922c"/></dir><dir name="Model"><dir name="Convert"><file name="Order.php" hash="5b2063bb5a1e5186b1e7052e694a208c"/><file name="Quote.php" hash="67c336422be52cffee09ab454677eeee"/><file name="Quote.php" hash="67c336422be52cffee09ab454677eeee"/><file name="Order.php" hash="5b2063bb5a1e5186b1e7052e694a208c"/></dir><file name="GerarRef.php" hash="fb4fa1a25a22b284a4137230e9f0dd1a"/><dir name="Mysql4"><file name="Setup.php" hash="81bb2624d9a505d700353013efebf632"/><file name="Setup.php" hash="81bb2624d9a505d700353013efebf632"/></dir><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/><file name="GerarRef.php" hash="fb4fa1a25a22b284a4137230e9f0dd1a"/><file name="PaymentAction.php" hash="52b0609d8c62770fb03ed1ca830a17a7"/></dir><dir name="etc"><file name="config.xml" hash="5af65afe91e361e06cb79fe5dde89214"/><file name="system.xml" hash="2bfdf005b6527f0fa3107e62378b0610"/><file name="config.xml" hash="5af65afe91e361e06cb79fe5dde89214"/><file name="system.xml" hash="2bfdf005b6527f0fa3107e62378b0610"/></dir><dir name="sql"><dir name="magnimeiosgateway_setup"><file name="mysql4-install-2.0.0.php" hash="cfdf054ed86842fdc86de599aecf4fff"/><file name="mysql4-install-2.0.0.php" hash="cfdf054ed86842fdc86de599aecf4fff"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="info"><dir name="pdf"><file name="info.phtml" hash="5782769a75900a3aecae1e4e0f78b0c8"/></dir><file name="info.phtml" hash="d07b20ae60559a61b2c8f314816da303"/></dir><dir name="form"><file name="form.phtml" hash="9d041c914f3feada5a4bf4958afa04aa"/><file name="mark.phtml" hash="747f61cb869f185ac3e808f6707838ed"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="magnimeiosgateway"><dir name="form"><file name="form.phtml" hash="b2493fedcfcfd316e214e4dc43a25536"/><file name="mark.phtml" hash="c7d148bf708105b0d8c42a2fbb4814d0"/></dir><dir name="info"><file name="info.phtml" hash="437a2fff201cafe45c9dd23902aa1212"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magnimeios_Magnimeiosgateway.xml" hash="bf2c21eae3198cddf69ab496cb29443f"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="magnimeiosgateway"><file name="Logo_Lusopay_256x85px.png" hash="bcc54ae1f8a25cf10f8642a8f91339e2"/><file name="logo.png" hash="c2e0e05d5dd6ac2331020dff60adf696"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="magnimeiosgateway"><file name="Logo_Lusopay_MBePayshop125x80px.png" hash="dbe096eb26c34cf69816b97fb049926b"/><file name="logo.png" hash="ad194614eeee86b5dc1fe688e5a0d573"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>