WC_Legacy_Shipping_Zone::update
Deprecated since 3.0.0. It is no longer supported and may be removed in future releases. Use
::save instead.Update a zone.
Method of the class: WC_Legacy_Shipping_Zone{}
No Hooks.
Returns
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() WC Legacy Shipping Zone::update code WC 10.7.0
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;
}
}