WC_Payment_Gateway::get_saved_payment_method_option_html PHP Method

get_saved_payment_method_option_html() public method

Gets saved payment method HTML from a token.
Since: 2.6.0
public get_saved_payment_method_option_html ( WC_Payment_Token $token ) : string
$token WC_Payment_Token Payment Token
return string Generated payment method HTML
    public function get_saved_payment_method_option_html($token)
    {
        $html = sprintf('<li class="woocommerce-SavedPaymentMethods-token">
				<input id="wc-%1$s-payment-token-%2$s" type="radio" name="wc-%1$s-payment-token" value="%2$s" style="width:auto;" class="woocommerce-SavedPaymentMethods-tokenInput" %4$s />
				<label for="wc-%1$s-payment-token-%2$s">%3$s</label>
			</li>', esc_attr($this->id), esc_attr($token->get_id()), esc_html($token->get_display_name()), checked($token->is_default(), true, false));
        return apply_filters('woocommerce_payment_gateway_get_saved_payment_method_option_html', $html, $token, $this);
    }