Version Notes
None.
Download this release
Release Info
Developer | Magento Core Team |
Extension | Fontis_EwayAu |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.1 to 1.2.3
- app/code/community/Fontis/EwayAu/Model/Api/Debug.php +0 -29
- app/code/community/Fontis/EwayAu/Model/Direct.php +17 -28
- app/code/community/Fontis/EwayAu/Model/Mysql4/Api/Debug.php +0 -29
- app/code/community/Fontis/EwayAu/Model/Mysql4/Api/Debug/Collection.php +0 -29
- app/code/community/Fontis/EwayAu/Model/Mysql4/Setup.php +0 -26
- app/code/community/Fontis/EwayAu/Model/Shared.php +5 -19
- app/code/community/Fontis/EwayAu/etc/config.xml +1 -9
- app/code/community/Fontis/EwayAu/etc/system.xml +0 -35
- package.xml +4 -4
app/code/community/Fontis/EwayAu/Model/Api/Debug.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis eWAY Australia payment gateway
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so you can be sent a copy immediately.
|
14 |
-
*
|
15 |
-
* Original code copyright (c) 2008 Irubin Consulting Inc. DBA Varien
|
16 |
-
*
|
17 |
-
* @category Fontis
|
18 |
-
* @package Fontis_EwayAu
|
19 |
-
* @copyright Copyright (c) 2010 Fontis (http://www.fontis.com.au)
|
20 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
-
*/
|
22 |
-
|
23 |
-
class Fontis_EwayAu_Model_Api_Debug extends Mage_Core_Model_Abstract
|
24 |
-
{
|
25 |
-
protected function _construct()
|
26 |
-
{
|
27 |
-
$this->_init('ewayau/api_debug');
|
28 |
-
}
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Fontis/EwayAu/Model/Direct.php
CHANGED
@@ -38,16 +38,6 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
38 |
protected $_formBlockType = 'ewayau/form';
|
39 |
protected $_infoBlockType = 'ewayau/info';
|
40 |
|
41 |
-
/**
|
42 |
-
* Get debug flag
|
43 |
-
*
|
44 |
-
* @return string
|
45 |
-
*/
|
46 |
-
public function getDebug()
|
47 |
-
{
|
48 |
-
return Mage::getStoreConfig('payment/ewayau_direct/debug_flag');
|
49 |
-
}
|
50 |
-
|
51 |
/**
|
52 |
* Get flag to use CCV or not
|
53 |
*
|
@@ -264,8 +254,6 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
264 |
$xml->addChild('ewayOption2', '');
|
265 |
$xml->addChild('ewayOption3', '');
|
266 |
|
267 |
-
|
268 |
-
|
269 |
$http = new Varien_Http_Adapter_Curl();
|
270 |
$config = array('timeout' => 30);
|
271 |
|
@@ -276,10 +264,6 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
276 |
$response = preg_split('/^\r?$/m', $response, 2);
|
277 |
$response = trim($response[1]);
|
278 |
|
279 |
-
if ($this->getDebug()) {
|
280 |
-
$debug->setResponseBody($response)->save();
|
281 |
-
}
|
282 |
-
|
283 |
if ($http->getErrno()) {
|
284 |
$http->close();
|
285 |
$this->setError(array(
|
@@ -289,7 +273,12 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
289 |
}
|
290 |
$http->close();
|
291 |
|
292 |
-
$
|
|
|
|
|
|
|
|
|
|
|
293 |
|
294 |
if ($resultArr['ewayTrxnStatus'] == 'True') {
|
295 |
$this->unsError();
|
@@ -315,12 +304,6 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
315 |
*/
|
316 |
public function call($xml)
|
317 |
{
|
318 |
-
if ($this->getDebug()) {
|
319 |
-
$debug = Mage::getModel('ewayau/api_debug')
|
320 |
-
->setRequestBody($xml)
|
321 |
-
->save();
|
322 |
-
}
|
323 |
-
|
324 |
$http = new Varien_Http_Adapter_Curl();
|
325 |
$config = array('timeout' => 30);
|
326 |
|
@@ -331,10 +314,6 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
331 |
$response = preg_split('/^\r?$/m', $response, 2);
|
332 |
$response = trim($response[1]);
|
333 |
|
334 |
-
if ($this->getDebug()) {
|
335 |
-
$debug->setResponseBody($response)->save();
|
336 |
-
}
|
337 |
-
|
338 |
if ($http->getErrno()) {
|
339 |
$http->close();
|
340 |
$this->setError(array(
|
@@ -344,7 +323,12 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
344 |
}
|
345 |
$http->close();
|
346 |
|
347 |
-
$parsedResArr = $this->parseXmlResponse($response)
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
if ($parsedResArr['ewayTrxnStatus'] == 'True') {
|
350 |
$this->unsError();
|
@@ -369,6 +353,11 @@ class Fontis_EwayAu_Model_Direct extends Mage_Payment_Model_Method_Cc
|
|
369 |
public function parseXmlResponse($xmlResponse)
|
370 |
{
|
371 |
$xmlObj = simplexml_load_string($xmlResponse);
|
|
|
|
|
|
|
|
|
|
|
372 |
$newResArr = array();
|
373 |
foreach ($xmlObj as $key => $val) {
|
374 |
$newResArr[$key] = (string)$val;
|
38 |
protected $_formBlockType = 'ewayau/form';
|
39 |
protected $_infoBlockType = 'ewayau/info';
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
/**
|
42 |
* Get flag to use CCV or not
|
43 |
*
|
254 |
$xml->addChild('ewayOption2', '');
|
255 |
$xml->addChild('ewayOption3', '');
|
256 |
|
|
|
|
|
257 |
$http = new Varien_Http_Adapter_Curl();
|
258 |
$config = array('timeout' => 30);
|
259 |
|
264 |
$response = preg_split('/^\r?$/m', $response, 2);
|
265 |
$response = trim($response[1]);
|
266 |
|
|
|
|
|
|
|
|
|
267 |
if ($http->getErrno()) {
|
268 |
$http->close();
|
269 |
$this->setError(array(
|
273 |
}
|
274 |
$http->close();
|
275 |
|
276 |
+
if( ($parsedResArr = $this->parseXmlResponse($response)) === false ) {
|
277 |
+
$this->setError(array(
|
278 |
+
'message' => 'Invalid response from gateway.'
|
279 |
+
));
|
280 |
+
return false;
|
281 |
+
}
|
282 |
|
283 |
if ($resultArr['ewayTrxnStatus'] == 'True') {
|
284 |
$this->unsError();
|
304 |
*/
|
305 |
public function call($xml)
|
306 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
$http = new Varien_Http_Adapter_Curl();
|
308 |
$config = array('timeout' => 30);
|
309 |
|
314 |
$response = preg_split('/^\r?$/m', $response, 2);
|
315 |
$response = trim($response[1]);
|
316 |
|
|
|
|
|
|
|
|
|
317 |
if ($http->getErrno()) {
|
318 |
$http->close();
|
319 |
$this->setError(array(
|
323 |
}
|
324 |
$http->close();
|
325 |
|
326 |
+
if( ($parsedResArr = $this->parseXmlResponse($response)) === false ) {
|
327 |
+
$this->setError(array(
|
328 |
+
'message' => 'Invalid response from gateway.'
|
329 |
+
));
|
330 |
+
return false;
|
331 |
+
}
|
332 |
|
333 |
if ($parsedResArr['ewayTrxnStatus'] == 'True') {
|
334 |
$this->unsError();
|
353 |
public function parseXmlResponse($xmlResponse)
|
354 |
{
|
355 |
$xmlObj = simplexml_load_string($xmlResponse);
|
356 |
+
|
357 |
+
if($xmlObj === false) {
|
358 |
+
return false;
|
359 |
+
}
|
360 |
+
|
361 |
$newResArr = array();
|
362 |
foreach ($xmlObj as $key => $val) {
|
363 |
$newResArr[$key] = (string)$val;
|
app/code/community/Fontis/EwayAu/Model/Mysql4/Api/Debug.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis eWAY Australia payment gateway
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so you can be sent a copy immediately.
|
14 |
-
*
|
15 |
-
* Original code copyright (c) 2008 Irubin Consulting Inc. DBA Varien
|
16 |
-
*
|
17 |
-
* @category Fontis
|
18 |
-
* @package Fontis_EwayAu
|
19 |
-
* @copyright Copyright (c) 2010 Fontis (http://www.fontis.com.au)
|
20 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
-
*/
|
22 |
-
|
23 |
-
class Fontis_EwayAu_Model_Mysql4_Api_Debug extends Mage_Core_Model_Mysql4_Abstract
|
24 |
-
{
|
25 |
-
protected function _construct()
|
26 |
-
{
|
27 |
-
$this->_init('ewayau/api_debug', 'debug_id');
|
28 |
-
}
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Fontis/EwayAu/Model/Mysql4/Api/Debug/Collection.php
DELETED
@@ -1,29 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis eWAY Australia payment gateway
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so you can be sent a copy immediately.
|
14 |
-
*
|
15 |
-
* Original code copyright (c) 2008 Irubin Consulting Inc. DBA Varien
|
16 |
-
*
|
17 |
-
* @category Fontis
|
18 |
-
* @package Fontis_EwayAu
|
19 |
-
* @copyright Copyright (c) 2010 Fontis (http://www.fontis.com.au)
|
20 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
-
*/
|
22 |
-
|
23 |
-
class Fontis_EwayAu_Model_Mysql4_Api_Debug_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
24 |
-
{
|
25 |
-
protected function _construct()
|
26 |
-
{
|
27 |
-
$this->_init('ewayau/api_debug');
|
28 |
-
}
|
29 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Fontis/EwayAu/Model/Mysql4/Setup.php
DELETED
@@ -1,26 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Fontis eWAY Australia payment gateway
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so you can be sent a copy immediately.
|
14 |
-
*
|
15 |
-
* Original code copyright (c) 2008 Irubin Consulting Inc. DBA Varien
|
16 |
-
*
|
17 |
-
* @category Fontis
|
18 |
-
* @package Fontis_EwayAu
|
19 |
-
* @copyright Copyright (c) 2010 Fontis (http://www.fontis.com.au)
|
20 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
21 |
-
*/
|
22 |
-
|
23 |
-
class Fontis_EwayAu_Model_Mysql4_Setup extends Mage_Sales_Model_Mysql4_Setup
|
24 |
-
{
|
25 |
-
|
26 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Fontis/EwayAu/Model/Shared.php
CHANGED
@@ -91,7 +91,11 @@ class Fontis_EwayAu_Model_Shared extends Mage_Payment_Model_Method_Abstract
|
|
91 |
|
92 |
public function getOrderPlaceRedirectUrl()
|
93 |
{
|
94 |
-
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
/**
|
@@ -143,17 +147,6 @@ class Fontis_EwayAu_Model_Shared extends Mage_Payment_Model_Method_Abstract
|
|
143 |
$fieldsArr['ewayOption2'] = Mage::helper('core')->encrypt($paymentInfo->getOrder()->getRealOrderId());
|
144 |
$fieldsArr['ewayOption3'] = '';
|
145 |
|
146 |
-
if ($this->getDebug()) {
|
147 |
-
$request = '';
|
148 |
-
foreach($fieldsArr as $k => $v) {
|
149 |
-
$request .= '<' . $k . '>' . $v . '</' . $k . '>';
|
150 |
-
}
|
151 |
-
$debug = Mage::getModel('eway/api_debug')
|
152 |
-
->setRequestBody($request)
|
153 |
-
->save();
|
154 |
-
$fieldsArr['ewayOption1'] = $debug->getId();
|
155 |
-
}
|
156 |
-
|
157 |
return $fieldsArr;
|
158 |
}
|
159 |
|
@@ -205,13 +198,6 @@ class Fontis_EwayAu_Model_Shared extends Mage_Payment_Model_Method_Abstract
|
|
205 |
{
|
206 |
$response = $this->getResponse();
|
207 |
|
208 |
-
if ($this->getDebug()) {
|
209 |
-
$debug = Mage::getModel('ewayau/api_debug')
|
210 |
-
->load($response['eWAYoption1'])
|
211 |
-
->setResponseBody(print_r($response, 1))
|
212 |
-
->save();
|
213 |
-
}
|
214 |
-
|
215 |
if ($response['ewayTrxnStatus'] == 'True') {
|
216 |
return true;
|
217 |
}
|
91 |
|
92 |
public function getOrderPlaceRedirectUrl()
|
93 |
{
|
94 |
+
$url = Mage::getUrl('ewayau/' . $this->_paymentMethod . '/redirect');
|
95 |
+
if(!$url) {
|
96 |
+
$url = 'https://www.eway.com.au/gateway/payment.asp';
|
97 |
+
}
|
98 |
+
return $url;
|
99 |
}
|
100 |
|
101 |
/**
|
147 |
$fieldsArr['ewayOption2'] = Mage::helper('core')->encrypt($paymentInfo->getOrder()->getRealOrderId());
|
148 |
$fieldsArr['ewayOption3'] = '';
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
return $fieldsArr;
|
151 |
}
|
152 |
|
198 |
{
|
199 |
$response = $this->getResponse();
|
200 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
if ($response['ewayTrxnStatus'] == 'True') {
|
202 |
return true;
|
203 |
}
|
app/code/community/Fontis/EwayAu/etc/config.xml
CHANGED
@@ -24,21 +24,14 @@
|
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Fontis_EwayAu>
|
27 |
-
<version>1.2.
|
28 |
</Fontis_EwayAu>
|
29 |
</modules>
|
30 |
<global>
|
31 |
<models>
|
32 |
<ewayau>
|
33 |
<class>Fontis_EwayAu_Model</class>
|
34 |
-
<resourceModel>ewayau_mysql4</resourceModel>
|
35 |
</ewayau>
|
36 |
-
<ewayau_mysql4>
|
37 |
-
<class>Fontis_EwayAu_Model_Mysql4</class>
|
38 |
-
<entities>
|
39 |
-
<api_debug><table>fontis_ewayau_api_debug</table></api_debug>
|
40 |
-
</entities>
|
41 |
-
</ewayau_mysql4>
|
42 |
</models>
|
43 |
<helpers>
|
44 |
<ewayau>
|
@@ -49,7 +42,6 @@
|
|
49 |
<ewayau_setup>
|
50 |
<setup>
|
51 |
<module>Fontis_EwayAu</module>
|
52 |
-
<class>Fontis_EwayAu_Model_Mysql4_Setup</class>
|
53 |
</setup>
|
54 |
<connection>
|
55 |
<use>core_setup</use>
|
24 |
<config>
|
25 |
<modules>
|
26 |
<Fontis_EwayAu>
|
27 |
+
<version>1.2.3</version>
|
28 |
</Fontis_EwayAu>
|
29 |
</modules>
|
30 |
<global>
|
31 |
<models>
|
32 |
<ewayau>
|
33 |
<class>Fontis_EwayAu_Model</class>
|
|
|
34 |
</ewayau>
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
</models>
|
36 |
<helpers>
|
37 |
<ewayau>
|
42 |
<ewayau_setup>
|
43 |
<setup>
|
44 |
<module>Fontis_EwayAu</module>
|
|
|
45 |
</setup>
|
46 |
<connection>
|
47 |
<use>core_setup</use>
|
app/code/community/Fontis/EwayAu/etc/system.xml
CHANGED
@@ -77,23 +77,6 @@
|
|
77 |
<show_in_website>1</show_in_website>
|
78 |
<show_in_store>0</show_in_store>
|
79 |
</currency>
|
80 |
-
<api_url translate="label">
|
81 |
-
<label>API Gateway URL</label>
|
82 |
-
<frontend_type>text</frontend_type>
|
83 |
-
<sort_order>60</sort_order>
|
84 |
-
<show_in_default>1</show_in_default>
|
85 |
-
<show_in_website>1</show_in_website>
|
86 |
-
<show_in_store>0</show_in_store>
|
87 |
-
</api_url>
|
88 |
-
<debug_flag translate="label">
|
89 |
-
<label>Debug Flag</label>
|
90 |
-
<frontend_type>select</frontend_type>
|
91 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
92 |
-
<sort_order>70</sort_order>
|
93 |
-
<show_in_default>1</show_in_default>
|
94 |
-
<show_in_website>1</show_in_website>
|
95 |
-
<show_in_store>0</show_in_store>
|
96 |
-
</debug_flag>
|
97 |
<test_gateway translate="label">
|
98 |
<label>Use test gateway</label>
|
99 |
<frontend_type>select</frontend_type>
|
@@ -209,15 +192,6 @@
|
|
209 |
<show_in_website>1</show_in_website>
|
210 |
<show_in_store>0</show_in_store>
|
211 |
</api_url>
|
212 |
-
<debug_flag translate="label">
|
213 |
-
<label>Debug Flag</label>
|
214 |
-
<frontend_type>select</frontend_type>
|
215 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
216 |
-
<sort_order>6</sort_order>
|
217 |
-
<show_in_default>1</show_in_default>
|
218 |
-
<show_in_website>1</show_in_website>
|
219 |
-
<show_in_store>0</show_in_store>
|
220 |
-
</debug_flag>
|
221 |
<order_status translate="label">
|
222 |
<label>New order status</label>
|
223 |
<frontend_type>select</frontend_type>
|
@@ -306,15 +280,6 @@
|
|
306 |
<show_in_website>1</show_in_website>
|
307 |
<show_in_store>0</show_in_store>
|
308 |
</api_url>
|
309 |
-
<debug_flag translate="label">
|
310 |
-
<label>Debug Flag</label>
|
311 |
-
<frontend_type>select</frontend_type>
|
312 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
313 |
-
<sort_order>6</sort_order>
|
314 |
-
<show_in_default>1</show_in_default>
|
315 |
-
<show_in_website>1</show_in_website>
|
316 |
-
<show_in_store>0</show_in_store>
|
317 |
-
</debug_flag>
|
318 |
<order_status translate="label">
|
319 |
<label>New order status</label>
|
320 |
<frontend_type>select</frontend_type>
|
77 |
<show_in_website>1</show_in_website>
|
78 |
<show_in_store>0</show_in_store>
|
79 |
</currency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
<test_gateway translate="label">
|
81 |
<label>Use test gateway</label>
|
82 |
<frontend_type>select</frontend_type>
|
192 |
<show_in_website>1</show_in_website>
|
193 |
<show_in_store>0</show_in_store>
|
194 |
</api_url>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
<order_status translate="label">
|
196 |
<label>New order status</label>
|
197 |
<frontend_type>select</frontend_type>
|
280 |
<show_in_website>1</show_in_website>
|
281 |
<show_in_store>0</show_in_store>
|
282 |
</api_url>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
<order_status translate="label">
|
284 |
<label>New order status</label>
|
285 |
<frontend_type>select</frontend_type>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_EwayAu</name>
|
4 |
-
<version>1.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>Adds support for eWAY Australia payment gateway.</description>
|
11 |
<notes>None.</notes>
|
12 |
<authors><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
-
<date>2010-
|
14 |
-
<time>04:
|
15 |
-
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="ewayau"><dir name="pdf"><file name="info.phtml" hash="4af2178c2597fb9645442a3e25aaec0d"/></dir><file name="form.phtml" hash="560fb4bde178d6071edb58ca8da7be61"/><file name="info.phtml" hash="70998eb775ca3db6848e71e44f9e3ccf"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_ewayau.xml" hash="172b8e1cf5eb3c5fb76bee136c2532d3"/></dir><dir name="template"><dir name="fontis"><dir name="ewayau"><dir name="secure"><file name="failure.phtml" hash="16b3993f65964ef354fa56b929fde8ff"/><file name="form.phtml" hash="4f7e50698632a9e851b5504d7a5293ab"/></dir><dir name="shared"><file name="failure.phtml" hash="16b3993f65964ef354fa56b929fde8ff"/><file name="form.phtml" hash="1edf93ecf67b311794a66436ec7fa405"/></dir><file name="form.phtml" hash="eacb3d88b9b23a153564938b5433ab30"/><file name="info.phtml" hash="62a92278d0b6f8428ce98bf7462b92d8"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Fontis_EwayAu.csv" hash="608ddd72f698ac44afa8f3a0fc64d5e4"/></dir></target><target name="magecommunity"><dir name="Fontis"><dir name="EwayAu"><dir name="Block"><dir name="Secure"><file name="Failure.php" hash="81239ec03651c413019b74728015fdef"/><file name="Form.php" hash="03c69b7ae6b2de88c0e5614a8964b0e9"/><file name="Redirect.php" hash="cbf5d2ad7be4ca20c29f56bd4da5190f"/></dir><dir name="Shared"><file name="Failure.php" hash="90206554eee87c71a5efe4b00c14b1f8"/><file name="Form.php" hash="02b4b632a9063a71a9171575a368754f"/><file name="Redirect.php" hash="953202851c147cee5d5934d322588bd3"/></dir><file name="Form.php" hash="133c34887c1fd3fde5f292da3fec0075"/><file name="Info.php" hash="921f99f190b16cd954ff8e50f2ec2abc"/></dir><dir name="Controller"><file name="Abstract.php" hash="4c336733fb941594eab00ae00bca7487"/></dir><dir name="controllers"><file name="SecureController.php" hash="ea61b5af1e0cbb6216443feabe6c156d"/><file name="SharedController.php" hash="2ad74a3707d4fef5b35493bf5f3f439b"/></dir><dir name="etc"><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Fontis_EwayAu</name>
|
4 |
+
<version>1.2.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Adds support for eWAY Australia payment gateway.</description>
|
11 |
<notes>None.</notes>
|
12 |
<authors><author><name>Fontis</name><user>auto-converted</user><email>magento@fontis.com.au</email></author></authors>
|
13 |
+
<date>2010-09-20</date>
|
14 |
+
<time>04:56:45</time>
|
15 |
+
<contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="fontis"><dir name="ewayau"><dir name="pdf"><file name="info.phtml" hash="4af2178c2597fb9645442a3e25aaec0d"/></dir><file name="form.phtml" hash="560fb4bde178d6071edb58ca8da7be61"/><file name="info.phtml" hash="70998eb775ca3db6848e71e44f9e3ccf"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="fontis_ewayau.xml" hash="172b8e1cf5eb3c5fb76bee136c2532d3"/></dir><dir name="template"><dir name="fontis"><dir name="ewayau"><dir name="secure"><file name="failure.phtml" hash="16b3993f65964ef354fa56b929fde8ff"/><file name="form.phtml" hash="4f7e50698632a9e851b5504d7a5293ab"/></dir><dir name="shared"><file name="failure.phtml" hash="16b3993f65964ef354fa56b929fde8ff"/><file name="form.phtml" hash="1edf93ecf67b311794a66436ec7fa405"/></dir><file name="form.phtml" hash="eacb3d88b9b23a153564938b5433ab30"/><file name="info.phtml" hash="62a92278d0b6f8428ce98bf7462b92d8"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Fontis_EwayAu.csv" hash="608ddd72f698ac44afa8f3a0fc64d5e4"/></dir></target><target name="magecommunity"><dir name="Fontis"><dir name="EwayAu"><dir name="Block"><dir name="Secure"><file name="Failure.php" hash="81239ec03651c413019b74728015fdef"/><file name="Form.php" hash="03c69b7ae6b2de88c0e5614a8964b0e9"/><file name="Redirect.php" hash="cbf5d2ad7be4ca20c29f56bd4da5190f"/></dir><dir name="Shared"><file name="Failure.php" hash="90206554eee87c71a5efe4b00c14b1f8"/><file name="Form.php" hash="02b4b632a9063a71a9171575a368754f"/><file name="Redirect.php" hash="953202851c147cee5d5934d322588bd3"/></dir><file name="Form.php" hash="133c34887c1fd3fde5f292da3fec0075"/><file name="Info.php" hash="921f99f190b16cd954ff8e50f2ec2abc"/></dir><dir name="Controller"><file name="Abstract.php" hash="4c336733fb941594eab00ae00bca7487"/></dir><dir name="controllers"><file name="SecureController.php" hash="ea61b5af1e0cbb6216443feabe6c156d"/><file name="SharedController.php" hash="2ad74a3707d4fef5b35493bf5f3f439b"/></dir><dir name="etc"><file name="config.xml" hash="354587024b95a0c18c37244366b033a1"/><file name="system.xml" hash="30e1c5da0b0ca105c4a7a6f4fb7e21ac"/></dir><dir name="Helper"><file name="Data.php" hash="6ff5a560ca051ac3deb6ea9131932ced"/></dir><dir name="Model"><dir name="Source"><file name="Cctype.php" hash="0b9e6f233db3e53312e148d3916cfdc8"/></dir><file name="Direct.php" hash="82b963ada54c323c4667404b92df0c09"/><file name="Secure.php" hash="b14c8e1826f7b4b9134e75b8586260b0"/><file name="Shared.php" hash="928038070df5f17e1b9e0e5729925b61"/></dir><dir name="sql"><dir name="eway_setup"><file name="mysql4-install-0.1.0.php" hash="dde471943fc7320ab041f3e4f321aa8a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Fontis_EwayAu.xml" hash="484ebceaa067cdfa240eeda9f675256d"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|