]> dev.renevier.net Git - syj.git/blobdiff - application/models/User.php
allow anonymous routes creation
[syj.git] / application / models / User.php
index 14d1588524c419bcbefae5744e8e7ef2b863b683..f541af3e7a8ef0dc464cf97cfe1f6a4d66000d02 100644 (file)
@@ -9,7 +9,6 @@ class Syj_Model_User extends Syj_Model_Generic
     protected $_password;
     protected $_email;
     protected $_lang;
-    protected $_creation_addr;
 
     public function setId($id) {
         $this->_id = (int) $id;
@@ -56,15 +55,6 @@ class Syj_Model_User extends Syj_Model_Generic
         return $this->_lang;
     }
 
-    public function setCreationAddr($creation_addr) {
-        $this->_creation_addr = (string) $creation_addr;
-        return $this;
-    }
-
-    public function getCreationAddr() {
-        return $this->_creation_addr;
-    }
-
     public function notifyPendings() {
         $pendingMapper = new Syj_Model_PendingMapper();
         $pendings = $pendingMapper->fetchForUser($this);