ProductVariation::IsInCart PHP Method

IsInCart() public method

* Returns if the product variation is already in the shopping cart.
public IsInCart ( )
    public function IsInCart()
    {
        return $this->Item() && $this->Item()->Quantity > 0;
    }