Craft\IAnalytics::addCommerceProductImpression PHP Method

addCommerceProductImpression() public method

Add a product impression to the Analytics object
public addCommerceProductImpression ( $productVariant = null, integer $index, $listName = "" )
$index integer Where the product appears in the list
    public function addCommerceProductImpression($productVariant = null, $index = 0, $listName = "")
    {
        if ($productVariant) {
            craft()->instantAnalytics->addCommerceProductImpression($this, $productVariant, $index, $listName);
        }
    }