WC_Customer_Download_Log::get_user_id()publicWC 1.0

Get user id.

Method of the class: WC_Customer_Download_Log{}

No Hooks.

Return

Int.

Usage

$WC_Customer_Download_Log = new WC_Customer_Download_Log();
$WC_Customer_Download_Log->get_user_id( $context );
$context(string)
Get context.
Default: 'view'

WC_Customer_Download_Log::get_user_id() code WC 8.6.1

public function get_user_id( $context = 'view' ) {
	return $this->get_prop( 'user_id', $context );
}