Changeset 1568396
- Timestamp:
- 01/05/2017 09:48:14 AM (9 years ago)
- Location:
- gnupay-lguplus/trunk
- Files:
-
- 9 edited
-
classes/lguplus_accounttransfer.class.php (modified) (1 diff)
-
classes/lguplus_card_gateway.class.php (modified) (2 diffs)
-
classes/lguplus_easypay.class.php (modified) (1 diff)
-
classes/lguplus_phonepay.class.php (modified) (1 diff)
-
classes/lguplus_virtualaccount.class.php (modified) (1 diff)
-
config.php (modified) (1 diff)
-
gnupay_lguplus.php (modified) (1 diff)
-
lib/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gnupay-lguplus/trunk/classes/lguplus_accounttransfer.class.php
r1439768 r1568396 108 108 109 109 if( $result ){ 110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->s anitized_fields );110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->setttings ); 111 111 112 112 $lguplus_options = get_option( $this->plugin_id . $this->gnupay_lguplus_card . '_settings' ); -
gnupay-lguplus/trunk/classes/lguplus_card_gateway.class.php
r1439768 r1568396 121 121 if( $result ){ 122 122 if( $this->id == $this->gnupay_lguplus_card ){ //카드일때만 실행; 123 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->s anitized_fields );123 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->setttings ); 124 124 125 125 $pay_ids = gnupay_lguplus_get_settings('pay_ids'); … … 175 175 176 176 if ( ! empty( $this->locale_setting ) && is_array( $this->locale_setting ) ) { 177 $this->locale_setting = array_map( array( $this, 'format_settings' ), $this->locale_setting );177 //$this->locale_setting = array_map( array( $this, 'format_settings' ), $this->locale_setting ); 178 178 $this->enabled = isset( $this->locale_setting['enabled'] ) && $this->locale_setting['enabled'] == 'yes' ? 'yes' : 'no'; 179 179 } -
gnupay-lguplus/trunk/classes/lguplus_easypay.class.php
r1439768 r1568396 108 108 109 109 if( $result ){ 110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->s anitized_fields );110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->setttings ); 111 111 112 112 $lguplus_options = get_option( $this->plugin_id . $this->gnupay_lguplus_card . '_settings' ); -
gnupay-lguplus/trunk/classes/lguplus_phonepay.class.php
r1439768 r1568396 108 108 109 109 if( $result ){ 110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->s anitized_fields );110 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->setttings ); 111 111 112 112 $lguplus_options = get_option( $this->plugin_id . $this->gnupay_lguplus_card . '_settings' ); -
gnupay-lguplus/trunk/classes/lguplus_virtualaccount.class.php
r1439768 r1568396 139 139 140 140 if( $result ){ 141 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->s anitized_fields );141 $options = apply_filters( 'woocommerce_settings_api_sanitized_fields_' . $this->id, $this->setttings ); 142 142 143 143 $lguplus_options = get_option( $this->plugin_id . $this->gnupay_lguplus_card . '_settings' ); -
gnupay-lguplus/trunk/config.php
r1439768 r1568396 5 5 public function __construct() { 6 6 7 define( 'GNUPAY_LGUPLUS_VERSION', '1. 0' );7 define( 'GNUPAY_LGUPLUS_VERSION', '1.1' ); 8 8 define( 'GNUPAY_LGUPLUS', 'gnupay-lguplus' ); 9 9 define( 'GNUPAY_LGUPLUS_ORDER_TMP', '_order_tmp_lguplus' ); -
gnupay-lguplus/trunk/gnupay_lguplus.php
r1439768 r1568396 6 6 * Author: SIR Soft 7 7 * Author URI: http://sir.kr 8 * Version: 1. 08 * Version: 1.1 9 9 * Tested up to: 4.5 10 10 * Text Domain: gnupay-lguplus -
gnupay-lguplus/trunk/lib/functions.php
r1439768 r1568396 456 456 wp.updates.requestForCredentialsModalClose(); 457 457 }); 458 459 $(document).on('submit', '.gp-credentials-dialog form', function(e){ 460 e.currentTarget.submit(); 461 }); 458 462 }); 459 463 </script> -
gnupay-lguplus/trunk/readme.txt
r1439768 r1568396 6 6 Requires at least: 4.0 7 7 Tested up to: 4.5 8 Stable tag: 1. 08 Stable tag: 1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 == Changelog == 68 68 69 = 1.0 -beta=69 = 1.0 = 70 70 첫번째 버전입니다. 71 71
Note: See TracChangeset
for help on using the changeset viewer.