hasErrors()) { $user = $this->getUser(); if (!$user || $user->pass != $this->pass) { $this->addError($attribute, 'Неправильный логин или пароль'); } } } /** * Logs in a user using the provided email 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 [[email]] * * @return User|null */ protected function getUser() { if ($this->_user === null) { $this->_user = Accounts::findByEmail($this->email); } return $this->_user; } }