Version Notes
Added American Express logo image for Credit Card payment method.
Added WeChat payment method.
Download this release
Release Info
Developer | KRPartners Co.,Ltd |
Extension | Eximbay |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- app/code/community/Krp/Eximbay/Model/Wct.php +29 -0
- app/code/community/Krp/Eximbay/etc/config.xml +11 -3
- app/code/community/Krp/Eximbay/etc/system.xml +180 -83
- package.xml +6 -5
- skin/frontend/base/default/images/eximbay/eximbay_acc.jpg +0 -0
- skin/frontend/base/default/images/eximbay/eximbay_acc_02.jpg +0 -0
- skin/frontend/base/default/images/eximbay/eximbay_wct.jpg +0 -0
app/code/community/Krp/Eximbay/Model/Wct.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Eximbay, Online Payment Module
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the GNU General Public License (GPL 3.0)
|
8 |
+
* that is available through the world-wide-web at this URL:
|
9 |
+
* http://opensource.org/licenses/GPL-3.0 or http://www.gnu.org/copyleft/gpl.html
|
10 |
+
*
|
11 |
+
* DISCLAIMER
|
12 |
+
*
|
13 |
+
* Do not edit or add to this file if you wish to upgrade Eximbay module to newer
|
14 |
+
* versions in the future. If you wish to customize Eximbay module for your
|
15 |
+
* needs please refer to https://www.eximbay.com for more information.
|
16 |
+
*
|
17 |
+
* @category Krp
|
18 |
+
* @package Krp_Eximbay
|
19 |
+
* @copyright Copyright (c) 2014 KRPartners Co.,Ltd (https://www.eximbay.com)
|
20 |
+
* @license http://opensource.org/licenses/GPL-3.0 GNU General Public License (GPL 3.0)
|
21 |
+
*/
|
22 |
+
class Krp_Eximbay_Model_Wct extends Krp_Eximbay_Model_Abstract
|
23 |
+
{
|
24 |
+
/**
|
25 |
+
* unique internal payment method identifier
|
26 |
+
*/
|
27 |
+
protected $_code = 'eximbay_wct';
|
28 |
+
protected $_paymentMethod = 'P141';
|
29 |
+
}
|
app/code/community/Krp/Eximbay/etc/config.xml
CHANGED
@@ -181,13 +181,21 @@
|
|
181 |
<order_status>processing</order_status>
|
182 |
<sort_order>5</sort_order>
|
183 |
</eximbay_tnp>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
<eximbay_nnb>
|
185 |
<group>xbay</group>
|
186 |
<active>0</active>
|
187 |
<model>eximbay/nnb</model>
|
188 |
<title>99Bill</title>
|
189 |
<order_status>processing</order_status>
|
190 |
-
<sort_order>
|
191 |
</eximbay_nnb>
|
192 |
<eximbay_ecn>
|
193 |
<group>xbay</group>
|
@@ -195,7 +203,7 @@
|
|
195 |
<model>eximbay/ecn</model>
|
196 |
<title>Cash Payment (Japan)</title>
|
197 |
<order_status>processing</order_status>
|
198 |
-
<sort_order>
|
199 |
</eximbay_ecn>
|
200 |
<eximbay_all>
|
201 |
<group>xbay</group>
|
@@ -203,7 +211,7 @@
|
|
203 |
<model>eximbay/all</model>
|
204 |
<title>All-in Payment</title>
|
205 |
<order_status>processing</order_status>
|
206 |
-
<sort_order>
|
207 |
</eximbay_all>
|
208 |
</payment>
|
209 |
<eximbay>
|
181 |
<order_status>processing</order_status>
|
182 |
<sort_order>5</sort_order>
|
183 |
</eximbay_tnp>
|
184 |
+
<eximbay_wct>
|
185 |
+
<group>xbay</group>
|
186 |
+
<active>0</active>
|
187 |
+
<model>eximbay/wct</model>
|
188 |
+
<title>WeChat</title>
|
189 |
+
<order_status>processing</order_status>
|
190 |
+
<sort_order>6</sort_order>
|
191 |
+
</eximbay_wct>
|
192 |
<eximbay_nnb>
|
193 |
<group>xbay</group>
|
194 |
<active>0</active>
|
195 |
<model>eximbay/nnb</model>
|
196 |
<title>99Bill</title>
|
197 |
<order_status>processing</order_status>
|
198 |
+
<sort_order>7</sort_order>
|
199 |
</eximbay_nnb>
|
200 |
<eximbay_ecn>
|
201 |
<group>xbay</group>
|
203 |
<model>eximbay/ecn</model>
|
204 |
<title>Cash Payment (Japan)</title>
|
205 |
<order_status>processing</order_status>
|
206 |
+
<sort_order>8</sort_order>
|
207 |
</eximbay_ecn>
|
208 |
<eximbay_all>
|
209 |
<group>xbay</group>
|
211 |
<model>eximbay/all</model>
|
212 |
<title>All-in Payment</title>
|
213 |
<order_status>processing</order_status>
|
214 |
+
<sort_order>9</sort_order>
|
215 |
</eximbay_all>
|
216 |
</payment>
|
217 |
<eximbay>
|
app/code/community/Krp/Eximbay/etc/system.xml
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
<payment>
|
27 |
<groups>
|
28 |
<eximbay_acc translate="label" module="eximbay">
|
29 |
-
<label>Credit Cards/ Visa, Mastercard, JCB (Powered by Eximbay)</label>
|
30 |
<frontend_type>text</frontend_type>
|
31 |
<sort_order>50</sort_order>
|
32 |
<show_in_default>1</show_in_default>
|
@@ -50,8 +50,8 @@
|
|
50 |
<frontend_type>text</frontend_type>
|
51 |
<config_path>payment/eximbay_acc/title</config_path>
|
52 |
<sort_order>2</sort_order>
|
53 |
-
<show_in_default>
|
54 |
-
<show_in_website>
|
55 |
<show_in_store>0</show_in_store>
|
56 |
</title>
|
57 |
<mid translate="label">
|
@@ -83,8 +83,8 @@
|
|
83 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
84 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
85 |
<sort_order>5</sort_order>
|
86 |
-
<show_in_default>
|
87 |
-
<show_in_website>
|
88 |
<show_in_store>0</show_in_store>
|
89 |
</order_status>
|
90 |
<test translate="label">
|
@@ -105,13 +105,13 @@
|
|
105 |
<config_path>payment/eximbay_acc/ver</config_path>
|
106 |
<source_model>eximbay/version</source_model>
|
107 |
<sort_order>7</sort_order>
|
108 |
-
<show_in_default>
|
109 |
-
<show_in_website>
|
110 |
<show_in_store>0</show_in_store>
|
111 |
</ver>
|
112 |
<localpayment translate="label">
|
113 |
<label>Korean Local Payment</label>
|
114 |
-
<comment>If you prefer Korean Local Card Payment over Global Payment, choose 'Yes'
|
115 |
<frontend_type>select</frontend_type>
|
116 |
<config_path>payment/eximbay_acc/localpayment</config_path>
|
117 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
@@ -131,24 +131,6 @@
|
|
131 |
<show_in_website>1</show_in_website>
|
132 |
<show_in_store>0</show_in_store>
|
133 |
</dtype>
|
134 |
-
<!--<currency translate="label">
|
135 |
-
<label>Accepted Currency</label>
|
136 |
-
<frontend_type>select</frontend_type>
|
137 |
-
<source_model>adminhtml/system_config_source_currency</source_model>
|
138 |
-
<sort_order>10</sort_order>
|
139 |
-
<show_in_default>1</show_in_default>
|
140 |
-
<show_in_website>1</show_in_website>
|
141 |
-
<show_in_store>1</show_in_store>
|
142 |
-
</currency>-->
|
143 |
-
<!--<cctypes translate="label">
|
144 |
-
<label>Credit Card Types</label>
|
145 |
-
<frontend_type>multiselect</frontend_type>
|
146 |
-
<source_model>paygate/authorizenet_source_cctype</source_model>
|
147 |
-
<sort_order>11</sort_order>
|
148 |
-
<show_in_default>1</show_in_default>
|
149 |
-
<show_in_website>1</show_in_website>
|
150 |
-
<show_in_store>1</show_in_store>
|
151 |
-
</cctypes>-->
|
152 |
<allowspecific translate="label">
|
153 |
<label>Payment from applicable countries</label>
|
154 |
<frontend_type>allowspecific</frontend_type>
|
@@ -194,8 +176,8 @@
|
|
194 |
<frontend_type>text</frontend_type>
|
195 |
<config_path>payment/eximbay_ppl/title</config_path>
|
196 |
<sort_order>2</sort_order>
|
197 |
-
<show_in_default>
|
198 |
-
<show_in_website>
|
199 |
<show_in_store>0</show_in_store>
|
200 |
</title>
|
201 |
<mid translate="label">
|
@@ -227,8 +209,8 @@
|
|
227 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
228 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
229 |
<sort_order>5</sort_order>
|
230 |
-
<show_in_default>
|
231 |
-
<show_in_website>
|
232 |
<show_in_store>0</show_in_store>
|
233 |
</order_status>
|
234 |
<test translate="label">
|
@@ -249,8 +231,8 @@
|
|
249 |
<config_path>payment/eximbay_ppl/ver</config_path>
|
250 |
<source_model>eximbay/version</source_model>
|
251 |
<sort_order>7</sort_order>
|
252 |
-
<show_in_default>
|
253 |
-
<show_in_website>
|
254 |
<show_in_store>0</show_in_store>
|
255 |
</ver>
|
256 |
<dtype translate="label">
|
@@ -267,7 +249,7 @@
|
|
267 |
<allowspecific translate="label">
|
268 |
<label>Payment from applicable countries</label>
|
269 |
<frontend_type>allowspecific</frontend_type>
|
270 |
-
<sort_order>
|
271 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
272 |
<show_in_default>1</show_in_default>
|
273 |
<show_in_website>1</show_in_website>
|
@@ -276,7 +258,7 @@
|
|
276 |
<specificcountry translate="label">
|
277 |
<label>Payment from Specific countries</label>
|
278 |
<frontend_type>multiselect</frontend_type>
|
279 |
-
<sort_order>
|
280 |
<source_model>adminhtml/system_config_source_country</source_model>
|
281 |
<show_in_default>1</show_in_default>
|
282 |
<show_in_website>1</show_in_website>
|
@@ -309,8 +291,8 @@
|
|
309 |
<frontend_type>text</frontend_type>
|
310 |
<config_path>payment/eximbay_cup/title</config_path>
|
311 |
<sort_order>2</sort_order>
|
312 |
-
<show_in_default>
|
313 |
-
<show_in_website>
|
314 |
<show_in_store>0</show_in_store>
|
315 |
</title>
|
316 |
<mid translate="label">
|
@@ -342,8 +324,8 @@
|
|
342 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
343 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
344 |
<sort_order>5</sort_order>
|
345 |
-
<show_in_default>
|
346 |
-
<show_in_website>
|
347 |
<show_in_store>0</show_in_store>
|
348 |
</order_status>
|
349 |
<test translate="label">
|
@@ -364,8 +346,8 @@
|
|
364 |
<config_path>payment/eximbay_cup/ver</config_path>
|
365 |
<source_model>eximbay/version</source_model>
|
366 |
<sort_order>7</sort_order>
|
367 |
-
<show_in_default>
|
368 |
-
<show_in_website>
|
369 |
<show_in_store>0</show_in_store>
|
370 |
</ver>
|
371 |
<dtype translate="label">
|
@@ -382,7 +364,7 @@
|
|
382 |
<allowspecific translate="label">
|
383 |
<label>Payment from applicable countries</label>
|
384 |
<frontend_type>allowspecific</frontend_type>
|
385 |
-
<sort_order>
|
386 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
387 |
<show_in_default>1</show_in_default>
|
388 |
<show_in_website>1</show_in_website>
|
@@ -391,7 +373,7 @@
|
|
391 |
<specificcountry translate="label">
|
392 |
<label>Payment from Specific countries</label>
|
393 |
<frontend_type>multiselect</frontend_type>
|
394 |
-
<sort_order>
|
395 |
<source_model>adminhtml/system_config_source_country</source_model>
|
396 |
<show_in_default>1</show_in_default>
|
397 |
<show_in_website>1</show_in_website>
|
@@ -424,8 +406,8 @@
|
|
424 |
<frontend_type>text</frontend_type>
|
425 |
<config_path>payment/eximbay_alp/title</config_path>
|
426 |
<sort_order>2</sort_order>
|
427 |
-
<show_in_default>
|
428 |
-
<show_in_website>
|
429 |
<show_in_store>0</show_in_store>
|
430 |
</title>
|
431 |
<mid translate="label">
|
@@ -457,8 +439,8 @@
|
|
457 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
458 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
459 |
<sort_order>5</sort_order>
|
460 |
-
<show_in_default>
|
461 |
-
<show_in_website>
|
462 |
<show_in_store>0</show_in_store>
|
463 |
</order_status>
|
464 |
<test translate="label">
|
@@ -479,8 +461,8 @@
|
|
479 |
<config_path>payment/eximbay_alp/ver</config_path>
|
480 |
<source_model>eximbay/version</source_model>
|
481 |
<sort_order>7</sort_order>
|
482 |
-
<show_in_default>
|
483 |
-
<show_in_website>
|
484 |
<show_in_store>0</show_in_store>
|
485 |
</ver>
|
486 |
<dtype translate="label">
|
@@ -497,7 +479,7 @@
|
|
497 |
<allowspecific translate="label">
|
498 |
<label>Payment from applicable countries</label>
|
499 |
<frontend_type>allowspecific</frontend_type>
|
500 |
-
<sort_order>
|
501 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
502 |
<show_in_default>1</show_in_default>
|
503 |
<show_in_website>1</show_in_website>
|
@@ -506,7 +488,7 @@
|
|
506 |
<specificcountry translate="label">
|
507 |
<label>Payment from Specific countries</label>
|
508 |
<frontend_type>multiselect</frontend_type>
|
509 |
-
<sort_order>
|
510 |
<source_model>adminhtml/system_config_source_country</source_model>
|
511 |
<show_in_default>1</show_in_default>
|
512 |
<show_in_website>1</show_in_website>
|
@@ -539,8 +521,8 @@
|
|
539 |
<frontend_type>text</frontend_type>
|
540 |
<config_path>payment/eximbay_tnp/title</config_path>
|
541 |
<sort_order>2</sort_order>
|
542 |
-
<show_in_default>
|
543 |
-
<show_in_website>
|
544 |
<show_in_store>0</show_in_store>
|
545 |
</title>
|
546 |
<mid translate="label">
|
@@ -572,8 +554,8 @@
|
|
572 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
573 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
574 |
<sort_order>5</sort_order>
|
575 |
-
<show_in_default>
|
576 |
-
<show_in_website>
|
577 |
<show_in_store>0</show_in_store>
|
578 |
</order_status>
|
579 |
<test translate="label">
|
@@ -594,8 +576,8 @@
|
|
594 |
<config_path>payment/eximbay_tnp/ver</config_path>
|
595 |
<source_model>eximbay/version</source_model>
|
596 |
<sort_order>7</sort_order>
|
597 |
-
<show_in_default>
|
598 |
-
<show_in_website>
|
599 |
<show_in_store>0</show_in_store>
|
600 |
</ver>
|
601 |
<dtype translate="label">
|
@@ -612,7 +594,7 @@
|
|
612 |
<allowspecific translate="label">
|
613 |
<label>Payment from applicable countries</label>
|
614 |
<frontend_type>allowspecific</frontend_type>
|
615 |
-
<sort_order>
|
616 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
617 |
<show_in_default>1</show_in_default>
|
618 |
<show_in_website>1</show_in_website>
|
@@ -621,7 +603,7 @@
|
|
621 |
<specificcountry translate="label">
|
622 |
<label>Payment from Specific countries</label>
|
623 |
<frontend_type>multiselect</frontend_type>
|
624 |
-
<sort_order>
|
625 |
<source_model>adminhtml/system_config_source_country</source_model>
|
626 |
<show_in_default>1</show_in_default>
|
627 |
<show_in_website>1</show_in_website>
|
@@ -629,10 +611,125 @@
|
|
629 |
</specificcountry>
|
630 |
</fields>
|
631 |
</eximbay_tnp>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
<eximbay_nnb translate="label" module="eximbay">
|
633 |
<label>99Bill (Powered by Eximbay)</label>
|
634 |
<frontend_type>text</frontend_type>
|
635 |
-
<sort_order>
|
636 |
<show_in_default>1</show_in_default>
|
637 |
<show_in_website>1</show_in_website>
|
638 |
<show_in_store>0</show_in_store>
|
@@ -654,8 +751,8 @@
|
|
654 |
<frontend_type>text</frontend_type>
|
655 |
<config_path>payment/eximbay_nnb/title</config_path>
|
656 |
<sort_order>2</sort_order>
|
657 |
-
<show_in_default>
|
658 |
-
<show_in_website>
|
659 |
<show_in_store>0</show_in_store>
|
660 |
</title>
|
661 |
<mid translate="label">
|
@@ -687,8 +784,8 @@
|
|
687 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
688 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
689 |
<sort_order>5</sort_order>
|
690 |
-
<show_in_default>
|
691 |
-
<show_in_website>
|
692 |
<show_in_store>0</show_in_store>
|
693 |
</order_status>
|
694 |
<test translate="label">
|
@@ -709,8 +806,8 @@
|
|
709 |
<config_path>payment/eximbay_nnb/ver</config_path>
|
710 |
<source_model>eximbay/version</source_model>
|
711 |
<sort_order>7</sort_order>
|
712 |
-
<show_in_default>
|
713 |
-
<show_in_website>
|
714 |
<show_in_store>0</show_in_store>
|
715 |
</ver>
|
716 |
<dtype translate="label">
|
@@ -727,7 +824,7 @@
|
|
727 |
<allowspecific translate="label">
|
728 |
<label>Payment from applicable countries</label>
|
729 |
<frontend_type>allowspecific</frontend_type>
|
730 |
-
<sort_order>
|
731 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
732 |
<show_in_default>1</show_in_default>
|
733 |
<show_in_website>1</show_in_website>
|
@@ -736,7 +833,7 @@
|
|
736 |
<specificcountry translate="label">
|
737 |
<label>Payment from Specific countries</label>
|
738 |
<frontend_type>multiselect</frontend_type>
|
739 |
-
<sort_order>
|
740 |
<source_model>adminhtml/system_config_source_country</source_model>
|
741 |
<show_in_default>1</show_in_default>
|
742 |
<show_in_website>1</show_in_website>
|
@@ -747,7 +844,7 @@
|
|
747 |
<eximbay_ecn translate="label" module="eximbay">
|
748 |
<label>Cash Payment - Japan (Powered by Eximbay)</label>
|
749 |
<frontend_type>text</frontend_type>
|
750 |
-
<sort_order>
|
751 |
<show_in_default>1</show_in_default>
|
752 |
<show_in_website>1</show_in_website>
|
753 |
<show_in_store>0</show_in_store>
|
@@ -769,8 +866,8 @@
|
|
769 |
<frontend_type>text</frontend_type>
|
770 |
<config_path>payment/eximbay_ecn/title</config_path>
|
771 |
<sort_order>2</sort_order>
|
772 |
-
<show_in_default>
|
773 |
-
<show_in_website>
|
774 |
<show_in_store>0</show_in_store>
|
775 |
</title>
|
776 |
<mid translate="label">
|
@@ -802,8 +899,8 @@
|
|
802 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
803 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
804 |
<sort_order>5</sort_order>
|
805 |
-
<show_in_default>
|
806 |
-
<show_in_website>
|
807 |
<show_in_store>0</show_in_store>
|
808 |
</order_status>
|
809 |
<test translate="label">
|
@@ -824,8 +921,8 @@
|
|
824 |
<config_path>payment/eximbay_ecn/ver</config_path>
|
825 |
<source_model>eximbay/version</source_model>
|
826 |
<sort_order>7</sort_order>
|
827 |
-
<show_in_default>
|
828 |
-
<show_in_website>
|
829 |
<show_in_store>0</show_in_store>
|
830 |
</ver>
|
831 |
<dtype translate="label">
|
@@ -842,7 +939,7 @@
|
|
842 |
<allowspecific translate="label">
|
843 |
<label>Payment from applicable countries</label>
|
844 |
<frontend_type>allowspecific</frontend_type>
|
845 |
-
<sort_order>
|
846 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
847 |
<show_in_default>1</show_in_default>
|
848 |
<show_in_website>1</show_in_website>
|
@@ -851,7 +948,7 @@
|
|
851 |
<specificcountry translate="label">
|
852 |
<label>Payment from Specific countries</label>
|
853 |
<frontend_type>multiselect</frontend_type>
|
854 |
-
<sort_order>
|
855 |
<source_model>adminhtml/system_config_source_country</source_model>
|
856 |
<show_in_default>1</show_in_default>
|
857 |
<show_in_website>1</show_in_website>
|
@@ -862,7 +959,7 @@
|
|
862 |
<eximbay_all translate="label" module="eximbay">
|
863 |
<label>All-in Payment (Powered by Eximbay)</label>
|
864 |
<frontend_type>text</frontend_type>
|
865 |
-
<sort_order>
|
866 |
<show_in_default>1</show_in_default>
|
867 |
<show_in_website>1</show_in_website>
|
868 |
<show_in_store>0</show_in_store>
|
@@ -917,8 +1014,8 @@
|
|
917 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
918 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
919 |
<sort_order>5</sort_order>
|
920 |
-
<show_in_default>
|
921 |
-
<show_in_website>
|
922 |
<show_in_store>0</show_in_store>
|
923 |
</order_status>
|
924 |
<test translate="label">
|
@@ -939,8 +1036,8 @@
|
|
939 |
<config_path>payment/eximbay_all/ver</config_path>
|
940 |
<source_model>eximbay/version</source_model>
|
941 |
<sort_order>7</sort_order>
|
942 |
-
<show_in_default>
|
943 |
-
<show_in_website>
|
944 |
<show_in_store>0</show_in_store>
|
945 |
</ver>
|
946 |
<dtype translate="label">
|
@@ -957,7 +1054,7 @@
|
|
957 |
<allowspecific translate="label">
|
958 |
<label>Payment from applicable countries</label>
|
959 |
<frontend_type>allowspecific</frontend_type>
|
960 |
-
<sort_order>
|
961 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
962 |
<show_in_default>1</show_in_default>
|
963 |
<show_in_website>1</show_in_website>
|
@@ -966,7 +1063,7 @@
|
|
966 |
<specificcountry translate="label">
|
967 |
<label>Payment from Specific countries</label>
|
968 |
<frontend_type>multiselect</frontend_type>
|
969 |
-
<sort_order>
|
970 |
<source_model>adminhtml/system_config_source_country</source_model>
|
971 |
<show_in_default>1</show_in_default>
|
972 |
<show_in_website>1</show_in_website>
|
26 |
<payment>
|
27 |
<groups>
|
28 |
<eximbay_acc translate="label" module="eximbay">
|
29 |
+
<label>Credit Cards/ Visa, Mastercard, JCB, Amex ... (Powered by Eximbay)</label>
|
30 |
<frontend_type>text</frontend_type>
|
31 |
<sort_order>50</sort_order>
|
32 |
<show_in_default>1</show_in_default>
|
50 |
<frontend_type>text</frontend_type>
|
51 |
<config_path>payment/eximbay_acc/title</config_path>
|
52 |
<sort_order>2</sort_order>
|
53 |
+
<show_in_default>1</show_in_default>
|
54 |
+
<show_in_website>1</show_in_website>
|
55 |
<show_in_store>0</show_in_store>
|
56 |
</title>
|
57 |
<mid translate="label">
|
83 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
84 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
85 |
<sort_order>5</sort_order>
|
86 |
+
<show_in_default>0</show_in_default>
|
87 |
+
<show_in_website>0</show_in_website>
|
88 |
<show_in_store>0</show_in_store>
|
89 |
</order_status>
|
90 |
<test translate="label">
|
105 |
<config_path>payment/eximbay_acc/ver</config_path>
|
106 |
<source_model>eximbay/version</source_model>
|
107 |
<sort_order>7</sort_order>
|
108 |
+
<show_in_default>0</show_in_default>
|
109 |
+
<show_in_website>0</show_in_website>
|
110 |
<show_in_store>0</show_in_store>
|
111 |
</ver>
|
112 |
<localpayment translate="label">
|
113 |
<label>Korean Local Payment</label>
|
114 |
+
<comment>If you prefer Korean Local Card Payment over Global Payment, choose 'Yes'.</comment>
|
115 |
<frontend_type>select</frontend_type>
|
116 |
<config_path>payment/eximbay_acc/localpayment</config_path>
|
117 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
131 |
<show_in_website>1</show_in_website>
|
132 |
<show_in_store>0</show_in_store>
|
133 |
</dtype>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
<allowspecific translate="label">
|
135 |
<label>Payment from applicable countries</label>
|
136 |
<frontend_type>allowspecific</frontend_type>
|
176 |
<frontend_type>text</frontend_type>
|
177 |
<config_path>payment/eximbay_ppl/title</config_path>
|
178 |
<sort_order>2</sort_order>
|
179 |
+
<show_in_default>1</show_in_default>
|
180 |
+
<show_in_website>1</show_in_website>
|
181 |
<show_in_store>0</show_in_store>
|
182 |
</title>
|
183 |
<mid translate="label">
|
209 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
210 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
211 |
<sort_order>5</sort_order>
|
212 |
+
<show_in_default>0</show_in_default>
|
213 |
+
<show_in_website>0</show_in_website>
|
214 |
<show_in_store>0</show_in_store>
|
215 |
</order_status>
|
216 |
<test translate="label">
|
231 |
<config_path>payment/eximbay_ppl/ver</config_path>
|
232 |
<source_model>eximbay/version</source_model>
|
233 |
<sort_order>7</sort_order>
|
234 |
+
<show_in_default>0</show_in_default>
|
235 |
+
<show_in_website>0</show_in_website>
|
236 |
<show_in_store>0</show_in_store>
|
237 |
</ver>
|
238 |
<dtype translate="label">
|
249 |
<allowspecific translate="label">
|
250 |
<label>Payment from applicable countries</label>
|
251 |
<frontend_type>allowspecific</frontend_type>
|
252 |
+
<sort_order>9</sort_order>
|
253 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
254 |
<show_in_default>1</show_in_default>
|
255 |
<show_in_website>1</show_in_website>
|
258 |
<specificcountry translate="label">
|
259 |
<label>Payment from Specific countries</label>
|
260 |
<frontend_type>multiselect</frontend_type>
|
261 |
+
<sort_order>10</sort_order>
|
262 |
<source_model>adminhtml/system_config_source_country</source_model>
|
263 |
<show_in_default>1</show_in_default>
|
264 |
<show_in_website>1</show_in_website>
|
291 |
<frontend_type>text</frontend_type>
|
292 |
<config_path>payment/eximbay_cup/title</config_path>
|
293 |
<sort_order>2</sort_order>
|
294 |
+
<show_in_default>1</show_in_default>
|
295 |
+
<show_in_website>1</show_in_website>
|
296 |
<show_in_store>0</show_in_store>
|
297 |
</title>
|
298 |
<mid translate="label">
|
324 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
325 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
326 |
<sort_order>5</sort_order>
|
327 |
+
<show_in_default>0</show_in_default>
|
328 |
+
<show_in_website>0</show_in_website>
|
329 |
<show_in_store>0</show_in_store>
|
330 |
</order_status>
|
331 |
<test translate="label">
|
346 |
<config_path>payment/eximbay_cup/ver</config_path>
|
347 |
<source_model>eximbay/version</source_model>
|
348 |
<sort_order>7</sort_order>
|
349 |
+
<show_in_default>0</show_in_default>
|
350 |
+
<show_in_website>0</show_in_website>
|
351 |
<show_in_store>0</show_in_store>
|
352 |
</ver>
|
353 |
<dtype translate="label">
|
364 |
<allowspecific translate="label">
|
365 |
<label>Payment from applicable countries</label>
|
366 |
<frontend_type>allowspecific</frontend_type>
|
367 |
+
<sort_order>9</sort_order>
|
368 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
369 |
<show_in_default>1</show_in_default>
|
370 |
<show_in_website>1</show_in_website>
|
373 |
<specificcountry translate="label">
|
374 |
<label>Payment from Specific countries</label>
|
375 |
<frontend_type>multiselect</frontend_type>
|
376 |
+
<sort_order>10</sort_order>
|
377 |
<source_model>adminhtml/system_config_source_country</source_model>
|
378 |
<show_in_default>1</show_in_default>
|
379 |
<show_in_website>1</show_in_website>
|
406 |
<frontend_type>text</frontend_type>
|
407 |
<config_path>payment/eximbay_alp/title</config_path>
|
408 |
<sort_order>2</sort_order>
|
409 |
+
<show_in_default>1</show_in_default>
|
410 |
+
<show_in_website>1</show_in_website>
|
411 |
<show_in_store>0</show_in_store>
|
412 |
</title>
|
413 |
<mid translate="label">
|
439 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
440 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
441 |
<sort_order>5</sort_order>
|
442 |
+
<show_in_default>0</show_in_default>
|
443 |
+
<show_in_website>0</show_in_website>
|
444 |
<show_in_store>0</show_in_store>
|
445 |
</order_status>
|
446 |
<test translate="label">
|
461 |
<config_path>payment/eximbay_alp/ver</config_path>
|
462 |
<source_model>eximbay/version</source_model>
|
463 |
<sort_order>7</sort_order>
|
464 |
+
<show_in_default>0</show_in_default>
|
465 |
+
<show_in_website>0</show_in_website>
|
466 |
<show_in_store>0</show_in_store>
|
467 |
</ver>
|
468 |
<dtype translate="label">
|
479 |
<allowspecific translate="label">
|
480 |
<label>Payment from applicable countries</label>
|
481 |
<frontend_type>allowspecific</frontend_type>
|
482 |
+
<sort_order>9</sort_order>
|
483 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
484 |
<show_in_default>1</show_in_default>
|
485 |
<show_in_website>1</show_in_website>
|
488 |
<specificcountry translate="label">
|
489 |
<label>Payment from Specific countries</label>
|
490 |
<frontend_type>multiselect</frontend_type>
|
491 |
+
<sort_order>10</sort_order>
|
492 |
<source_model>adminhtml/system_config_source_country</source_model>
|
493 |
<show_in_default>1</show_in_default>
|
494 |
<show_in_website>1</show_in_website>
|
521 |
<frontend_type>text</frontend_type>
|
522 |
<config_path>payment/eximbay_tnp/title</config_path>
|
523 |
<sort_order>2</sort_order>
|
524 |
+
<show_in_default>1</show_in_default>
|
525 |
+
<show_in_website>1</show_in_website>
|
526 |
<show_in_store>0</show_in_store>
|
527 |
</title>
|
528 |
<mid translate="label">
|
554 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
555 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
556 |
<sort_order>5</sort_order>
|
557 |
+
<show_in_default>0</show_in_default>
|
558 |
+
<show_in_website>0</show_in_website>
|
559 |
<show_in_store>0</show_in_store>
|
560 |
</order_status>
|
561 |
<test translate="label">
|
576 |
<config_path>payment/eximbay_tnp/ver</config_path>
|
577 |
<source_model>eximbay/version</source_model>
|
578 |
<sort_order>7</sort_order>
|
579 |
+
<show_in_default>0</show_in_default>
|
580 |
+
<show_in_website>0</show_in_website>
|
581 |
<show_in_store>0</show_in_store>
|
582 |
</ver>
|
583 |
<dtype translate="label">
|
594 |
<allowspecific translate="label">
|
595 |
<label>Payment from applicable countries</label>
|
596 |
<frontend_type>allowspecific</frontend_type>
|
597 |
+
<sort_order>9</sort_order>
|
598 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
599 |
<show_in_default>1</show_in_default>
|
600 |
<show_in_website>1</show_in_website>
|
603 |
<specificcountry translate="label">
|
604 |
<label>Payment from Specific countries</label>
|
605 |
<frontend_type>multiselect</frontend_type>
|
606 |
+
<sort_order>10</sort_order>
|
607 |
<source_model>adminhtml/system_config_source_country</source_model>
|
608 |
<show_in_default>1</show_in_default>
|
609 |
<show_in_website>1</show_in_website>
|
611 |
</specificcountry>
|
612 |
</fields>
|
613 |
</eximbay_tnp>
|
614 |
+
<eximbay_wct translate="label" module="eximbay">
|
615 |
+
<label>WeChat (Powered by Eximbay)</label>
|
616 |
+
<frontend_type>text</frontend_type>
|
617 |
+
<sort_order>55</sort_order>
|
618 |
+
<show_in_default>1</show_in_default>
|
619 |
+
<show_in_website>1</show_in_website>
|
620 |
+
<show_in_store>0</show_in_store>
|
621 |
+
<fields>
|
622 |
+
<active translate="label">
|
623 |
+
<label>Enabled</label>
|
624 |
+
<comment>Enable or disable this payment method</comment>
|
625 |
+
<frontend_type>select</frontend_type>
|
626 |
+
<config_path>payment/eximbay_wct/active</config_path>
|
627 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
628 |
+
<sort_order>1</sort_order>
|
629 |
+
<show_in_default>1</show_in_default>
|
630 |
+
<show_in_website>1</show_in_website>
|
631 |
+
<show_in_store>0</show_in_store>
|
632 |
+
</active>
|
633 |
+
<title translate="label">
|
634 |
+
<label>Title</label>
|
635 |
+
<comment>Insert a custom title for this payment method</comment>
|
636 |
+
<frontend_type>text</frontend_type>
|
637 |
+
<config_path>payment/eximbay_wct/title</config_path>
|
638 |
+
<sort_order>2</sort_order>
|
639 |
+
<show_in_default>1</show_in_default>
|
640 |
+
<show_in_website>1</show_in_website>
|
641 |
+
<show_in_store>0</show_in_store>
|
642 |
+
</title>
|
643 |
+
<mid translate="label">
|
644 |
+
<label>Merchant ID</label>
|
645 |
+
<comment>Insert a merchant id provided by Eximbay</comment>
|
646 |
+
<frontend_type>text</frontend_type>
|
647 |
+
<config_path>payment/eximbay_wct/mid</config_path>
|
648 |
+
<sort_order>3</sort_order>
|
649 |
+
<show_in_default>1</show_in_default>
|
650 |
+
<show_in_website>1</show_in_website>
|
651 |
+
<show_in_store>0</show_in_store>
|
652 |
+
</mid>
|
653 |
+
<secret_key translate="label">
|
654 |
+
<label>Secret Key</label>
|
655 |
+
<comment>Insert a secret key provided by Eximbay</comment>
|
656 |
+
<frontend_type>text</frontend_type>
|
657 |
+
<config_path>payment/eximbay_wct/secret_key</config_path>
|
658 |
+
<sort_order>4</sort_order>
|
659 |
+
<show_in_default>1</show_in_default>
|
660 |
+
<show_in_website>1</show_in_website>
|
661 |
+
<show_in_store>0</show_in_store>
|
662 |
+
</secret_key>
|
663 |
+
<order_status translate="label">
|
664 |
+
<label>New order status</label>
|
665 |
+
<comment>Choose your preferred order status</comment>
|
666 |
+
<frontend_type>select</frontend_type>
|
667 |
+
<config_path>payment/eximbay_wct/order_status</config_path>
|
668 |
+
<!--<source_model>adminhtml/system_config_source_order_status</source_model>-->
|
669 |
+
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
670 |
+
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
671 |
+
<sort_order>5</sort_order>
|
672 |
+
<show_in_default>0</show_in_default>
|
673 |
+
<show_in_website>0</show_in_website>
|
674 |
+
<show_in_store>0</show_in_store>
|
675 |
+
</order_status>
|
676 |
+
<test translate="label">
|
677 |
+
<label>Test Mode</label>
|
678 |
+
<comment>If you want to work in test mode, choose 'Yes'. Otherwise, choose 'No'</comment>
|
679 |
+
<frontend_type>select</frontend_type>
|
680 |
+
<config_path>payment/eximbay_wct/test</config_path>
|
681 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
682 |
+
<sort_order>6</sort_order>
|
683 |
+
<show_in_default>1</show_in_default>
|
684 |
+
<show_in_website>1</show_in_website>
|
685 |
+
<show_in_store>0</show_in_store>
|
686 |
+
</test>
|
687 |
+
<ver translate="label">
|
688 |
+
<label>API Version</label>
|
689 |
+
<comment>Insert an Eximbay API version</comment>
|
690 |
+
<frontend_type>select</frontend_type>
|
691 |
+
<config_path>payment/eximbay_wct/ver</config_path>
|
692 |
+
<source_model>eximbay/version</source_model>
|
693 |
+
<sort_order>7</sort_order>
|
694 |
+
<show_in_default>0</show_in_default>
|
695 |
+
<show_in_website>0</show_in_website>
|
696 |
+
<show_in_store>0</show_in_store>
|
697 |
+
</ver>
|
698 |
+
<dtype translate="label">
|
699 |
+
<label>Payment Page Type</label>
|
700 |
+
<comment>Choose your payment page type, IFrame or Popup.</comment>
|
701 |
+
<frontend_type>select</frontend_type>
|
702 |
+
<config_path>payment/eximbay_wct/dtype</config_path>
|
703 |
+
<source_model>eximbay/popup</source_model>
|
704 |
+
<sort_order>8</sort_order>
|
705 |
+
<show_in_default>0</show_in_default>
|
706 |
+
<show_in_website>0</show_in_website>
|
707 |
+
<show_in_store>0</show_in_store>
|
708 |
+
</dtype>
|
709 |
+
<allowspecific translate="label">
|
710 |
+
<label>Payment from applicable countries</label>
|
711 |
+
<frontend_type>allowspecific</frontend_type>
|
712 |
+
<sort_order>9</sort_order>
|
713 |
+
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
714 |
+
<show_in_default>1</show_in_default>
|
715 |
+
<show_in_website>1</show_in_website>
|
716 |
+
<show_in_store>0</show_in_store>
|
717 |
+
</allowspecific>
|
718 |
+
<specificcountry translate="label">
|
719 |
+
<label>Payment from Specific countries</label>
|
720 |
+
<frontend_type>multiselect</frontend_type>
|
721 |
+
<sort_order>10</sort_order>
|
722 |
+
<source_model>adminhtml/system_config_source_country</source_model>
|
723 |
+
<show_in_default>1</show_in_default>
|
724 |
+
<show_in_website>1</show_in_website>
|
725 |
+
<show_in_store>0</show_in_store>
|
726 |
+
</specificcountry>
|
727 |
+
</fields>
|
728 |
+
</eximbay_wct>
|
729 |
<eximbay_nnb translate="label" module="eximbay">
|
730 |
<label>99Bill (Powered by Eximbay)</label>
|
731 |
<frontend_type>text</frontend_type>
|
732 |
+
<sort_order>56</sort_order>
|
733 |
<show_in_default>1</show_in_default>
|
734 |
<show_in_website>1</show_in_website>
|
735 |
<show_in_store>0</show_in_store>
|
751 |
<frontend_type>text</frontend_type>
|
752 |
<config_path>payment/eximbay_nnb/title</config_path>
|
753 |
<sort_order>2</sort_order>
|
754 |
+
<show_in_default>1</show_in_default>
|
755 |
+
<show_in_website>1</show_in_website>
|
756 |
<show_in_store>0</show_in_store>
|
757 |
</title>
|
758 |
<mid translate="label">
|
784 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
785 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
786 |
<sort_order>5</sort_order>
|
787 |
+
<show_in_default>0</show_in_default>
|
788 |
+
<show_in_website>0</show_in_website>
|
789 |
<show_in_store>0</show_in_store>
|
790 |
</order_status>
|
791 |
<test translate="label">
|
806 |
<config_path>payment/eximbay_nnb/ver</config_path>
|
807 |
<source_model>eximbay/version</source_model>
|
808 |
<sort_order>7</sort_order>
|
809 |
+
<show_in_default>0</show_in_default>
|
810 |
+
<show_in_website>0</show_in_website>
|
811 |
<show_in_store>0</show_in_store>
|
812 |
</ver>
|
813 |
<dtype translate="label">
|
824 |
<allowspecific translate="label">
|
825 |
<label>Payment from applicable countries</label>
|
826 |
<frontend_type>allowspecific</frontend_type>
|
827 |
+
<sort_order>9</sort_order>
|
828 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
829 |
<show_in_default>1</show_in_default>
|
830 |
<show_in_website>1</show_in_website>
|
833 |
<specificcountry translate="label">
|
834 |
<label>Payment from Specific countries</label>
|
835 |
<frontend_type>multiselect</frontend_type>
|
836 |
+
<sort_order>10</sort_order>
|
837 |
<source_model>adminhtml/system_config_source_country</source_model>
|
838 |
<show_in_default>1</show_in_default>
|
839 |
<show_in_website>1</show_in_website>
|
844 |
<eximbay_ecn translate="label" module="eximbay">
|
845 |
<label>Cash Payment - Japan (Powered by Eximbay)</label>
|
846 |
<frontend_type>text</frontend_type>
|
847 |
+
<sort_order>57</sort_order>
|
848 |
<show_in_default>1</show_in_default>
|
849 |
<show_in_website>1</show_in_website>
|
850 |
<show_in_store>0</show_in_store>
|
866 |
<frontend_type>text</frontend_type>
|
867 |
<config_path>payment/eximbay_ecn/title</config_path>
|
868 |
<sort_order>2</sort_order>
|
869 |
+
<show_in_default>1</show_in_default>
|
870 |
+
<show_in_website>1</show_in_website>
|
871 |
<show_in_store>0</show_in_store>
|
872 |
</title>
|
873 |
<mid translate="label">
|
899 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
900 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
901 |
<sort_order>5</sort_order>
|
902 |
+
<show_in_default>0</show_in_default>
|
903 |
+
<show_in_website>0</show_in_website>
|
904 |
<show_in_store>0</show_in_store>
|
905 |
</order_status>
|
906 |
<test translate="label">
|
921 |
<config_path>payment/eximbay_ecn/ver</config_path>
|
922 |
<source_model>eximbay/version</source_model>
|
923 |
<sort_order>7</sort_order>
|
924 |
+
<show_in_default>0</show_in_default>
|
925 |
+
<show_in_website>0</show_in_website>
|
926 |
<show_in_store>0</show_in_store>
|
927 |
</ver>
|
928 |
<dtype translate="label">
|
939 |
<allowspecific translate="label">
|
940 |
<label>Payment from applicable countries</label>
|
941 |
<frontend_type>allowspecific</frontend_type>
|
942 |
+
<sort_order>9</sort_order>
|
943 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
944 |
<show_in_default>1</show_in_default>
|
945 |
<show_in_website>1</show_in_website>
|
948 |
<specificcountry translate="label">
|
949 |
<label>Payment from Specific countries</label>
|
950 |
<frontend_type>multiselect</frontend_type>
|
951 |
+
<sort_order>10</sort_order>
|
952 |
<source_model>adminhtml/system_config_source_country</source_model>
|
953 |
<show_in_default>1</show_in_default>
|
954 |
<show_in_website>1</show_in_website>
|
959 |
<eximbay_all translate="label" module="eximbay">
|
960 |
<label>All-in Payment (Powered by Eximbay)</label>
|
961 |
<frontend_type>text</frontend_type>
|
962 |
+
<sort_order>58</sort_order>
|
963 |
<show_in_default>1</show_in_default>
|
964 |
<show_in_website>1</show_in_website>
|
965 |
<show_in_store>0</show_in_store>
|
1014 |
<!--<source_model>adminhtml/system_config_source_order_status_new</source_model>-->
|
1015 |
<source_model>adminhtml/system_config_source_order_status_processing</source_model>
|
1016 |
<sort_order>5</sort_order>
|
1017 |
+
<show_in_default>0</show_in_default>
|
1018 |
+
<show_in_website>0</show_in_website>
|
1019 |
<show_in_store>0</show_in_store>
|
1020 |
</order_status>
|
1021 |
<test translate="label">
|
1036 |
<config_path>payment/eximbay_all/ver</config_path>
|
1037 |
<source_model>eximbay/version</source_model>
|
1038 |
<sort_order>7</sort_order>
|
1039 |
+
<show_in_default>0</show_in_default>
|
1040 |
+
<show_in_website>0</show_in_website>
|
1041 |
<show_in_store>0</show_in_store>
|
1042 |
</ver>
|
1043 |
<dtype translate="label">
|
1054 |
<allowspecific translate="label">
|
1055 |
<label>Payment from applicable countries</label>
|
1056 |
<frontend_type>allowspecific</frontend_type>
|
1057 |
+
<sort_order>9</sort_order>
|
1058 |
<source_model>adminhtml/system_config_source_payment_allspecificcountries</source_model>
|
1059 |
<show_in_default>1</show_in_default>
|
1060 |
<show_in_website>1</show_in_website>
|
1063 |
<specificcountry translate="label">
|
1064 |
<label>Payment from Specific countries</label>
|
1065 |
<frontend_type>multiselect</frontend_type>
|
1066 |
+
<sort_order>10</sort_order>
|
1067 |
<source_model>adminhtml/system_config_source_country</source_model>
|
1068 |
<show_in_default>1</show_in_default>
|
1069 |
<show_in_website>1</show_in_website>
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eximbay</name>
|
4 |
-
<version>2.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-license.php">GNU General Public License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Official Eximbay Payment Extension</summary>
|
10 |
<description>This payment module offers a variety of popular payment methods for online merchants.</description>
|
11 |
-
<notes>Added
|
|
|
12 |
<authors><author><name>KRPartners Co.,Ltd</name><user>prokod1</user><email>prokod@kr.net</email></author></authors>
|
13 |
-
<date>2015-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Krp"><dir name="Eximbay"><dir name="Block"><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="907991b8d3763968006af490eb803a32"/></dir></dir></dir><file name="Form.php" hash="f6a8a89d07384accc0501a6806fb8a58"/><file name="Info.php" hash="2a74edc39a49612eca820a6826d03a93"/><file name="Jsinit.php" hash="f5e7e6864d9a66fdeb760865885eb028"/><file name="Payment.php" hash="e55e4e8c36ac4e3a8372723cc7e34fbc"/><file name="Placeform.php" hash="22e9a71ba8d56e338b273df0a31d408e"/><file name="Redirect.php" hash="ed0a1ae878f925001dda455bdcee7281"/></dir><dir name="Helper"><file name="Data.php" hash="39b50d67f2f0ce838900530ded9cb5f7"/><file name="Ppp.php" hash="2209927ca48e88ea8312cb3babb3cac5"/></dir><dir name="Model"><file name="Abstract.php" hash="a59ea03fa4beceaa21f7c7cc8e4c78a7"/><file name="Acc.php" hash="e01ef19e450cc81d7abea76716a68ee3"/><file name="All.php" hash="4a1fe99522a07b0594f62a5fc93d7279"/><file name="Alp.php" hash="fc5e746a521d7e8fe609d56dd8971fb2"/><file name="Cup.php" hash="3e61b570bf9ec0f47a8282b289c5cbc2"/><file name="Ecn.php" hash="8c81daff5feccef2173f7afe399d2b4d"/><file name="Event.php" hash="8da091dc77e42a34c94b81c2c88e6383"/><file name="Nnb.php" hash="dbfd83d3c79479decb81ecd2198a3f31"/><file name="Popup.php" hash="26b4d183cdaebcd6a66e3ccc97570be8"/><file name="Popupiframe.php" hash="fceb0e286d5c7f2d47937dc24763d276"/><file name="Ppl.php" hash="67a14f356dbc79d54b3ad8448416bca6"/><file name="Tnp.php" hash="f5a167e11ec3c37b16d87ac4284f1f95"/><file name="Version.php" hash="d38c79d0ec939a8ee32491b5a54b7ee4"/></dir><dir name="controllers"><file name="EximbayController.php" hash="9aef2e23676514be7da811f02ace1638"/><file name="ProcessingController.php" hash="3102f3ae868ea00a72cc1ca7190c2a26"/></dir><dir name="etc"><file name="config.xml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Eximbay</name>
|
4 |
+
<version>2.0.7</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-license.php">GNU General Public License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Official Eximbay Payment Extension</summary>
|
10 |
<description>This payment module offers a variety of popular payment methods for online merchants.</description>
|
11 |
+
<notes>Added American Express logo image for Credit Card payment method.
|
12 |
+
Added WeChat payment method.</notes>
|
13 |
<authors><author><name>KRPartners Co.,Ltd</name><user>prokod1</user><email>prokod@kr.net</email></author></authors>
|
14 |
+
<date>2015-12-21</date>
|
15 |
+
<time>06:52:12</time>
|
16 |
+
<contents><target name="magecommunity"><dir name="Krp"><dir name="Eximbay"><dir name="Block"><dir name="Checkout"><dir name="Onepage"><dir name="Payment"><file name="Methods.php" hash="907991b8d3763968006af490eb803a32"/></dir></dir></dir><file name="Form.php" hash="f6a8a89d07384accc0501a6806fb8a58"/><file name="Info.php" hash="2a74edc39a49612eca820a6826d03a93"/><file name="Jsinit.php" hash="f5e7e6864d9a66fdeb760865885eb028"/><file name="Payment.php" hash="e55e4e8c36ac4e3a8372723cc7e34fbc"/><file name="Placeform.php" hash="22e9a71ba8d56e338b273df0a31d408e"/><file name="Redirect.php" hash="ed0a1ae878f925001dda455bdcee7281"/></dir><dir name="Helper"><file name="Data.php" hash="39b50d67f2f0ce838900530ded9cb5f7"/><file name="Ppp.php" hash="2209927ca48e88ea8312cb3babb3cac5"/></dir><dir name="Model"><file name="Abstract.php" hash="a59ea03fa4beceaa21f7c7cc8e4c78a7"/><file name="Acc.php" hash="e01ef19e450cc81d7abea76716a68ee3"/><file name="All.php" hash="4a1fe99522a07b0594f62a5fc93d7279"/><file name="Alp.php" hash="fc5e746a521d7e8fe609d56dd8971fb2"/><file name="Cup.php" hash="3e61b570bf9ec0f47a8282b289c5cbc2"/><file name="Ecn.php" hash="8c81daff5feccef2173f7afe399d2b4d"/><file name="Event.php" hash="8da091dc77e42a34c94b81c2c88e6383"/><file name="Nnb.php" hash="dbfd83d3c79479decb81ecd2198a3f31"/><file name="Popup.php" hash="26b4d183cdaebcd6a66e3ccc97570be8"/><file name="Popupiframe.php" hash="fceb0e286d5c7f2d47937dc24763d276"/><file name="Ppl.php" hash="67a14f356dbc79d54b3ad8448416bca6"/><file name="Tnp.php" hash="f5a167e11ec3c37b16d87ac4284f1f95"/><file name="Version.php" hash="d38c79d0ec939a8ee32491b5a54b7ee4"/><file name="Wct.php" hash="b9b24b4bcccba0d98150622621493f39"/></dir><dir name="controllers"><file name="EximbayController.php" hash="9aef2e23676514be7da811f02ace1638"/><file name="ProcessingController.php" hash="3102f3ae868ea00a72cc1ca7190c2a26"/></dir><dir name="etc"><file name="config.xml" hash="1e17acecec532f891feedbad0e3e22db"/><file name="system.xml" hash="f4ba7e43b701911d8b7413b57fb2c0bd"/></dir><dir name="sql"><dir name="eximbay_setup"><file name="install-2.0.0.php" hash="de251375de4ea828e2f827f0bfbb4ce5"/><file name="mysql4-ugrade-0.1.0-2.0.0.php" hash="8dbe742a111b82d3aa4106bb9bc7fce9"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="eximbay.xml" hash="46de7d1b0a663271c7b90d3bdfc0e8e8"/></dir><dir name="template"><dir name="eximbay"><file name="info.phtml" hash="8d7970f6b7f17546d5741d61455a0654"/><file name="jsinit.phtml" hash="b146ee4b5a669e2bde2cb300baeedd80"/><dir name="pdf"><file name="info.phtml" hash="145976fe44cdfef7cb0a9ec438a3c162"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eximbay.xml" hash="54999a880758c5b6808782e1d8e8a54a"/></dir><dir name="template"><dir name="eximbay"><file name="blank.phtml" hash="ea239a21df8d55020f39349254ef5cba"/><dir name="checkout"><dir name="onepage"><dir name="payment"><file name="methods.phtml" hash="be48a6dec436726ba2bef57c04e2c18e"/></dir><dir name="review"><file name="button.phtml" hash="6a4af9bbbf6069d659a12bbd739cddd7"/></dir></dir></dir><file name="form.phtml" hash="fe17e160010d308c0df0ebc29673004d"/><file name="info.phtml" hash="4b365112722a6b4d0555580ac1c20c5e"/><file name="payment.phtml" hash="4db824dda606422b07d64c654fe2b39c"/><file name="placeform.phtml" hash="38e1f0c3f2753020994996fcf06b6c53"/><file name="redirect.phtml" hash="ff792a53e3cd9721e906edafcc30e3d5"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Krp_Eximbay.xml" hash="f163f260b5d1203cb8b9146e838d672d"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Krp_Eximbay.csv" hash="4ae9e31213fc1113498d1c162b7cef4d"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="eximbay"><file name="eximbay_acc.jpg" hash="6caf2218511d1658e00224bfce70bb7e"/><file name="eximbay_acc_02.jpg" hash="b64b77cd6a2a3bcea931e78c85b01e54"/><file name="eximbay_all.png" hash="267e51c8853d83772e8950d55ba8c35e"/><file name="eximbay_alp.jpg" hash="fdf33a103183ee24f238d26b4b546de5"/><file name="eximbay_banner.png" hash="afd1fd216aefbbfc7caaade06e5e25e4"/><file name="eximbay_cup.jpg" hash="42c17b3b9b9841a28efc1f921099ee6f"/><file name="eximbay_loading.gif" hash="68affa0374b82d560d800c9ea3e160ad"/><file name="eximbay_logo.gif" hash="54276432f5b4f61f32e8c8cd2a0cc6d1"/><file name="eximbay_nnb.jpg" hash="31063516179a5fb158f02cb25b5f94fb"/><file name="eximbay_ppl.jpg" hash="80e621524248fe39508f91349a353bb5"/><file name="eximbay_tnp.jpg" hash="56d1053176bc6ea5b7a39ec43b9d2da2"/><file name="eximbay_wct.jpg" hash="ebb3613df8d89b8c7a398c91fb2c6e88"/></dir></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|
skin/frontend/base/default/images/eximbay/eximbay_acc.jpg
CHANGED
Binary file
|
skin/frontend/base/default/images/eximbay/eximbay_acc_02.jpg
ADDED
Binary file
|
skin/frontend/base/default/images/eximbay/eximbay_wct.jpg
ADDED
Binary file
|