WC_Payment_Token_Data_Store::get_token_type_by_id()publicWC 3.0.0

Get a token's type by ID.

Method of the class: WC_Payment_Token_Data_Store{}

No Hooks.

Return

String.

Usage

$WC_Payment_Token_Data_Store = new WC_Payment_Token_Data_Store();
$WC_Payment_Token_Data_Store->get_token_type_by_id( $token_id );
$token_id(int) (required)
Token ID.

Changelog

Since 3.0.0 Introduced.

WC_Payment_Token_Data_Store::get_token_type_by_id() code WC 8.6.1

public function get_token_type_by_id( $token_id ) {
	global $wpdb;
	return $wpdb->get_var(
		$wpdb->prepare(
			"SELECT type FROM {$wpdb->prefix}woocommerce_payment_tokens WHERE token_id = %d",
			$token_id
		)
	);
}