Product_Ignorer::do_import()

Summary

No summary available.

Source

File: src/BigCommerce/Import/Importers/Products/Product_Ignorer.php

	public function do_import() {
		/**
		 * A product has been skipped for import
		 *
		 * @param int           $post_id      The Post ID of the skipped product
		 * @param Model\Product $product      The product data
		 * @param Model\Listing $listing      The channel listing data
		 * @param \WP_Term      $channel_term The Channel term corresponding to the listing
		 * @param CatalogApi    $catalog      The Catalog API instance
		 */
		do_action( 'bigcommerce/import/product/skipped', $this->post_id, $this->product, $this->listing, $this->channel_term, $this->catalog );

		return $this->post_id;
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.