WC_CLI_REST_Command::update_item( array $args, array $assoc_args )

Update an existing item.


Description Description


Parameters Parameters

$args

(Required) WP-CLI positional arguments.

$assoc_args

(Required) WP-CLI associative arguments.


Top ↑

Source Source

File: includes/cli/class-wc-cli-rest-command.php

	public function update_item( $args, $assoc_args ) {
		$assoc_args            = self::decode_json( $assoc_args );
		list( $status, $body ) = $this->do_request( 'POST', $this->get_filled_route( $args ), $assoc_args );
		if ( \WP_CLI\Utils\get_flag_value( $assoc_args, 'porcelain' ) ) {
			WP_CLI::line( $body['id'] );
		} else {
			WP_CLI::success( __( 'Updated', 'woocommerce' ) . " {$this->name} {$body['id']}." );
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.