Automattic\WooCommerce\Internal\DataStores\Orders

CustomOrdersTableController::process_options_updated()publicWC 1.0

Method of the class: CustomOrdersTableController{}

No Hooks.

Return

null. Nothing (null).

Usage

$CustomOrdersTableController = new CustomOrdersTableController();
$CustomOrdersTableController->;

CustomOrdersTableController::process_options_updated() code WC 8.6.1

}

$sync_message[] = sprintf(
	'<a href="%1$s" class="button button-link">%2$s</a>',
	esc_url( $sync_now_url ),
	sprintf(
		// translators: %d: number of pending orders.
		_n(
			'Sync %s pending order',
			'Sync %s pending orders',
			$orders_pending_sync_count,
			'woocommerce'
		),
		number_format_i18n( $orders_pending_sync_count )
	)
);
			}

			return implode( '<br />', $sync_message );