diff options
Diffstat (limited to 'application/models/Person.php')
| -rw-r--r-- | application/models/Person.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Person.php b/application/models/Person.php index 8eb96bb..9a44657 100644 --- a/application/models/Person.php +++ b/application/models/Person.php @@ -15,6 +15,7 @@ class Application_Model_Person protected $_email; protected $_login; protected $_password; + protected $_password_salt; public function __construct(array $options = null) { @@ -171,5 +172,14 @@ class Application_Model_Person $this->_password = $_password; return $this; } + public function setPasswordSalt($_password_salt) + { + $this->_password_salt = $_password_salt; + return $this; + } + public function getPasswordSalt($_password_salt) + { + return $this->_password_salt; + } } |
