WC_Payment_Gateway::get_tokens()
Returns a users saved tokens for this gateway.
Description Description
Return Return
(array)
Source Source
File: includes/abstracts/abstract-wc-payment-gateway.php
public function get_tokens() { if ( count( $this->tokens ) > 0 ) { return $this->tokens; } if ( is_user_logged_in() && $this->supports( 'tokenization' ) ) { $this->tokens = WC_Payment_Tokens::get_customer_tokens( get_current_user_id(), $this->id ); } return $this->tokens; }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |