Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created December 31, 2014 19:22
Show Gist options
  • Select an option

  • Save evercode1/a7c4426968d2d6e42ce8 to your computer and use it in GitHub Desktop.

Select an option

Save evercode1/a7c4426968d2d6e42ce8 to your computer and use it in GitHub Desktop.
login Chap 7
public function login()
{
if ($this->validate() && $this->getUser()->status_id == ValueHelpers::getStatusValue('Active')) {
return Yii::$app->user->login($this->getUser(), $this->rememberMe ? 3600 * 24 * 30 : 0);
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment