00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Customer_Block_Form_Login extends Mage_Core_Block_Template
00035 {
00036 private $_username = -1;
00037
00038 protected function _prepareLayout()
00039 {
00040 $this->getLayout()->getBlock('head')->setTitle(Mage::helper('customer')->__('Customer Login'));
00041 return parent::_prepareLayout();
00042 }
00043
00044
00045
00046
00047
00048
00049 public function getPostActionUrl()
00050 {
00051 return $this->helper('customer')->getLoginPostUrl();
00052 }
00053
00054
00055
00056
00057
00058
00059 public function getCreateAccountUrl()
00060 {
00061 $url = $this->getData('create_account_url');
00062 if (is_null($url)) {
00063 $url = $this->helper('customer')->getRegisterUrl();
00064 }
00065 return $url;
00066 }
00067
00068
00069
00070
00071
00072
00073 public function getForgotPasswordUrl()
00074 {
00075 return $this->helper('customer')->getForgotPasswordUrl();
00076 }
00077
00078
00079
00080
00081
00082
00083 public function getUsername()
00084 {
00085 if (-1 === $this->_username) {
00086 $this->_username = Mage::getSingleton('customer/session')->getUsername(true);
00087 }
00088 return $this->_username;
00089 }
00090 }