diff options
Diffstat (limited to 'application/models/Session.php')
| -rw-r--r-- | application/models/Session.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Session.php b/application/models/Session.php index d8ae306..fa9979a 100644 --- a/application/models/Session.php +++ b/application/models/Session.php @@ -19,6 +19,7 @@ class Application_Model_Session protected $_bootosID; protected $_bootisoID; protected $_membershipID; + protected $_personID; protected $_time; protected $_ip; protected $_ip6; @@ -124,6 +125,15 @@ class Application_Model_Session $this->_membershipID = $_membershipID; return $this; } + public function getPersonID() + { + return $this->_personID; + } + public function setPersonID($_personID) + { + $this->_personID = $_personID; + return $this; + } public function getTime() { return $this->_time; |
