WC_Product_Variable::after_data_store_save_or_update()
Do any extra processing needed after the actual product save (but before triggering the 'woocommerce_after_..._object_save' action)
Method of the class: WC_Product_Variable{}
No Hooks.
Return
null
. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->after_data_store_save_or_update( $state );
- $state(mixed) (required)
- The state object that was returned by before_data_store_save_or_update.
WC_Product_Variable::after_data_store_save_or_update() WC Product Variable::after data store save or update code WC 9.4.2
protected function after_data_store_save_or_update( $state ) { $this->data_store->sync_variation_names( $this, $state['previous_name'], $state['new_name'] ); $this->data_store->sync_managed_variation_stock_status( $this ); }