yii::t('app', 'Username'), 'email' => yii::t('app', 'Email'), 'old_password' => yii::t('app', 'Old Password'), 'password' => yii::t('app', 'Password'), 'repassword' => yii::t('app', 'Repeat Password'), 'avatar' => yii::t('app', 'Avatar'), 'created_at' => yii::t('app', 'Created At'), 'updated_at' => yii::t('app', 'Updated At'), 'rememberMe' => yii::t('frontend', 'Remember Me'), ]; } /** * Validates the password. * This method serves as the inline validation for password. * * @param string $attribute the attribute currently being validated * @param array $params the additional name-value pairs given in the rule */ public function validatePassword($attribute, $params) { if (! $this->hasErrors()) { $user = $this->getUser(); if (! $user || ! $user->validatePassword($this->password)) { $this->addError($attribute, yii::t('app', 'Incorrect username or password.')); } } } /** * Logs in a user using the provided username and password. * * @return boolean whether the user is logged in successfully */ public function login() { if ($this->validate()) { return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0); } else { return false; } } /** * Finds user by [[username]] * * @return User|null */ protected function getUser() { if ($this->_user === null) { $this->_user = User::findByUsername($this->username); } return $this->_user; } }