WC_Product_Variable::after_data_store_save_or_update()protectedWC 1.0

Do any extra processing needed after the actual product save (but before triggering the 'woocommerce_after_..._object_save' action)

Метод класса: WC_Product_Variable{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->after_data_store_save_or_update( $state );
$state(разное) (обязательный)
The state object that was returned by before_data_store_save_or_update.

Код WC_Product_Variable::after_data_store_save_or_update() WC 8.7.0

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 );
}