예제 #1
0
파일: User.php 프로젝트: laiello/crindigan
 /**
  * Clears the user's autologin information.
  */
 public function clearAutoLogin()
 {
     // no params clears the autologin
     $this->_model->updateAutoLogin($this->id);
     $this->_input->setCookie('autologin', null);
     $this->_input->setCookie('userid', null);
 }