Automattic\WooCommerce\Admin\API
Notes::update_item()
Update a single note.
Method of the class: Notes{}
No Hooks.
Return
WP_REST_Request|WP_Error
.
Usage
$Notes = new Notes(); $Notes->update_item( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Notes::update_item() Notes::update item code WC 9.7.1
public function update_item( $request ) { $note = NotesRepository::get_note( $request->get_param( 'id' ) ); if ( ! $note ) { return new \WP_Error( 'woocommerce_note_invalid_id', __( 'Sorry, there is no resource with that ID.', 'woocommerce' ), array( 'status' => 404 ) ); } NotesRepository::update_note( $note, $this->get_requested_updates( $request ) ); return $this->get_item( $request ); }