Esempio n. 1
0
 public function checkUsernameExists()
 {
     if ($this->_glbUser === false) {
         $this->_glbUser = GlbUser::findByUsername($this->username);
     }
     if ($this->_glbUser !== null) {
         return $this->_glbUser;
     }
     return $this->_glbUser;
 }