2013 July

Magento date time

Are you using date-time functions (date(), time(),now(), etc) directly inside magento ??? Think twice man !!! Even though time is…

Force customer login in magento

$customerId = (int) $this->getRequest()->getParam(‘id’); $customer   = Mage::getModel(‘customer/customer’)->load($customerId); $userSession = Mage::getSingleton(‘customer/session’); $userSession->setCustomer($customer); Mage::dispatchEvent(‘customer_login’, array(‘customer’=>$customer)); $this->getResponse()->setRedirect(Mage::getUrl(‘customer/account’));

1 2 3 4 15