Automattic\WooCommerce\Internal\DataStores\Orders

CustomOrdersTableController::create_custom_orders_tables()publicWC 1.0

Method of the class: CustomOrdersTableController{}

No Hooks.

Return

null. Nothing (null).

Usage

$CustomOrdersTableController = new CustomOrdersTableController();
$CustomOrdersTableController->* @param mixed  $value New value of the setting.;

CustomOrdersTableController::create_custom_orders_tables() code WC 8.7.0

* @param mixed  $value New value of the setting.
*/
	private function process_updated_option( $option, $old_value, $value ) {
		if ( DataSynchronizer::ORDERS_DATA_SYNC_ENABLED_OPTION === $option && 'no' === $value ) {
			$this->data_synchronizer->cleanup_synchronization_state();
		}
	}

	/**