Version Notes
Fixed compatibility with Credit Card module
Download this release
Release Info
Developer | Justin Slingerland |
Extension | BluePay_Echeck |
Version | 1.5.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.5.1.5 to 1.5.1.6
- app/code/local/BluePay/Echeck/Block/Form.php +0 -198
- app/code/local/BluePay/Echeck/Block/Form/Echeck.php +0 -57
- app/code/local/BluePay/Echeck/Block/Info.php +0 -55
- app/code/local/BluePay/Echeck/Block/Info/Echeck.php +0 -81
- app/code/local/BluePay/Echeck/Helper/Data.php +0 -31
- app/code/local/BluePay/Echeck/Model/Config.php +0 -71
- app/code/local/BluePay/Echeck/Model/EcheckPayment.php +0 -480
- app/code/local/BluePay/Echeck/Model/EcheckPayment/Debug.php +0 -34
- app/code/local/BluePay/Echeck/Model/EcheckPayment/Request.php +0 -31
- app/code/local/BluePay/Echeck/Model/EcheckPayment/Result.php +0 -31
- app/code/local/BluePay/Echeck/Model/EcheckPayment/Source/Accounttypes.php +0 -51
- app/code/local/BluePay/Echeck/Model/EcheckPayment/Source/PaymentAction.php +0 -39
- app/code/local/BluePay/Echeck/Model/Mysql4/ECheckPayment/Debug.php +0 -34
- app/code/local/BluePay/Echeck/Model/Mysql4/ECheckPayment/Debug/Collection.php +0 -34
- app/code/local/BluePay/Echeck/etc/config.xml +0 -136
- app/code/local/BluePay/Echeck/etc/system.xml +0 -161
- app/code/local/BluePay/Echeck/sql/echeck_setup/mysql4-install-0.7.0.php +0 -49
- app/design/adminhtml/default/default/template/bluepay/echeck.phtml +3 -3
- package.xml +6 -6
app/code/local/BluePay/Echeck/Block/Form.php
DELETED
@@ -1,198 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
class BluePay_Echeck_Block_Form extends Mage_Payment_Block_Form
|
28 |
-
{
|
29 |
-
protected function _construct()
|
30 |
-
{
|
31 |
-
parent::_construct();
|
32 |
-
if (Mage::app()->getStore()->isAdmin()) {
|
33 |
-
$this->setTemplate('bluepay/echeck.phtml');
|
34 |
-
return;
|
35 |
-
}
|
36 |
-
if (Mage::getStoreConfig('payment/echeckpayment/use_iframe') == 1) {
|
37 |
-
$this->setTemplate('bluepay/echeck_iframe.phtml');
|
38 |
-
} else {
|
39 |
-
$this->setTemplate('bluepay/echeck.phtml');
|
40 |
-
}
|
41 |
-
}
|
42 |
-
|
43 |
-
public function setMethodInfo()
|
44 |
-
{
|
45 |
-
$payment = Mage::getSingleton('checkout/type_onepage')
|
46 |
-
->getQuote()
|
47 |
-
->getPayment();
|
48 |
-
$this->setMethod($payment->getMethodInstance());
|
49 |
-
|
50 |
-
return $this;
|
51 |
-
}
|
52 |
-
|
53 |
-
public function getMethod()
|
54 |
-
{
|
55 |
-
$method = $this->getData('method');
|
56 |
-
if (!($method instanceof Mage_Payment_Model_Method_Abstract)) {
|
57 |
-
Mage::throwException($this->__('Cannot retrieve the payment method model object.'));
|
58 |
-
}
|
59 |
-
return $method;
|
60 |
-
}
|
61 |
-
|
62 |
-
/**
|
63 |
-
* Retrieve payment method code
|
64 |
-
*
|
65 |
-
* @return string
|
66 |
-
*/
|
67 |
-
public function getMethodCode()
|
68 |
-
{
|
69 |
-
return $this->getMethod()->getCode();
|
70 |
-
}
|
71 |
-
|
72 |
-
/**
|
73 |
-
* Retrieve field value data from payment info object
|
74 |
-
*
|
75 |
-
* @param string $field
|
76 |
-
* @return mixed
|
77 |
-
*/
|
78 |
-
public function getInfoData($field)
|
79 |
-
{
|
80 |
-
return $this->htmlEscape($this->getMethod()->getInfoInstance()->getData($field));
|
81 |
-
}
|
82 |
-
|
83 |
-
/**
|
84 |
-
* Retrieve payment configuration object
|
85 |
-
*
|
86 |
-
* @return Mage_Payment_Model_Config
|
87 |
-
*/
|
88 |
-
protected function _getConfig()
|
89 |
-
{
|
90 |
-
return Mage::getSingleton('echeck/config');
|
91 |
-
}
|
92 |
-
|
93 |
-
/**
|
94 |
-
* Retrieve availables credit card types
|
95 |
-
*
|
96 |
-
* @return array
|
97 |
-
*/
|
98 |
-
public function getCcAvailableTypes()
|
99 |
-
{
|
100 |
-
$types = $this->_getConfig()->getCcTypes();
|
101 |
-
if ($method = $this->getMethod()) {
|
102 |
-
$availableTypes = $method->getConfigData('cctypes');
|
103 |
-
if ($availableTypes) {
|
104 |
-
$availableTypes = explode(',', $availableTypes);
|
105 |
-
foreach ($types as $code=>$name) {
|
106 |
-
if (!in_array($code, $availableTypes)) {
|
107 |
-
unset($types[$code]);
|
108 |
-
}
|
109 |
-
}
|
110 |
-
}
|
111 |
-
}
|
112 |
-
return $types;
|
113 |
-
}
|
114 |
-
|
115 |
-
public function getAccountAvailableTypes()
|
116 |
-
{
|
117 |
-
$types = $this->_getConfig()->getAccountTypes();
|
118 |
-
if ($method = $this->getMethod()) {
|
119 |
-
$availableTypes = $method->getConfigData('accounttypes');
|
120 |
-
if ($availableTypes) {
|
121 |
-
$availableTypes = explode(',', $availableTypes);
|
122 |
-
foreach ($types as $code=>$name) {
|
123 |
-
if (!in_array($code, $availableTypes)) {
|
124 |
-
unset($types[$code]);
|
125 |
-
}
|
126 |
-
}
|
127 |
-
}
|
128 |
-
}
|
129 |
-
return $types;
|
130 |
-
}
|
131 |
-
|
132 |
-
|
133 |
-
/**
|
134 |
-
* Retrieve credit card expire months
|
135 |
-
*
|
136 |
-
* @return array
|
137 |
-
*/
|
138 |
-
public function getCcMonths()
|
139 |
-
{
|
140 |
-
$months = $this->getData('cc_months');
|
141 |
-
if (is_null($months)) {
|
142 |
-
$months[0] = $this->__('Month');
|
143 |
-
$months = array_merge($months, $this->_getConfig()->getMonths());
|
144 |
-
$this->setData('cc_months', $months);
|
145 |
-
}
|
146 |
-
return $months;
|
147 |
-
}
|
148 |
-
|
149 |
-
/**
|
150 |
-
* Retrieve credit card expire years
|
151 |
-
*
|
152 |
-
* @return array
|
153 |
-
*/
|
154 |
-
public function getCcYears()
|
155 |
-
{
|
156 |
-
$years = $this->getData('cc_years');
|
157 |
-
if (is_null($years)) {
|
158 |
-
$years = $this->_getConfig()->getYears();
|
159 |
-
$years = array(0=>$this->__('Year'))+$years;
|
160 |
-
$this->setData('cc_years', $years);
|
161 |
-
}
|
162 |
-
return $years;
|
163 |
-
}
|
164 |
-
|
165 |
-
/**
|
166 |
-
* Retrive has verification configuration
|
167 |
-
*
|
168 |
-
* @return boolean
|
169 |
-
*/
|
170 |
-
public function hasVerification()
|
171 |
-
{
|
172 |
-
if ($this->getMethod()) {
|
173 |
-
$configData = $this->getMethod()->getConfigData('useccv');
|
174 |
-
if(is_null($configData)){
|
175 |
-
return true;
|
176 |
-
}
|
177 |
-
return (bool) $configData;
|
178 |
-
}
|
179 |
-
return true;
|
180 |
-
}
|
181 |
-
|
182 |
-
/**
|
183 |
-
* Render block HTML
|
184 |
-
*
|
185 |
-
* @return string
|
186 |
-
*/
|
187 |
-
protected function _toHtml()
|
188 |
-
{
|
189 |
-
Mage::dispatchEvent('payment_form_block_to_html_before', array(
|
190 |
-
'block' => $this
|
191 |
-
));
|
192 |
-
return parent::_toHtml();
|
193 |
-
}
|
194 |
-
|
195 |
-
|
196 |
-
}
|
197 |
-
|
198 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Block/Form/Echeck.php
DELETED
@@ -1,57 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Block_Form_Echeck extends Mage_Payment_Block_Form
|
29 |
-
{
|
30 |
-
protected function _construct()
|
31 |
-
{
|
32 |
-
parent::_construct();
|
33 |
-
//$this->setTemplate('payment/form/echeck.phtml');
|
34 |
-
}
|
35 |
-
|
36 |
-
protected function _getConfig()
|
37 |
-
{
|
38 |
-
return Mage::getSingleton('echeck/config');
|
39 |
-
}
|
40 |
-
|
41 |
-
public function getAccountAvailableTypes()
|
42 |
-
{
|
43 |
-
$types = $this->_getConfig()->getAccountTypes();
|
44 |
-
if ($method = $this->getMethod()) {
|
45 |
-
$availableTypes = $method->getConfigData('accounttypes');
|
46 |
-
if ($availableTypes) {
|
47 |
-
$availableTypes = explode(',', $availableTypes);
|
48 |
-
foreach ($types as $code=>$name) {
|
49 |
-
if (!in_array($code, $availableTypes)) {
|
50 |
-
unset($types[$code]);
|
51 |
-
}
|
52 |
-
}
|
53 |
-
}
|
54 |
-
}
|
55 |
-
return $types;
|
56 |
-
}
|
57 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Block/Info.php
DELETED
@@ -1,55 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Block_Info extends Mage_Core_Block_Template
|
29 |
-
{
|
30 |
-
protected function _construct()
|
31 |
-
{
|
32 |
-
parent::_construct();
|
33 |
-
$this->setTemplate('payment/info/default.phtml');
|
34 |
-
}
|
35 |
-
|
36 |
-
public function getInfo()
|
37 |
-
{
|
38 |
-
$info = $this->getData('info');
|
39 |
-
if (!($info instanceof BluePay_Echeck_Model_Info)) {
|
40 |
-
Mage::throwException($this->__('Can not retrieve payment info model object.'));
|
41 |
-
}
|
42 |
-
return $info;
|
43 |
-
}
|
44 |
-
|
45 |
-
public function getMethod()
|
46 |
-
{
|
47 |
-
return $this->getInfo()->getMethodInstance();
|
48 |
-
}
|
49 |
-
|
50 |
-
public function toPdf()
|
51 |
-
{
|
52 |
-
$this->setTemplate('payment/info/pdf/default.phtml');
|
53 |
-
return $this->toHtml();
|
54 |
-
}
|
55 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Block/Info/Echeck.php
DELETED
@@ -1,81 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
|
29 |
-
class BluePay_Echeck_Block_Info_Echeck extends Mage_Payment_Block_Info
|
30 |
-
{
|
31 |
-
|
32 |
-
protected function _construct()
|
33 |
-
{
|
34 |
-
parent::_construct();
|
35 |
-
|
36 |
-
//$this->setTemplate('payment/info/echeck.phtml');
|
37 |
-
$this->setTemplate('payment/info/default.phtml');
|
38 |
-
}
|
39 |
-
|
40 |
-
public function getAccountTypeName()
|
41 |
-
{
|
42 |
-
$types = Mage::getSingleton('echeck/config')->getAccountTypes();
|
43 |
-
if (isset($types[$this->getInfo()->getAccountType()])) {
|
44 |
-
return $types[$this->getInfo()->getAccountType()];
|
45 |
-
}
|
46 |
-
return $this->getInfo()->getAccountType();
|
47 |
-
}
|
48 |
-
|
49 |
-
public function toPdf()
|
50 |
-
{
|
51 |
-
|
52 |
-
$this->setTemplate('payment/info/pdf/echeck.phtml');
|
53 |
-
return $this->toHtml();
|
54 |
-
}
|
55 |
-
|
56 |
-
public function getInfo()
|
57 |
-
{
|
58 |
-
$info = Mage::getSingleton('checkout/session')->getQuote()->getPayment();
|
59 |
-
$this->unmapData($info);
|
60 |
-
|
61 |
-
if (!strlen($info->getMethod())) {
|
62 |
-
$this->unmapData($this->getData('info'));
|
63 |
-
return $this->getData('info');
|
64 |
-
}
|
65 |
-
return $info;
|
66 |
-
}
|
67 |
-
|
68 |
-
public function unmapData($info)
|
69 |
-
{
|
70 |
-
$info->setEcheckRoutingNumber($info->getCcLast4())
|
71 |
-
->setEcheckBankName($info->getCcNumberEnc())
|
72 |
-
->setEcheckAccountType($info->getCcType())
|
73 |
-
->setEcheckAccountName($info->getCcOwner())
|
74 |
-
->setEcheckBankAcctNum($info->getCcSsIssue())
|
75 |
-
->setEcheckBankAcctNum4($info->getCcSsOwner());
|
76 |
-
if(strlen($info->getEcheckBankAcctNum()))
|
77 |
-
{
|
78 |
-
$info->setEcheckBankAcctNum4(substr($info->getEcheckBankAcctNum(), -4));
|
79 |
-
}
|
80 |
-
}
|
81 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Helper/Data.php
DELETED
@@ -1,31 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Helper_Data extends Mage_Core_Helper_Abstract
|
29 |
-
{
|
30 |
-
|
31 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/Config.php
DELETED
@@ -1,71 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_Config
|
29 |
-
{
|
30 |
-
protected static $_methods;
|
31 |
-
|
32 |
-
public function getActiveMethods($store=null)
|
33 |
-
{
|
34 |
-
$methods = array();
|
35 |
-
$config = Mage::getStoreConfig('echeck', $store);
|
36 |
-
foreach ($config as $code => $methodConfig) {
|
37 |
-
if (Mage::getStoreConfigFlag('echeck/'.$code.'/active', $store)) {
|
38 |
-
$methods[$code] = $this->_getMethod($code, $methodConfig);
|
39 |
-
}
|
40 |
-
}
|
41 |
-
return $methods;
|
42 |
-
}
|
43 |
-
|
44 |
-
public function getAllMethods($store=null)
|
45 |
-
{
|
46 |
-
$methods = array();
|
47 |
-
$config = Mage::getStoreConfig('payment', $store);
|
48 |
-
foreach ($config as $code => $methodConfig) {
|
49 |
-
$methods[$code] = $this->_getMethod($code, $methodConfig);
|
50 |
-
}
|
51 |
-
return $methods;
|
52 |
-
}
|
53 |
-
|
54 |
-
protected function _getMethod($code, $config, $store=null)
|
55 |
-
{
|
56 |
-
if (isset(self::$_methods[$code])) {
|
57 |
-
return self::$_methods[$code];
|
58 |
-
}
|
59 |
-
$modelName = $config['model'];
|
60 |
-
$method = Mage::getModel($modelName);
|
61 |
-
$method->setId($code)->setStore($store);
|
62 |
-
self::$_methods[$code] = $method;
|
63 |
-
return self::$_methods[$code];
|
64 |
-
}
|
65 |
-
|
66 |
-
public function getAccountTypes()
|
67 |
-
{
|
68 |
-
$types = array('CHECKING' => 'Checking', 'BUSINESSCHECKING' => 'Business checking', 'SAVINGS' => 'Savings');
|
69 |
-
return $types;
|
70 |
-
}
|
71 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment.php
DELETED
@@ -1,480 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment extends Mage_Paygate_Model_Authorizenet
|
29 |
-
{
|
30 |
-
|
31 |
-
const CGI_URL = 'https://secure.bluepay.com/interfaces/bp10emu';
|
32 |
-
const CURRENT_VERSION = '1.5.1.0';
|
33 |
-
|
34 |
-
|
35 |
-
const REQUEST_METHOD_CC = 'CREDIT';
|
36 |
-
const REQUEST_METHOD_ECHECK = 'ACH';
|
37 |
-
|
38 |
-
const REQUEST_TYPE_AUTH_CAPTURE = 'SALE';
|
39 |
-
const REQUEST_TYPE_AUTH_ONLY = 'AUTH';
|
40 |
-
const REQUEST_TYPE_CAPTURE_ONLY = 'CAPTURE';
|
41 |
-
const REQUEST_TYPE_CREDIT = 'CREDIT';
|
42 |
-
const REQUEST_TYPE_VOID = 'VOID';
|
43 |
-
const REQUEST_TYPE_PRIOR_AUTH_CAPTURE = 'PRIOR_AUTH_CAPTURE';
|
44 |
-
|
45 |
-
const ECHECK_ACCT_TYPE_CHECKING = 'CHECKING';
|
46 |
-
const ECHECK_ACCT_TYPE_BUSINESS = 'BUSINESSCHECKING';
|
47 |
-
const ECHECK_ACCT_TYPE_SAVINGS = 'SAVINGS';
|
48 |
-
|
49 |
-
const ECHECK_TRANS_TYPE_CCD = 'CCD';
|
50 |
-
const ECHECK_TRANS_TYPE_PPD = 'PPD';
|
51 |
-
const ECHECK_TRANS_TYPE_TEL = 'TEL';
|
52 |
-
const ECHECK_TRANS_TYPE_WEB = 'WEB';
|
53 |
-
|
54 |
-
const RESPONSE_DELIM_CHAR = ',';
|
55 |
-
|
56 |
-
const RESPONSE_CODE_APPROVED = 'APPROVED';
|
57 |
-
const RESPONSE_CODE_DECLINED = 'DECLINED';
|
58 |
-
const RESPONSE_CODE_ERROR = 'ERROR';
|
59 |
-
const RESPONSE_CODE_HELD = 4;
|
60 |
-
|
61 |
-
const INVOICE_ID = 0;
|
62 |
-
const BANK_NAME = 1;
|
63 |
-
const PAYMENT_ACCOUNT = 2;
|
64 |
-
const AUTH_CODE = 3;
|
65 |
-
const CARD_TYPE = 4;
|
66 |
-
const AMOUNT = 5;
|
67 |
-
const REBID = 6;
|
68 |
-
const AVS = 7;
|
69 |
-
const ORDER_ID = 8;
|
70 |
-
const CARD_EXPIRE = 9;
|
71 |
-
const Result = 10;
|
72 |
-
const RRNO = 11;
|
73 |
-
const CVV2 = 12;
|
74 |
-
const PAYMENT_TYPE = 13;
|
75 |
-
const MESSAGE = 14;
|
76 |
-
|
77 |
-
protected $responseHeaders;
|
78 |
-
|
79 |
-
protected $_code = 'echeckpayment';
|
80 |
-
protected $_formBlockType = 'echeck/form';
|
81 |
-
protected $_infoBlockType = 'echeck/info_echeck';
|
82 |
-
/**
|
83 |
-
* Availability options
|
84 |
-
*/
|
85 |
-
protected $_isGateway = true;
|
86 |
-
protected $_canAuthorize = true;
|
87 |
-
protected $_canCapture = true;
|
88 |
-
protected $_canCapturePartial = true;
|
89 |
-
protected $_canRefund = true;
|
90 |
-
protected $_canVoid = true;
|
91 |
-
protected $_canUseInternal = true;
|
92 |
-
protected $_canUseCheckout = true;
|
93 |
-
protected $_canUseForMultishipping = true;
|
94 |
-
protected $_canSaveCc = false;
|
95 |
-
|
96 |
-
public function authorize(Varien_Object $payment, $amount)
|
97 |
-
{
|
98 |
-
Mage::throwException(Mage::helper('echeck')->__('Error:'));
|
99 |
-
if ($amount <= 0) {
|
100 |
-
Mage::throwException(Mage::helper('paygate')->__('Invalid amount for authorization.'));
|
101 |
-
}
|
102 |
-
$payment->setTransactionType(self::REQUEST_TYPE_AUTH_CAPTURE);
|
103 |
-
$payment->setAmount($amount);
|
104 |
-
|
105 |
-
$request= $this->_buildRequest($payment);
|
106 |
-
$result = $this->_postRequest($request);
|
107 |
-
|
108 |
-
$payment->setCcApproval($result->getAuthCode())
|
109 |
-
->setLastTransId($result->getRrno())
|
110 |
-
->setTransactionId($result->getRrno())
|
111 |
-
->setIsTransactionClosed(0)
|
112 |
-
->setCcTransId($result->getRrno())
|
113 |
-
->setCcAvsStatus($result->getAvs())
|
114 |
-
->setCcCidStatus($result->getCvv2());
|
115 |
-
switch ($result->getResult()) {
|
116 |
-
case self::RESPONSE_CODE_APPROVED:
|
117 |
-
$payment->setStatus(self::STATUS_APPROVED);
|
118 |
-
Mage::throwException(Mage::helper('echeck')->__('Error: ' . $result->getMessage()));
|
119 |
-
return $this;
|
120 |
-
case self::RESPONSE_CODE_DECLINED:
|
121 |
-
Mage::throwException(Mage::helper('echeck')->__('The transaction has been declined'));
|
122 |
-
case self::RESPONSE_CODE_ERROR:
|
123 |
-
Mage::throwException(Mage::helper('echeck')->__('Error: ' . $result->getMessage()));
|
124 |
-
default:
|
125 |
-
Mage::throwException(Mage::helper('echeck')->__('Error!'));
|
126 |
-
}
|
127 |
-
}
|
128 |
-
|
129 |
-
|
130 |
-
public function capture(Varien_Object $payment, $amount)
|
131 |
-
{
|
132 |
-
$error = false;
|
133 |
-
$payment->setTransactionType(self::REQUEST_TYPE_AUTH_CAPTURE);
|
134 |
-
$payment->setAmount($amount);
|
135 |
-
|
136 |
-
$request= $this->_buildRequest($payment);
|
137 |
-
$result = $this->_postRequest($request);
|
138 |
-
if ($result->getResult() == self::RESPONSE_CODE_APPROVED) {
|
139 |
-
$payment->setStatus(self::STATUS_APPROVED);
|
140 |
-
$payment->setLastTransId($result->getRrno())
|
141 |
-
->setTransactionId($result->getRrno());
|
142 |
-
return $this;
|
143 |
-
}
|
144 |
-
if ($result->getMessage()) {
|
145 |
-
Mage::throwException($this->_wrapGatewayError($result->getMessage()));
|
146 |
-
}
|
147 |
-
Mage::throwException(Mage::helper('echeck')->__('Error in capturing the payment.'));
|
148 |
-
if ($error !== false) {
|
149 |
-
Mage::throwException($error);
|
150 |
-
}
|
151 |
-
}
|
152 |
-
|
153 |
-
public function void(Varien_Object $payment)
|
154 |
-
{
|
155 |
-
$error = false;
|
156 |
-
if($payment->getParentTransactionId()){
|
157 |
-
$payment->setTransactionType(self::REQUEST_TYPE_CREDIT);
|
158 |
-
$request = $this->_buildRequest($payment);
|
159 |
-
$result = $this->_postRequest($request);
|
160 |
-
if($result->getResult()==self::RESPONSE_CODE_APPROVED){
|
161 |
-
$payment->setStatus(self::STATUS_SUCCESS );
|
162 |
-
$order->setState(Mage_Sales_Model_Order::STATE_CANCELED, true)->save();
|
163 |
-
return $this;
|
164 |
-
}
|
165 |
-
$payment->setStatus(self::STATUS_ERROR);
|
166 |
-
Mage::throwException($this->_wrapGatewayError($result->getMessage()));
|
167 |
-
}
|
168 |
-
$payment->setStatus(self::STATUS_ERROR);
|
169 |
-
Mage::throwException(Mage::helper('echeck')->__('Invalid transaction ID.'));
|
170 |
-
}
|
171 |
-
|
172 |
-
public function refund(Varien_Object $payment, $amount)
|
173 |
-
{
|
174 |
-
if ($payment->getRefundTransactionId() && $amount > 0) {
|
175 |
-
$payment->setTransactionType(self::REQUEST_TYPE_CREDIT);
|
176 |
-
$payment->setRrno($payment->getRefundTransactionId());
|
177 |
-
$payment->setAmount($amount);
|
178 |
-
$request = $this->_buildRequest($payment);
|
179 |
-
$request->setRrno($payment->getRefundTransactionId());
|
180 |
-
$result = $this->_postRequest($request);
|
181 |
-
if ($result->getResult()==self::RESPONSE_CODE_APPROVED) {
|
182 |
-
$payment->setStatus(self::STATUS_SUCCESS);
|
183 |
-
return $this;
|
184 |
-
}
|
185 |
-
if ($result->getResult()==self::RESPONSE_CODE_DECLINED) {
|
186 |
-
Mage::throwException($this->_wrapGatewayError('DECLINED'));
|
187 |
-
}
|
188 |
-
if ($result->getResult()==self::RESPONSE_CODE_ERROR) {
|
189 |
-
Mage::throwException($this->_wrapGatewayError('ERROR'));
|
190 |
-
}
|
191 |
-
Mage::throwException($this->_wrapGatewayError($result->getRrno()));
|
192 |
-
}
|
193 |
-
Mage::throwException(Mage::helper('echeck')->__('Error in refunding the payment.'));
|
194 |
-
}
|
195 |
-
|
196 |
-
protected function _buildRequest(Varien_Object $payment)
|
197 |
-
{
|
198 |
-
$order = $payment->getOrder();
|
199 |
-
|
200 |
-
$this->setStore($order->getStoreId());
|
201 |
-
|
202 |
-
if (!$payment->getPaymentType()) {
|
203 |
-
$payment->setPaymentType(self::REQUEST_METHOD_ECHECK);
|
204 |
-
}
|
205 |
-
$payment->setPaymentType(self::REQUEST_METHOD_ECHECK);
|
206 |
-
$request = Mage::getModel('echeck/EcheckPayment_request');
|
207 |
-
|
208 |
-
if ($order && $order->getIncrementId()) {
|
209 |
-
$request->setInvoiceID($order->getIncrementId());
|
210 |
-
}
|
211 |
-
|
212 |
-
$request->setMode(($this->getConfigData('test_mode') == 'TEST') ? 'TEST' : 'LIVE');
|
213 |
-
$request->setMerchant($this->getConfigData('login'))
|
214 |
-
->setTransactionType($payment->getTransactionType())
|
215 |
-
->setPaymentType($payment->getPaymentType())
|
216 |
-
->setTamperProofSeal($this->calcTPS($payment));
|
217 |
-
if($payment->getAmount()){
|
218 |
-
$request->setAmount($payment->getAmount(),2);
|
219 |
-
}
|
220 |
-
switch ($payment->getTransactionType()) {
|
221 |
-
case self::REQUEST_TYPE_CREDIT:
|
222 |
-
case self::REQUEST_TYPE_VOID:
|
223 |
-
case self::REQUEST_TYPE_CAPTURE_ONLY:
|
224 |
-
$request->setRrno($payment->getCcTransId());
|
225 |
-
break;
|
226 |
-
}
|
227 |
-
$cart = Mage::helper('checkout/cart')->getCart()->getItemsCount();
|
228 |
-
$cartSummary = Mage::helper('checkout/cart')->getCart()->getSummaryQty();
|
229 |
-
Mage::getSingleton('core/session', array('name'=>'frontend'));
|
230 |
-
$session = Mage::getSingleton('checkout/session');
|
231 |
-
|
232 |
-
$comment = "";
|
233 |
-
|
234 |
-
foreach ($session->getQuote()->getAllItems() as $item) {
|
235 |
-
|
236 |
-
$comment .= $item->getQty() . ' ';
|
237 |
-
$comment .= '[' . $item->getSku() . ']' . ' ';
|
238 |
-
$comment .= $item->getName() . ' ';
|
239 |
-
$comment .= $item->getDescription() . ' ';
|
240 |
-
$comment .= $item->getBaseCalculationPrice . ' ';
|
241 |
-
}
|
242 |
-
|
243 |
-
|
244 |
-
if (!empty($order)) {
|
245 |
-
$billing = $order->getBillingAddress();
|
246 |
-
if (!empty($billing)) {
|
247 |
-
$request->setName1($billing->getFirstname())
|
248 |
-
->setName2($billing->getLastname())
|
249 |
-
->setCompany($billing->getCompany())
|
250 |
-
->setAddr1($billing->getStreet(1))
|
251 |
-
->setCity($billing->getCity())
|
252 |
-
->setState($billing->getRegion())
|
253 |
-
->setZipcode($billing->getPostcode())
|
254 |
-
->setCountry($billing->getCountry())
|
255 |
-
->setPhone($billing->getTelephone())
|
256 |
-
->setFax($billing->getFax())
|
257 |
-
->setCustomId($billing->getCustomerId())
|
258 |
-
->setComment($comment)
|
259 |
-
->setEmail($order->getCustomerEmail());
|
260 |
-
}
|
261 |
-
}
|
262 |
-
|
263 |
-
switch ($payment->getPaymentType()) {
|
264 |
-
case self::REQUEST_METHOD_ECHECK:
|
265 |
-
$request->setAchRouting($payment->getEcheckRoutingNumber())
|
266 |
-
->setAchAccount($payment->getEcheckBankAcctNum())
|
267 |
-
->setAchAccountType($payment->getEcheckAccountType())
|
268 |
-
->setName($payment->getEcheckAccountName())
|
269 |
-
->setDocType(self::ECHECK_TRANS_TYPE_CCD);
|
270 |
-
break;
|
271 |
-
}
|
272 |
-
return $request;
|
273 |
-
}
|
274 |
-
|
275 |
-
protected function _postRequest(Varien_Object $request)
|
276 |
-
{
|
277 |
-
$debugData = array('request' => $request->getData());
|
278 |
-
|
279 |
-
$result = Mage::getModel('echeck/EcheckPayment_result');
|
280 |
-
if (isset($_POST["?Result"])) {
|
281 |
-
$_POST["Result"] = $_POST["?Result"];
|
282 |
-
unset($_POST["?Result"]);
|
283 |
-
}
|
284 |
-
if (!isset($_POST["Result"])) {
|
285 |
-
$client = new Varien_Http_Client();
|
286 |
-
|
287 |
-
$uri = $this->getConfigData('cgi_url');
|
288 |
-
$client->setUri(self::CGI_URL);
|
289 |
-
$client->setConfig(array(
|
290 |
-
'maxredirects'=>0,
|
291 |
-
'timeout'=>30,
|
292 |
-
'useragent' => 'BluePay Magento ACH Plugin/' . self::CURRENT_VERSION,
|
293 |
-
));
|
294 |
-
$client->setParameterPost($request->getData());
|
295 |
-
$client->setMethod(Zend_Http_Client::POST);
|
296 |
-
|
297 |
-
try {
|
298 |
-
$response = $client->request();
|
299 |
-
}
|
300 |
-
catch (Exception $e) {
|
301 |
-
$debugData['result'] = $result->getData();
|
302 |
-
$this->_debug($debugData);
|
303 |
-
Mage::throwException($this->_wrapGatewayError($e->getMessage()));
|
304 |
-
}
|
305 |
-
$r = $response->getHeader('location');
|
306 |
-
if ($r) {
|
307 |
-
$result->setResult($this->parseHeader($r, 'value', self::Result))
|
308 |
-
->setInvoiceId($this->parseHeader($r, 'value', self::INVOICE_ID))
|
309 |
-
->setMessage($this->parseHeader($r, 'value', self::MESSAGE))
|
310 |
-
->setAuthCode($this->parseHeader($r, 'value', self::AUTH_CODE))
|
311 |
-
->setAvs($this->parseHeader($r, 'value', self::AVS))
|
312 |
-
->setRrno($this->parseHeader($r, 'value', self::RRNO))
|
313 |
-
->setAmount($this->parseHeader($r, 'value', self::AMOUNT))
|
314 |
-
->setPaymentType($this->parseHeader($r, 'value', self::PAYMENT_TYPE))
|
315 |
-
->setOrderId($this->parseHeader($r, 'value', self::ORDER_ID))
|
316 |
-
->setCvv2($this->parseHeader($r, 'value', self::CVV2));
|
317 |
-
if($this->parseHeader($r, 'value', 0) == "ERROR") {
|
318 |
-
Mage::throwException($this->_wrapGatewayError($this->parseHeader($r, 'value', 1)));
|
319 |
-
}
|
320 |
-
} else {
|
321 |
-
Mage::throwException(
|
322 |
-
Mage::helper('echeck')->__('Error in payment gateway.')
|
323 |
-
);
|
324 |
-
}
|
325 |
-
$debugData['result'] = $result->getData();
|
326 |
-
$this->_debug($debugData);
|
327 |
-
} else {
|
328 |
-
$result->setResult($_POST["Result"]);
|
329 |
-
$result->setMessage($_POST["MESSAGE"]);
|
330 |
-
}
|
331 |
-
return $result;
|
332 |
-
}
|
333 |
-
|
334 |
-
public function validateRoutingNumber($routingNumber) {
|
335 |
-
$routingNumber = preg_replace('[\D]', '', $routingNumber); //only digits
|
336 |
-
if(strlen($routingNumber) != 9) {
|
337 |
-
return false;
|
338 |
-
}
|
339 |
-
|
340 |
-
$checkSum = 0;
|
341 |
-
for ($i = 0, $j = strlen($routingNumber); $i < $j; $i+= 3 ) {
|
342 |
-
//loop through routingNumber character by character
|
343 |
-
$checkSum += ($routingNumber[$i] * 3);
|
344 |
-
$checkSum += ($routingNumber[$i+1] * 7);
|
345 |
-
$checkSum += ($routingNumber[$i+2]);
|
346 |
-
}
|
347 |
-
|
348 |
-
if($checkSum != 0 and ($checkSum % 10) == 0) {
|
349 |
-
return true;
|
350 |
-
} else {
|
351 |
-
return false;
|
352 |
-
}
|
353 |
-
}
|
354 |
-
|
355 |
-
|
356 |
-
public function validate()
|
357 |
-
{
|
358 |
-
$paymentInfo = $this->getInfoInstance();
|
359 |
-
if(strlen($paymentInfo->getCcType()))
|
360 |
-
{
|
361 |
-
$paymentInfo = $this->unmapData($paymentInfo);
|
362 |
-
}
|
363 |
-
|
364 |
-
if ($paymentInfo instanceof Mage_Sales_Model_Order_Payment) {
|
365 |
-
$billingCountry = $paymentInfo->getOrder()->getBillingAddress()->getCountryId();
|
366 |
-
} else {
|
367 |
-
$billingCountry = $paymentInfo->getQuote()->getBillingAddress()->getCountryId();
|
368 |
-
}
|
369 |
-
if (!$this->canUseForCountry($billingCountry)) {
|
370 |
-
Mage::throwException($this->_getHelper()->__('Selected payment type is not allowed for billing country.'));
|
371 |
-
}
|
372 |
-
|
373 |
-
$info = $this->getInfoInstance();
|
374 |
-
$errorMsg = false;
|
375 |
-
$availableTypes = explode(',',$this->getConfigData('accounttypes'));
|
376 |
-
|
377 |
-
$accountType = '';
|
378 |
-
|
379 |
-
if (!in_array($info->getEcheckAccountType(), $availableTypes))
|
380 |
-
{
|
381 |
-
$errorCode = 'echeck_account_type';
|
382 |
-
$errorMsg = $this->_getHelper()->__('Account type is not allowed for this payment method '. $info->getAccountType());
|
383 |
-
}
|
384 |
-
$errorMsg = (!$this->validateRoutingNumber($info->getEcheckRoutingNumber())) ? 'Invalid Routing Number entered.' : $errorMsg;
|
385 |
-
$errorMsg = (!is_numeric($info->getEcheckBankAcctNum())) ? 'Invalid Account Number entered.' : $errorMsg;
|
386 |
-
if($errorMsg && $this->getConfigData('use_iframe') == '0')
|
387 |
-
{
|
388 |
-
Mage::throwException($errorMsg);
|
389 |
-
}
|
390 |
-
return $this;
|
391 |
-
}
|
392 |
-
|
393 |
-
public function getInfoInstance()
|
394 |
-
{
|
395 |
-
$instance = $this->getData('info_instance');
|
396 |
-
return $instance;
|
397 |
-
}
|
398 |
-
|
399 |
-
public function assignData($data)
|
400 |
-
{
|
401 |
-
if (!($data instanceof Varien_Object)) {
|
402 |
-
$data = new Varien_Object($data);
|
403 |
-
}
|
404 |
-
$data->setEcheckBankAcctNum4(substr($data->getEcheckBankAcctNum(), -4));
|
405 |
-
$info = $this->getInfoInstance();
|
406 |
-
$info->setEcheckRoutingNumber($data->getEcheckRoutingNumber())
|
407 |
-
->setEcheckBankName($data->getEcheckBankName())
|
408 |
-
->setData('echeck_account_type', $data->getEcheckAccountType())
|
409 |
-
->setEcheckAccountName($data->getEcheckAccountName())
|
410 |
-
->setEcheckBankAcctNum($data->getEcheckBankAcctNum())
|
411 |
-
->setEcheckBankAcctNum4($data->getEcheckBankAcctNum4());
|
412 |
-
|
413 |
-
$this->mapData($data);
|
414 |
-
return $this;
|
415 |
-
}
|
416 |
-
|
417 |
-
public function mapData($data)
|
418 |
-
{
|
419 |
-
if (!($data instanceof Varien_Object)) {
|
420 |
-
$data = new Varien_Object($data);
|
421 |
-
}
|
422 |
-
$info = $this->getInfoInstance();
|
423 |
-
$info->setCcLast4($data->getEcheckRoutingNumber())
|
424 |
-
->setCcNumberEnc($data->getEcheckBankName())
|
425 |
-
->setCcType($data->getEcheckAccountType())
|
426 |
-
->setCcOwner($data->getEcheckAccountName())
|
427 |
-
->setCcSsIssue($data->getEcheckBankAcctNum())
|
428 |
-
->setCcSsOwner($data->getEcheckBankAcctNum4());
|
429 |
-
}
|
430 |
-
|
431 |
-
public function unmapData($info)
|
432 |
-
{
|
433 |
-
$info->setEcheckRoutingNumber($info->getCcLast4())
|
434 |
-
->setEcheckBankName($info->getCcNumberEnc())
|
435 |
-
->setEcheckAccountType($info->getCcType())
|
436 |
-
->setEcheckAccountName($info->getCcOwner())
|
437 |
-
->setEcheckBankAcctNum($info->getCcSsIssue())
|
438 |
-
->setEcheckBankAcctNum4($info->getCcSsOwner());
|
439 |
-
return $info;
|
440 |
-
}
|
441 |
-
|
442 |
-
public function prepareSave()
|
443 |
-
{
|
444 |
-
$info = $this->getInfoInstance();
|
445 |
-
$info->setCcSsIssue(null);
|
446 |
-
return $this;
|
447 |
-
}
|
448 |
-
|
449 |
-
public function isAvailable($quote = null){
|
450 |
-
$checkResult = new StdClass;
|
451 |
-
$checkResult->isAvailable = (bool)(int)$this->getConfigData('active', ($quote ? $quote->getStoreId() : null));
|
452 |
-
Mage::dispatchEvent('payment_method_is_active', array(
|
453 |
-
'result' => $checkResult,
|
454 |
-
'method_instance' => $this,
|
455 |
-
'quote' => $quote,
|
456 |
-
));
|
457 |
-
return $checkResult->isAvailable;
|
458 |
-
}
|
459 |
-
|
460 |
-
protected final function calcTPS(Varien_Object $payment) {
|
461 |
-
|
462 |
-
$order = $payment->getOrder();
|
463 |
-
$billing = $order->getBillingAddress();
|
464 |
-
|
465 |
-
$hashstr = $this->getConfigData('trans_key') . $this->getConfigData('login') .
|
466 |
-
$payment->getTransactionType() . $payment->getAmount() . $payment->getRrno() .
|
467 |
-
$this->getConfigData('test_mode');
|
468 |
-
|
469 |
-
return bin2hex( md5($hashstr, true) );
|
470 |
-
}
|
471 |
-
|
472 |
-
protected function parseHeader($header, $nameVal, $pos) {
|
473 |
-
$nameVal = ($nameVal == 'name') ? '0' : '1';
|
474 |
-
$s = explode("?", $header);
|
475 |
-
$t = explode("&", $s[1]);
|
476 |
-
$value = explode("=", $t[$pos]);
|
477 |
-
return $value[$nameVal];
|
478 |
-
}
|
479 |
-
|
480 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment/Debug.php
DELETED
@@ -1,34 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment_Debug extends Mage_Core_Model_Abstract
|
29 |
-
{
|
30 |
-
protected function _construct()
|
31 |
-
{
|
32 |
-
$this->_init('echeck/EcheckPayment_debug');
|
33 |
-
}
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment/Request.php
DELETED
@@ -1,31 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment_Request extends Varien_Object
|
29 |
-
{
|
30 |
-
|
31 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment/Result.php
DELETED
@@ -1,31 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment_Result extends Varien_Object
|
29 |
-
{
|
30 |
-
|
31 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment/Source/Accounttypes.php
DELETED
@@ -1,51 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment_Source_Accounttypes
|
29 |
-
{
|
30 |
-
public function getAllowedTypes()
|
31 |
-
{
|
32 |
-
return array('CHECKING', 'BUSINESSCHECKING', 'SAVINGS');
|
33 |
-
}
|
34 |
-
|
35 |
-
public function toOptionArray()
|
36 |
-
{
|
37 |
-
$allowed = $this->getAllowedTypes();
|
38 |
-
$options = array();
|
39 |
-
|
40 |
-
foreach (Mage::getSingleton('echeck/config')->getAccountTypes() as $code => $name) {
|
41 |
-
if (in_array($code, $allowed) || !count($allowed)) {
|
42 |
-
$options[] = array(
|
43 |
-
'value' => $code,
|
44 |
-
'label' => $name
|
45 |
-
);
|
46 |
-
}
|
47 |
-
}
|
48 |
-
|
49 |
-
return $options;
|
50 |
-
}
|
51 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/EcheckPayment/Source/PaymentAction.php
DELETED
@@ -1,39 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_EcheckPayment_Source_PaymentAction
|
29 |
-
{
|
30 |
-
public function toOptionArray()
|
31 |
-
{
|
32 |
-
return array(
|
33 |
-
array(
|
34 |
-
'value' => BluePay_Echeck_Model_EcheckPayment::ACTION_AUTHORIZE_CAPTURE,
|
35 |
-
'label' => 'SALE'
|
36 |
-
),
|
37 |
-
);
|
38 |
-
}
|
39 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/Mysql4/ECheckPayment/Debug.php
DELETED
@@ -1,34 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_Mysql4_ECheckPayment_Debug extends Mage_Core_Model_Mysql4_Abstract
|
29 |
-
{
|
30 |
-
protected function _construct()
|
31 |
-
{
|
32 |
-
$this->_init('echeck/ECheckPayment_debug', 'debug_id');
|
33 |
-
}
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/Model/Mysql4/ECheckPayment/Debug/Collection.php
DELETED
@@ -1,34 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
class BluePay_Echeck_Model_Mysql4_ECheckPayment_Debug_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
29 |
-
{
|
30 |
-
protected function _construct()
|
31 |
-
{
|
32 |
-
$this->_init('echeck/ECheckPayment_debug');
|
33 |
-
}
|
34 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/etc/config.xml
DELETED
@@ -1,136 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* Magento
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/afl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC. (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
-
*/
|
27 |
-
-->
|
28 |
-
<config>
|
29 |
-
<modules>
|
30 |
-
<BluePay_Echeck>
|
31 |
-
<version>0.1.0</version>
|
32 |
-
</BluePay_Echeck>
|
33 |
-
</modules>
|
34 |
-
<global>
|
35 |
-
<blocks>
|
36 |
-
<echeck>
|
37 |
-
<class>BluePay_Echeck_Block</class>
|
38 |
-
</echeck>
|
39 |
-
</blocks>
|
40 |
-
<helpers>
|
41 |
-
<echeck>
|
42 |
-
<class>BluePay_Echeck_Helper</class>
|
43 |
-
</echeck>
|
44 |
-
</helpers>
|
45 |
-
<models>
|
46 |
-
<echeck>
|
47 |
-
<class>BluePay_Echeck_Model</class>
|
48 |
-
<resourceModel>echeck_mysql4</resourceModel>
|
49 |
-
</echeck>
|
50 |
-
<echeck_mysql4>
|
51 |
-
<class>BluePay_Echeck_Model_Mysql4</class>
|
52 |
-
<entities>
|
53 |
-
<echeckpayment_debug><table>echeck_EcheckPayment_debug</table></echeckpayment_debug>
|
54 |
-
</entities>
|
55 |
-
</echeck_mysql4>
|
56 |
-
</models>
|
57 |
-
<resources>
|
58 |
-
<echeck_setup>
|
59 |
-
<setup>
|
60 |
-
<module>BluePay_Echeck</module>
|
61 |
-
</setup>
|
62 |
-
<connection>
|
63 |
-
<use>core_setup</use>
|
64 |
-
</connection>
|
65 |
-
</echeck_setup>
|
66 |
-
<echeck_write>
|
67 |
-
<connection>
|
68 |
-
<use>core_write</use>
|
69 |
-
</connection>
|
70 |
-
</echeck_write>
|
71 |
-
<echeck_read>
|
72 |
-
<connection>
|
73 |
-
<use>core_read</use>
|
74 |
-
</connection>
|
75 |
-
</echeck_read>
|
76 |
-
</resources>
|
77 |
-
</global>
|
78 |
-
|
79 |
-
<adminhtml>
|
80 |
-
<translate>
|
81 |
-
<modules>
|
82 |
-
<BluePay_Echeck>
|
83 |
-
<files>
|
84 |
-
<default>BluePay_Echeck.csv</default>
|
85 |
-
</files>
|
86 |
-
</BluePay_Echeck>
|
87 |
-
</modules>
|
88 |
-
</translate>
|
89 |
-
</adminhtml>
|
90 |
-
|
91 |
-
<frontend>
|
92 |
-
<translate>
|
93 |
-
<modules>
|
94 |
-
<BluePay_Echeck>
|
95 |
-
<files>
|
96 |
-
<default>BluePay_Echeck.csv</default>
|
97 |
-
</files>
|
98 |
-
</BluePay_Echeck>
|
99 |
-
</modules>
|
100 |
-
</translate>
|
101 |
-
<routers>
|
102 |
-
<echeck>
|
103 |
-
<use>standard></use>
|
104 |
-
<args>
|
105 |
-
<module>BluePay_Echeck</module>
|
106 |
-
<frontName>echeck</frontName>
|
107 |
-
</args>
|
108 |
-
</echeck>
|
109 |
-
</routers>
|
110 |
-
<layout>
|
111 |
-
<updates>
|
112 |
-
<echeck>
|
113 |
-
<file>bluepay_echeck.xml</file>
|
114 |
-
</echeck>
|
115 |
-
</updates>
|
116 |
-
</layout>
|
117 |
-
</frontend>
|
118 |
-
|
119 |
-
<default>
|
120 |
-
<payment>
|
121 |
-
<echeckpayment>
|
122 |
-
<active>1</active>
|
123 |
-
<accounttypes>CHECKING,BUSINESSCHECKING,SAVINGS</accounttypes>
|
124 |
-
<debug>0</debug>
|
125 |
-
<login backend_model="adminhtml/system_config_backend_encrypted"/>
|
126 |
-
<model>echeck/EcheckPayment</model>
|
127 |
-
<order_status>2</order_status>
|
128 |
-
<test>1</test>
|
129 |
-
<title>E-Check</title>
|
130 |
-
<trans_key backend_model="adminhtml/system_config_backend_encrypted"/>
|
131 |
-
<allowspecific>0</allowspecific>
|
132 |
-
<use_iframe>0</use_iframe>
|
133 |
-
</echeckpayment>
|
134 |
-
</payment>
|
135 |
-
</default>
|
136 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/etc/system.xml
DELETED
@@ -1,161 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* Magento
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/afl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC. (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
-
*/
|
27 |
-
-->
|
28 |
-
<config>
|
29 |
-
<sections>
|
30 |
-
<payment>
|
31 |
-
<groups>
|
32 |
-
<echeckpayment translate="label" module="echeck">
|
33 |
-
<label>BluePay (E-Check)</label>
|
34 |
-
<frontend_type>text</frontend_type>
|
35 |
-
<sort_order>10</sort_order>
|
36 |
-
<show_in_default>1</show_in_default>
|
37 |
-
<show_in_website>1</show_in_website>
|
38 |
-
<show_in_store>1</show_in_store>
|
39 |
-
<fields>
|
40 |
-
<active translate="label">
|
41 |
-
<label>Enabled</label>
|
42 |
-
<frontend_type>select</frontend_type>
|
43 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
44 |
-
<sort_order>1</sort_order>
|
45 |
-
<show_in_default>1</show_in_default>
|
46 |
-
<show_in_website>1</show_in_website>
|
47 |
-
<show_in_store>0</show_in_store>
|
48 |
-
</active>
|
49 |
-
<accounttypes translate="label">
|
50 |
-
<label>Account Types</label>
|
51 |
-
<frontend_type>multiselect</frontend_type>
|
52 |
-
<source_model>echeck/EcheckPayment_source_accounttypes</source_model>
|
53 |
-
<sort_order>15</sort_order>
|
54 |
-
<show_in_default>1</show_in_default>
|
55 |
-
<show_in_website>1</show_in_website>
|
56 |
-
<show_in_store>0</show_in_store>
|
57 |
-
</accounttypes>
|
58 |
-
<login translate="label">
|
59 |
-
<label>Account ID</label>
|
60 |
-
<frontend_type>obscure</frontend_type>
|
61 |
-
<backend_model>adminhtml/system_config_backend_encrypted</backend_model>
|
62 |
-
<sort_order>3</sort_order>
|
63 |
-
<show_in_default>1</show_in_default>
|
64 |
-
<show_in_website>1</show_in_website>
|
65 |
-
<show_in_store>0</show_in_store>
|
66 |
-
</login>
|
67 |
-
<sort_order translate="label">
|
68 |
-
<label>Sort order</label>
|
69 |
-
<frontend_type>text</frontend_type>
|
70 |
-
<sort_order>100</sort_order>
|
71 |
-
<show_in_default>1</show_in_default>
|
72 |
-
<show_in_website>1</show_in_website>
|
73 |
-
<show_in_store>0</show_in_store>
|
74 |
-
</sort_order>
|
75 |
-
<order_status translate="label">
|
76 |
-
<label>New Order Status</label>
|
77 |
-
<frontend_type>select</frontend_type>
|
78 |
-
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
79 |
-
<sort_order>4</sort_order>
|
80 |
-
<show_in_default>1</show_in_default>
|
81 |
-
<show_in_website>1</show_in_website>
|
82 |
-
<show_in_store>0</show_in_store>
|
83 |
-
</order_status>
|
84 |
-
|
85 |
-
<test_mode translate="label">
|
86 |
-
<label>Test Mode</label>
|
87 |
-
<frontend_type>select</frontend_type>
|
88 |
-
<source_model>adminhtml/system_config_source_testmodeACH</source_model>
|
89 |
-
<sort_order>6</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 |
-
</test_mode>
|
94 |
-
<debug translate="label">
|
95 |
-
<label>Debug</label>
|
96 |
-
<frontend_type>select</frontend_type>
|
97 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
98 |
-
<sort_order>20</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>
|
102 |
-
</debug>
|
103 |
-
<title translate="label">
|
104 |
-
<label>Title</label>
|
105 |
-
<frontend_type>text</frontend_type>
|
106 |
-
<sort_order>2</sort_order>
|
107 |
-
<show_in_default>1</show_in_default>
|
108 |
-
<show_in_website>1</show_in_website>
|
109 |
-
<show_in_store>1</show_in_store>
|
110 |
-
</title>
|
111 |
-
<trans_key translate="label">
|
112 |
-
<label>Secret Key</label>
|
113 |
-
<frontend_type>obscure</frontend_type>
|
114 |
-
<backend_model>adminhtml/system_config_backend_encrypted</backend_model>
|
115 |
-
<sort_order>4</sort_order>
|
116 |
-
<show_in_default>1</show_in_default>
|
117 |
-
<show_in_website>1</show_in_website>
|
118 |
-
<show_in_store>0</show_in_store>
|
119 |
-
</trans_key>
|
120 |
-
<min_order_total translate="label">
|
121 |
-
<label>Minimum Order Total</label>
|
122 |
-
<frontend_type>text</frontend_type>
|
123 |
-
<sort_order>17</sort_order>
|
124 |
-
<show_in_default>1</show_in_default>
|
125 |
-
<show_in_website>1</show_in_website>
|
126 |
-
<show_in_store>0</show_in_store>
|
127 |
-
</min_order_total>
|
128 |
-
<max_order_total translate="label">
|
129 |
-
<label>Maximum Order Total</label>
|
130 |
-
<frontend_type>text</frontend_type>
|
131 |
-
<sort_order>18</sort_order>
|
132 |
-
<show_in_default>1</show_in_default>
|
133 |
-
<show_in_website>1</show_in_website>
|
134 |
-
<show_in_store>0</show_in_store>
|
135 |
-
</max_order_total>
|
136 |
-
<payment_action translate="label">
|
137 |
-
<label>Transaction Type</label>
|
138 |
-
<frontend_type>select</frontend_type>
|
139 |
-
<source_model>echeck/EcheckPayment_source_paymentAction</source_model>
|
140 |
-
<sort_order>4</sort_order>
|
141 |
-
<show_in_default>1</show_in_default>
|
142 |
-
<show_in_website>1</show_in_website>
|
143 |
-
<show_in_store>0</show_in_store>
|
144 |
-
</payment_action>
|
145 |
-
<use_iframe translate="label">
|
146 |
-
<label>Enable Checkout Iframe</label>
|
147 |
-
<frontend_type>select</frontend_type>
|
148 |
-
<source_model>adminhtml/system_config_source_yesno</source_model>
|
149 |
-
<sort_order>6</sort_order>
|
150 |
-
<show_in_default>1</show_in_default>
|
151 |
-
<show_in_website>1</show_in_website>
|
152 |
-
<show_in_store>0</show_in_store>
|
153 |
-
</use_iframe>
|
154 |
-
<model>
|
155 |
-
</model>
|
156 |
-
</fields>
|
157 |
-
</echeckpayment>
|
158 |
-
</groups>
|
159 |
-
</payment>
|
160 |
-
</sections>
|
161 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/local/BluePay/Echeck/sql/echeck_setup/mysql4-install-0.7.0.php
DELETED
@@ -1,49 +0,0 @@
|
|
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 bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
* If you did not receive a copy of the license and are unable to
|
13 |
-
* obtain it through the world-wide-web, please send an email
|
14 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
-
*
|
16 |
-
* DISCLAIMER
|
17 |
-
*
|
18 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
-
* versions in the future. If you wish to customize Magento for your
|
20 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
-
*
|
22 |
-
* @category BluePay
|
23 |
-
* @package BluePay_Echeck
|
24 |
-
* @copyright Copyright (c) 2010 BluePay Processing, LLC (http://www.bluepay.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
|
28 |
-
$installer = $this;
|
29 |
-
/* @var $installer Mage_Core_Model_Resource_Setup */
|
30 |
-
|
31 |
-
$installer->startSetup();
|
32 |
-
|
33 |
-
$installer->run("
|
34 |
-
|
35 |
-
-- DROP TABLE if exists {$this->getTable('echeck_echeckpayment_debug')};
|
36 |
-
CREATE TABLE {$this->getTable('echeck_echeckpayment_debug')} (
|
37 |
-
`debug_id` int(10) unsigned NOT NULL auto_increment,
|
38 |
-
`request_body` text,
|
39 |
-
`response_body` text,
|
40 |
-
`request_serialized` text,
|
41 |
-
`result_serialized` text,
|
42 |
-
`request_dump` text,
|
43 |
-
`result_dump` text,
|
44 |
-
PRIMARY KEY (`debug_id`)
|
45 |
-
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
46 |
-
|
47 |
-
");
|
48 |
-
|
49 |
-
$installer->endSetup();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/adminhtml/default/default/template/bluepay/echeck.phtml
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
<li>
|
4 |
<div class="input-box">
|
5 |
<label for="<?php echo $_code ?>_echeck_routing_number"><?php echo $this->__('Bank Routing Number') ?> <span class="required">*</span></label><br />
|
6 |
-
<input id="<?php echo $_code ?>_echeck_routing_number" name="payment[echeck_routing_number]" class="required-entry"
|
7 |
</div>
|
8 |
</li>
|
9 |
<li>
|
10 |
<div class="input-box">
|
11 |
<label for="<?php echo $_code ?>_echeck_bank_acct_num"><?php echo $this->__('Bank Account Number') ?> <span class="required">*</span></label><br />
|
12 |
-
<input id="<?php echo $_code ?>_echeck_bank_acct_num" name="payment[echeck_bank_acct_num]" class="required-entry"
|
13 |
</div>
|
14 |
</li>
|
15 |
<li>
|
@@ -17,7 +17,7 @@
|
|
17 |
<label for="<?php echo $_code ?>_echeck_account_type"><?php echo $this->__('Account Type') ?> <span class="required">*</span></label><br />
|
18 |
<select id="<?php echo $_code ?>_echeck_account_type" name="payment[echeck_account_type]" class="required-entry">
|
19 |
<option value=""><?php echo $this->__('--Please Select--')?></option>
|
20 |
-
<?php $_accountType = $this->getInfoData('
|
21 |
<?php foreach ($this->getAccountAvailableTypes() as $_typeCode => $_typeName): ?>
|
22 |
<option value="<?php echo $_typeCode ?>"<?php if($_typeCode==$_accountType): ?> selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
|
23 |
<?php endforeach ?>
|
3 |
<li>
|
4 |
<div class="input-box">
|
5 |
<label for="<?php echo $_code ?>_echeck_routing_number"><?php echo $this->__('Bank Routing Number') ?> <span class="required">*</span></label><br />
|
6 |
+
<input id="<?php echo $_code ?>_echeck_routing_number" name="payment[echeck_routing_number]" class="required-entry" value="<?php echo $this->getInfoData('echeck_routing_number')?>"/>
|
7 |
</div>
|
8 |
</li>
|
9 |
<li>
|
10 |
<div class="input-box">
|
11 |
<label for="<?php echo $_code ?>_echeck_bank_acct_num"><?php echo $this->__('Bank Account Number') ?> <span class="required">*</span></label><br />
|
12 |
+
<input id="<?php echo $_code ?>_echeck_bank_acct_num" name="payment[echeck_bank_acct_num]" class="required-entry" value="<?php echo $this->getInfoData('echeck_bank_acct_num')?>"/>
|
13 |
</div>
|
14 |
</li>
|
15 |
<li>
|
17 |
<label for="<?php echo $_code ?>_echeck_account_type"><?php echo $this->__('Account Type') ?> <span class="required">*</span></label><br />
|
18 |
<select id="<?php echo $_code ?>_echeck_account_type" name="payment[echeck_account_type]" class="required-entry">
|
19 |
<option value=""><?php echo $this->__('--Please Select--')?></option>
|
20 |
+
<?php $_accountType = $this->getInfoData('echeck_account_type') ?>
|
21 |
<?php foreach ($this->getAccountAvailableTypes() as $_typeCode => $_typeName): ?>
|
22 |
<option value="<?php echo $_typeCode ?>"<?php if($_typeCode==$_accountType): ?> selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
|
23 |
<?php endforeach ?>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BluePay_Echeck</name>
|
4 |
-
<version>1.5.1.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>
|
10 |
-
<description>
|
11 |
<notes>Fixed compatibility with Credit Card module</notes>
|
12 |
<authors><author><name>Justin Slingerland</name><user>jslingerland</user><email>jslingerland@bluepay.com</email></author></authors>
|
13 |
-
<date>2014-09-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="BluePay_Echeck.xml" hash="252f244ae4f8cba53f883559a23273c7"/></dir></target><target name="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.9</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BluePay_Echeck</name>
|
4 |
+
<version>1.5.1.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Echeck payment module for the BluePay gateway.</summary>
|
10 |
+
<description>Echeck payment module for the BluePay gateway.</description>
|
11 |
<notes>Fixed compatibility with Credit Card module</notes>
|
12 |
<authors><author><name>Justin Slingerland</name><user>jslingerland</user><email>jslingerland@bluepay.com</email></author></authors>
|
13 |
+
<date>2014-09-24</date>
|
14 |
+
<time>16:17:51</time>
|
15 |
+
<contents><target name="mageetc"><dir name="modules"><file name="BluePay_Echeck.xml" hash="252f244ae4f8cba53f883559a23273c7"/></dir></target><target name="mageweb"><dir name="js"><dir name="bluepay_echeck"><file name="bluepay.js" hash="61932dea7f7b14192d33408ad829c3b0"/><dir name="easyXDM"><file name="easyXDM.Widgets.debug.js" hash="26b23561d39a64b926fe8dafea2f0a7b"/><file name="easyXDM.Widgets.js" hash="26b23561d39a64b926fe8dafea2f0a7b"/><file name="easyXDM.Widgets.min.js" hash="790f5fa04af75a8013d0ff5fd6dc770d"/><file name="easyXDM.debug.js" hash="2f74fa97b0aacdfb5e8570e381465905"/><file name="easyXDM.js" hash="499464a0c3d89679c11df6ee5d188df5"/><file name="easyXDM.min.js" hash="e3fd912457d7213fe5ccae7bf0fd0c82"/><file name="name.html" hash="990620350432f6c7e28f1e111ce598c8"/><file name=".gitignore" hash="f256c78995e7e95eb33afc3cee8ff195"/></dir></dir></dir></target><target name="magecore"><dir name="Mage"><dir name="Adminhtml"><dir name="Model"><dir name="System"><dir name="Config"><dir name="Source"><file name="TestmodeACH.php" hash="371db79c030d69b3b19fc4caac4e7ba0"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="bluepay_echeck.xml" hash="4d1a4de9be145ce19db6b28c2cac81e7"/></dir><dir name="template"><dir name="bluepay"><file name="echeck.phtml" hash="2aad3205d674d1dd77b12b55e1d0c49b"/><file name="echeck_form.phtml" hash="297a21924143235abc34f2dbaecc4544"/><file name="echeck_iframe.phtml" hash="59436bef6158dbd19d81daf8dcdfd157"/><file name="buttonach.phtml" hash="544c43035f36042b75b96887b19d3f37"/><file name="echeck_inforeview.phtml" hash="0d29af5174235ded956fea6e92302a54"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="bluepay"><file name="echeck.phtml" hash="b2e6165c19e46e361bebc671010f7d07"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.3.0</min><max>5.6.9</max></php></required></dependencies>
|
18 |
</package>
|