Automattic\WooCommerce\Admin\RemoteInboxNotifications

StoredStateSetupForProducts::run_on_product_importer()public staticWC 1.0

Runs on product importer steps.

Method of the class: StoredStateSetupForProducts{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = StoredStateSetupForProducts::run_on_product_importer();

StoredStateSetupForProducts::run_on_product_importer() code WC 8.7.0

public static function run_on_product_importer() {
	// We're only interested in when the importer completes.
	// phpcs:disable WordPress.Security.NonceVerification.Recommended
	if ( ! isset( $_REQUEST['step'] ) ) {
		return;
	}
	if ( 'done' !== $_REQUEST['step'] ) {
		return;
	}
	// phpcs:enable

	self::update_stored_state_and_possibly_run_remote_notifications();
}