WC_Payment_Token_Data_Store::get_token_by_id
Returns an stdObject of a token. Should contain the fields token_id, gateway_id, token, user_id, type, is_default.
Method of the class: WC_Payment_Token_Data_Store{}
No Hooks.
Returns
Object.
Usage
$WC_Payment_Token_Data_Store = new WC_Payment_Token_Data_Store(); $WC_Payment_Token_Data_Store->get_token_by_id( $token_id );
- $token_id(int) (required)
- Token ID.
Changelog
| Since 3.0.0 | Introduced. |
WC_Payment_Token_Data_Store::get_token_by_id() WC Payment Token Data Store::get token by id code WC 10.3.3
public function get_token_by_id( $token_id ) {
global $wpdb;
return $wpdb->get_row(
$wpdb->prepare(
"SELECT * FROM {$wpdb->prefix}woocommerce_payment_tokens WHERE token_id = %d",
$token_id
)
);
}