
Public Member Functions | |
| getPostActionUrl () | |
| getCreateAccountUrl () | |
| getForgotPasswordUrl () | |
| getUsername () | |
Protected Member Functions | |
| _prepareLayout () | |
Definition at line 34 of file Login.php.
| _prepareLayout | ( | ) | [protected] |
Preparing global layout
You can redefine this method in child classes for changin layout
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 38 of file Login.php.
00039 { 00040 $this->getLayout()->getBlock('head')->setTitle(Mage::helper('customer')->__('Customer Login')); 00041 return parent::_prepareLayout(); 00042 }
| getCreateAccountUrl | ( | ) |
| getForgotPasswordUrl | ( | ) |
| getPostActionUrl | ( | ) |
| getUsername | ( | ) |
Retrieve username for form field
Definition at line 83 of file Login.php.
00084 { 00085 if (-1 === $this->_username) { 00086 $this->_username = Mage::getSingleton('customer/session')->getUsername(true); 00087 } 00088 return $this->_username; 00089 }
1.5.8