Changeset 1857781
- Timestamp:
- 04/13/2018 09:31:50 AM (8 years ago)
- Location:
- woo-bootpay/trunk
- Files:
-
- 2 edited
-
bootpay-woocommerce.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-bootpay/trunk/bootpay-woocommerce.php
r1857728 r1857781 4 4 * Plugin URI: https://www.bootpay.co.kr 5 5 * Description: 우커머스에 PG를 손쉽게 붙일 수 연동 플러그인 ( 이니시스 / 다날 / KCP / LGU+ 모두 쉽게 붙이는 Woo-bootpay ) 6 * Version: 1.1. 86 * Version: 1.1.9 7 7 * Author: Gosomi 8 8 * Author URI: https://blog.areum.io … … 37 37 38 38 function init_bootpay_plugin() { 39 if( ! class_exists( 'WC_Payment_Gateway' ) ) {39 if( ! class_exists( 'WC_Payment_Gateway' ) || class_exists( 'WC_Gateway_Bootpay' ) ) { 40 40 return; 41 41 } … … 62 62 $this->title = $this->get_option( 'title' ); 63 63 $this->description = $this->get_option( 'description' ); 64 65 64 $this->load_actions(); 66 65 } … … 152 151 add_action( 'woocommerce_api_' . strtolower( self::PAYMENT_SUBMIT ), [$this, 'payment_validation'] ); 153 152 add_action( 'woocommerce_api_' . strtolower( self::VBANK_NOTIFICATION ), [$this, 'vbank_notification'] ); 154 add_action( 'woocommerce_order_details_after_order_table', [$this, 'bootpay_order_table'] );153 add_action( 'woocommerce_order_details_after_order_table', [$this, 'bootpay_order_table'], 10, 1 ); 155 154 add_action( "woocommerce_update_options_payment_gateways_{$this->id}", [$this, 'process_admin_options'] ); 156 155 add_action( "wp_ajax_bootpay_payment_response", [$this, 'pre_bootpay_payment_response'] ); … … 175 174 176 175 public function bootpay_order_table( $order ) { 177 $this->renderFile( 'order_detail.php', [176 return $this->renderFile( 'order_detail.php', [ 178 177 'pg_name' => $order->get_meta( 'bootpay_pg_name' ), 179 178 'method_name' => $order->get_meta( 'bootpay_method_name' ), … … 585 584 } 586 585 587 new WC_Gateway_Bootpay();586 // new WC_Gateway_Bootpay(); 588 587 } -
woo-bootpay/trunk/readme.txt
r1857728 r1857781 4 4 Tags: woocommerce, 부트페이, payment, 이니시스, KCP, 다날, inicis, danal, bootpay 5 5 Requires at least: 3.6 6 Tested up to: 4.9. 17 Stable tag: 1.1. 86 Tested up to: 4.9.5 7 Stable tag: 1.1.9 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 버전 1.1.9 15 Gateway 두번 호출하는 버그 수정 16 14 17 버전 1.1.8 15 18 상품명 노출 안되는 버그 수정
Note: See TracChangeset
for help on using the changeset viewer.