Signed-off-by: hitsword <mail@huayizhiyun.com>
master
hitsword 2019-05-20 14:11:00 +08:00
parent 94ab823632
commit 3f95393f12
1 changed files with 4 additions and 2 deletions

View File

@ -25,14 +25,16 @@ class WC_Huayi_Score extends WC_Payment_Gateway {
$this->method_description = __( '调用系统积分数据进行支付.', 'huayi_score' ); $this->method_description = __( '调用系统积分数据进行支付.', 'huayi_score' );
$this->supports = array('refunds'); $this->supports = array('refunds');
// Load the settings. // 加载配置.
$this->init_form_fields(); $this->init_form_fields();
$this->init_settings(); $this->init_settings();
// Define user set variables // 定义用户设置的变量.
$this->title = $this->get_option( 'title' ); $this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' ); $this->description = $this->get_option( 'description' );
$this->instructions = $this->get_option( 'instructions', $this->description ); $this->instructions = $this->get_option( 'instructions', $this->description );
$this->apiurl = $this->get_option( 'apiurl' );
$this->token = $this->get_option( 'token' );
// Actions // Actions
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) ); add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );