我正在尝试在我的登录名中添加新的自定义错误,如果 user_status 为 '0' 那么它应该给出错误,我按如下方式进行:
用户身份.php
const ERROR_USERNAME_INACTIVE=68;
public function authenticate()
{
$user = Users::model()->findByAttributes(array('email'=>$this->username));
if ($user===null)
{
$this->errorCode=self::ERROR_USERNAME_INVALID;
}
else if ($user->password !== md5($this->password))
{
$this->errorCode=self::ERROR_PASSWORD_INVALID;
}
else if($user->user_status !='1')
{
$this->errorCode=self::ERROR_USERNAME_INACTIVE;
}
else
{
$this->errorCode=self::ERROR_NONE;
$this->_id = $user->id;
}
return !$this->errorCode;
}
在 login.php 中
case UserIdentity::ERROR_NONE:
Yii::app()->user->login($identity);
break;
case UserIdentity::ERROR_USERNAME_INVALID:
$this->addError('username','No Such user is associated with us .');
break;
case UserIdentity::ERROR_USERNAME_INACTIVE:
$this->addError('user_status','Sorry, this user is not activated yet');
default: // UserIdentity::ERROR_PASSWORD_INVALID
$this->addError('password','Password is incorrect.');
break;
现在我遇到的问题是,当 user_Status 为 !=1 时,它会正确给出错误,但也会给出,密码不正确,而密码正确