CI_Cart::remove PHP Method

remove() public method

Removes an item from the cart
public remove ( $rowid ) : boolean
return boolean
    public function remove($rowid)
    {
        // unset & save
        unset($this->_cart_contents[$rowid]);
        $this->_save_cart();
        return TRUE;
    }