Another method of getting Customer Data
<?php ... public function getCustomer() { $customerId = $this->_getCustomerId(); return Mage::getModel('customer/customer')->load($customerId); } private function _getCustomerId() { return Mage::getSingleton('customer/session')->getCustomerId(); } ... |