summaryrefslogtreecommitdiffstats
path: root/application/models/Session.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Session.php')
-rw-r--r--application/models/Session.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/Session.php b/application/models/Session.php
index 7ae7fe8..8c130b5 100644
--- a/application/models/Session.php
+++ b/application/models/Session.php
@@ -8,6 +8,7 @@ class Application_Model_Session
protected $_bootmenuentryID;
protected $_bootosID;
protected $_bootisoID;
+ protected $_membershipID;
protected $_time;
protected $_ip;
protected $_ip6;
@@ -104,6 +105,15 @@ class Application_Model_Session
$this->_bootisoID = $_bootisoID;
return $this;
}
+ public function getMembershipID()
+ {
+ return $this->_membershipID;
+ }
+ public function setMembershipID($_membershipID)
+ {
+ $this->_membershipID = $_membershipID;
+ return $this;
+ }
public function getTime()
{
return $this->_time;