Changeset 1947112
- Timestamp:
- 09/26/2018 01:50:38 AM (8 years ago)
- Location:
- woo-bootpay/trunk
- Files:
-
- 2 edited
-
bootpay-woocommerce.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-bootpay/trunk/bootpay-woocommerce.php
r1892004 r1947112 4 4 * Plugin URI: https://www.bootpay.co.kr 5 5 * Description: 우커머스에 PG를 손쉽게 붙일 수 연동 플러그인 ( 이니시스 / 다날 / KCP / LGU+ 모두 쉽게 붙이는 Woo-bootpay ) 6 * Version: 1.1.1 36 * Version: 1.1.14 7 7 * Author: Gosomi 8 8 * Author URI: https://docs.bootpay.co.kr … … 44 44 { 45 45 46 const CURRENT_VERSION = '2.0. 6';46 const CURRENT_VERSION = '2.0.10'; 47 47 const BOOTPAY_WC_DOMAIN = 'bootpay-with-woocommerce'; 48 const SUPPORT_CURRENCY = ['KRW'];49 48 const PAYMENT_SUBMIT = 'BOOTPAY_PAYMENT_SUBMIT'; 50 49 const VBANK_NOTIFICATION = 'BOOTPAY_VBANK_NOTI'; … … 134 133 public function is_valid_currency() 135 134 { 136 if ( !in_array(get_woocommerce_currency(), self::SUPPORT_CURRENCY)) {135 if ($this->isSupportCurrency()) { 137 136 $this->msg = sprintf("부트페이는 %s 화폐 결제를 지원하지 않습니다.", get_woocommerce_currency()); 138 139 137 return false; 140 138 } … … 606 604 } 607 605 606 private function isSupportCurrency() 607 { 608 return !(in_array(get_woocommerce_currency(), ['KRW'])); 609 } 610 608 611 private function renderJson($response) 609 612 { -
woo-bootpay/trunk/readme.txt
r1892004 r1947112 5 5 Requires at least: 3.6 6 6 Tested up to: 4.9.6 7 Stable tag: 1.1.1 37 Stable tag: 1.1.14 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 12 12 13 13 == Description == 14 15 버전 1.1.14 16 2.0.10 js 버전 업데이트 17 class constants 지원하지 않는 구버전 Support 14 18 15 19 버전 1.1.13
Note: See TracChangeset
for help on using the changeset viewer.