WC_REST_CRUD_Controller::update_item_permissions_check()publicWC 1.0

Check if a given request has access to update an item.

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

Хуков нет.

Возвращает

WP_Error|true|false.

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

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

Код WC_REST_CRUD_Controller::update_item_permissions_check() WC 8.7.0

public function update_item_permissions_check( $request ) {
	$object = $this->get_object( (int) $request['id'] );

	if ( $object && 0 !== $object->get_id() && ! wc_rest_check_post_permissions( $this->post_type, 'edit', $object->get_id() ) ) {
		return new WP_Error( 'woocommerce_rest_cannot_edit', __( 'Sorry, you are not allowed to edit this resource.', 'woocommerce' ), array( 'status' => rest_authorization_required_code() ) );
	}

	return true;
}