Exemplo n.º 1
0
 function insert()
 {
     if ($this->select(array('username' => $this->username))) {
         return false;
     } else {
         $this->password = Auth::get_instance()->create_hashed_password($this->password);
         // TODO: This looks strange, "create_hashed_password" method should be renamed to encrypted string or something
         $this->api_token = Auth::get_instance()->create_hashed_password($this->username);
         return parent::insert();
     }
 }