I want save
$this->_getCart()->getItems()
And save it so i can work with the Items after checkout! After the checkout i want to write the items backk to the cart.
Does anybody has a Idea to proceed?
I want save
$this->_getCart()->getItems()
And save it so i can work with the Items after checkout! After the checkout i want to write the items backk to the cart.
Does anybody has a Idea to proceed?
It was easy:
Mage::getSingleton('core/session')->setData('old_items', serialize($items));
and
$items = unserialize(Mage::getSingleton('core/session')->getData('old_items'));