Magento How to read the current logged in admin details – Magento March 31, 2011 Pramod T P Leave a comment <?php Mage::getSingleton('core/session', array('name' => 'adminhtml')); $session = Mage::getSingleton('admin/session'); if ( $session->isLoggedIn() ){ echo "Admin is logged in"; } ?>