WC_Payment_Token::get_user_id()
Returns the user ID associated with the token or false if this token is not associated.
Метод класса: WC_Payment_Token{}
Хуков нет.
Возвращает
int
. User ID if this token is associated with a user or 0 if no user is associated
Использование
$WC_Payment_Token = new WC_Payment_Token(); $WC_Payment_Token->get_user_id( $context );
- $context(строка)
- In what context to execute this.
По умолчанию: 'view'
Список изменений
С версии 2.6.0 | Введена. |
Код WC_Payment_Token::get_user_id() WC Payment Token::get user id WC 9.4.2
public function get_user_id( $context = 'view' ) { return $this->get_prop( 'user_id', $context ); }