WC_Payment_Token::get_user_id( string $context = 'view' )
Returns the user ID associated with the token or false if this token is not associated.
Description Description
Parameters Parameters
- $context
-
(Optional) In what context to execute this.
Default value: 'view'
Return Return
(int) User ID if this token is associated with a user or 0 if no user is associated
Source Source
File: includes/abstracts/abstract-wc-payment-token.php
public function get_user_id( $context = 'view' ) { return $this->get_prop( 'user_id', $context ); }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |