Automattic\WooCommerce\Internal\Admin\WCPayPromotion
WCPaymentGatewayPreInstallWCPayPromotion::init_form_fields
Initialise Gateway Settings Form Fields.
Method of the class: WCPaymentGatewayPreInstallWCPayPromotion{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WCPaymentGatewayPreInstallWCPayPromotion = new WCPaymentGatewayPreInstallWCPayPromotion(); $WCPaymentGatewayPreInstallWCPayPromotion->init_form_fields();
WCPaymentGatewayPreInstallWCPayPromotion::init_form_fields() WCPaymentGatewayPreInstallWCPayPromotion::init form fields code WC 10.5.0
public function init_form_fields() {
$this->form_fields = array(
'is_dismissed' => array(
'title' => __( 'Dismiss', 'woocommerce' ),
'type' => 'checkbox',
'label' => __( 'Dismiss the gateway', 'woocommerce' ),
'default' => 'no',
),
);
}