diff options
author | Simon | 2011-03-14 13:18:21 +0100 |
---|---|---|
committer | Simon | 2011-03-14 13:18:21 +0100 |
commit | c4ab2b2f9a88409fbd78325a4d2c19fcb4ed340c (patch) | |
tree | a2e6fe7eaa589ad71b4df87d74809c03ff80e403 /application/models/Session.php | |
parent | Resource an alphasession angepasst (diff) | |
download | pbs2-c4ab2b2f9a88409fbd78325a4d2c19fcb4ed340c.tar.gz pbs2-c4ab2b2f9a88409fbd78325a4d2c19fcb4ed340c.tar.xz pbs2-c4ab2b2f9a88409fbd78325a4d2c19fcb4ed340c.zip |
Membership in Session eingefügt, Filtertypes nur einmal per Script einfügen, auskommentierten Code entfernt
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 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; |