WC_Payment_Gateway::get_new_payment_method_option_html PHP Method

get_new_payment_method_option_html() public method

Only displayed when a gateway supports tokenization.
Since: 2.6.0
    public function get_new_payment_method_option_html()
    {
        $label = apply_filters('woocommerce_payment_gateway_get_new_payment_method_option_html_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'woocommerce'), $this);
        $html = sprintf('<li class="woocommerce-SavedPaymentMethods-new">
				<input id="wc-%1$s-payment-token-new" type="radio" name="wc-%1$s-payment-token" value="new" style="width:auto;" class="woocommerce-SavedPaymentMethods-tokenInput" />
				<label for="wc-%1$s-payment-token-new">%2$s</label>
			</li>', esc_attr($this->id), esc_html($label));
        return apply_filters('woocommerce_payment_gateway_get_new_payment_method_option_html', $html, $this);
    }