hasErrors()) { $user = $this->getUser(); if (!$user || !$user->validatePassword($this->password)) { $this->addError($attribute, 'Incorrect username or password.'); } } } /** * Logs in a user using the provided username and password. * * @return bool 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 Customer|null */ protected function getUser() { if ($this->_user === null) { $this->_user = Customer::findByUsername($this->username); } return $this->_user; } public function attributeLabels() { return [ 'username' => Yii::t('app', 'Логін'), 'password' => Yii::t('app', 'Пароль'), 'rememberMe' => Yii::t('app', 'Запам\'ятати'), ]; } }