WC_Webhook::get_user_id()publicWC 2.2.0

Get the user ID for this webhook.

Метод класса: WC_Webhook{}

Хуков нет.

Возвращает

int.

Использование

$WC_Webhook = new WC_Webhook();
$WC_Webhook->get_user_id( $context );
$context(строка)
What the value is for. Valid values are 'view' and 'edit'.
По умолчанию: 'view'

Список изменений

С версии 2.2.0 Введена.

Код WC_Webhook::get_user_id() WC 8.7.0

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