WC_Payment_Gateway::get_saved_payment_method_option_html( WC_Payment_Token $token )
Gets saved payment method HTML from a token.
Description Description
Parameters Parameters
- $token
-
(Required) Payment Token.
Return Return
(string) Generated payment method HTML
Source Source
File: includes/abstracts/abstract-wc-payment-gateway.php
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 );
}
Changelog Changelog
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |