When I make calls from my custom module to retrieve a piece of configuration data, I pass in the store Id. I have seen posts where people have been discussing using the same cart across all stores, or different carts per store. So I'm not sure whether the call below is the correct way to get hold of the cart in all circumstances or, given the discussions mentioned, whether the store id needs to be considered?
$cart = Mage::helper('checkout/cart')->getCart();
Thanks.
$cart->getQuote()->getAllVisibleItems()), as well as find some information about the cart as a whole, e.g.$cart->getQuote()-getGrandTotal(). – user265330 Nov 26 '11 at 18:55