]> dev.renevier.net Git - syj.git/blobdiff - application/models/User.php
update copyright headers
[syj.git] / application / models / User.php
index 14d1588524c419bcbefae5744e8e7ef2b863b683..cb84533ac791a242aeebf9f66ed2ef4070ae2989 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/*  This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
+/*  This file is part of Syj, Copyright (c) 2010-2011 Arnaud Renevier,
     and is published under the AGPL license. */
 
 class Syj_Model_User extends Syj_Model_Generic
@@ -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);