yii上陸の一点延長について

2246 ワード

ユーザーがログインするときはメールボックスが検証されたかどうかを判定する必要があります!
useridentifyで
class UserIdentity extends CUserIdentity
{
    /**
     * Authenticates a user.
     * The example implementation makes sure if the username and password
     * are both 'demo'.
     * In practical applications, this should be changed to authenticate
     * against some persistent user identity storage (e.g. database).
     * @return boolean whether authentication succeeds.
     */
    public $_id;
    const ERROR_STATUS_INVALID=11;
    public function authenticate()
    {
        $user=SandUser::model()->findByAttributes(array('username'=>$this->username));
        if($user==null){
            $this->errorCode=self::ERROR_USERNAME_INVALID;
        }elseif($user->status == 0){
            $this->errorCode=self::ERROR_STATUS_INVALID;
        }elseif(!userSalt::vertifySalt($this->username, $this->password)){
            $this->errorCode=self::ERROR_PASSWORD_INVALID;
        }else {
            $this->_id=$user->userid;
            $this->errorCode=self::ERROR_NONE;
        }
        return $this->errorCode;

    }

    public function getId()
    {
        return $this->_id;
    }
}

新しい変数を定義し、statusの状態を盛放します.ここでは11に設定します(trueの他の値でも構いません).
この方法authenticateはモデルloginformで使用され、loginformに入ります.
public function authenticate($attribute,$params)
	{
		if(!$this->hasErrors())
		{
			$this->_identity=new UserIdentity($this->username,$this->password);
			if($this->_identity->authenticate()== 1 && $this->_identity->authenticate() == 2){
				$this->addError('password',' ');}
            elseif($this->_identity->authenticate() == 11){
                Yii::app()->user->setFlash("error", " , , " );
            }
		}
	}

従来の判定方法を変更した.
ログインしたビューファイルでは、次のようになります.
<?php if(Yii::app()->user->hasFlash('error')){ ?>
    <div class="flash-error">
        <?php echo Yii::app()->user->getFlash('error'); ?>
    </div>
<?php } ?>

これにより,ユーザのメールボックス状態が検証されていない場合,メールボックス検証を求めるメッセージが表示される.