init('core', $name); } /** * Retrieve Session Form Key * * @return string A 16 bit unique key for forms */ public function getFormKey() { if (!$this->getData('_form_key')) { $this->setData('_form_key', Mage::helper('core')->getRandomString(16)); } return $this->getData('_form_key'); } }