Guest User

Untitled

a guest
Jan 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. /**
  3. * Date: 3/30/16
  4. * Time: 3:36 PM
  5. */
  6. class Swarming_Yardmaster_Block_Customer_Account_Dashboard_Hello extends Mage_Customer_Block_Account_Dashboard_Hello {
  7. public function getCustomerName()
  8. {
  9. if (Mage::getSingleton('customer/session')->getCustomer()->getName()) {
  10. return Mage::getSingleton('customer/session')->getCustomer()->getName();
  11. } else {
  12. $parts = explode('@', Mage::getSingleton('customer/session')->getCustomer()->getEmail());
  13. $user = $parts[0];
  14. echo ', ' . $user;
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment