WC_Legacy_Shipping_Zone::update()publicWC 1.0

Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. Use ::save instead.

Update a zone.

Method of the class: WC_Legacy_Shipping_Zone{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Legacy_Shipping_Zone = new WC_Legacy_Shipping_Zone();
$WC_Legacy_Shipping_Zone->update();

Changelog

Deprecated since 3.0.0 - Use ::save instead.

WC_Legacy_Shipping_Zone::update() code WC 8.6.1

public function update() {
	wc_deprecated_function( 'WC_Shipping_Zone::update', '3.0', 'WC_Shipping_Zone::save instead.' );
	$data_store = WC_Data_Store::load( 'shipping-zone' );
	try {
		$data_store->update( $this );
	} catch ( Exception $e ) {
		return false;
	}
}