WC_REST_Customers_V1_Controller::get_item_permissions_checkpublicWC 1.0

Check if a given request has access to read a customer.

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

Хуков нет.

Возвращает

WP_Error|true|false.

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

$WC_REST_Customers_V1_Controller = new WC_REST_Customers_V1_Controller();
$WC_REST_Customers_V1_Controller->get_item_permissions_check( $request );
$request(WP_REST_Request) (обязательный)
Full details about the request.

Код WC_REST_Customers_V1_Controller::get_item_permissions_check() WC 10.4.3

public function get_item_permissions_check( $request ) {
	return $this->permissions_check(
		$request,
		'read',
		new WP_Error(
			'woocommerce_rest_cannot_view',
			__( 'Sorry, you cannot view this resource.', 'woocommerce' ),
			array( 'status' => rest_authorization_required_code() )
		)
	);
}