summaryrefslogtreecommitdiffstats
path: root/application/models/Session.php
diff options
context:
space:
mode:
authorSimon2011-03-11 13:58:40 +0100
committerSimon2011-03-11 13:58:40 +0100
commit004acecbfd04608b4b366f26670b2dfe19f48382 (patch)
treed4d43f91b8f01cbdf088a95d881aeaf6cf1fec3a /application/models/Session.php
parentbootos12 geadded (diff)
downloadpbs2-004acecbfd04608b4b366f26670b2dfe19f48382.tar.gz
pbs2-004acecbfd04608b4b366f26670b2dfe19f48382.tar.xz
pbs2-004acecbfd04608b4b366f26670b2dfe19f48382.zip
session geändert
Diffstat (limited to 'application/models/Session.php')
-rw-r--r--application/models/Session.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/application/models/Session.php b/application/models/Session.php
index ca07ccb..7ae7fe8 100644
--- a/application/models/Session.php
+++ b/application/models/Session.php
@@ -3,7 +3,9 @@
class Application_Model_Session
{
protected $_sessionID;
+ protected $_alphasessionID;
protected $_clientID;
+ protected $_bootmenuentryID;
protected $_bootosID;
protected $_bootisoID;
protected $_time;
@@ -57,6 +59,15 @@ class Application_Model_Session
$this->_sessionID = $_sessionID;
return $this;
}
+ public function getAlphasessionID()
+ {
+ return $this->_alphasessionID;
+ }
+ public function setAlphasessionID($_alphasessionID)
+ {
+ $this->_alphasessionID = $_alphasessionID;
+ return $this;
+ }
public function getClientID()
{
return $this->_clientID;
@@ -66,6 +77,15 @@ class Application_Model_Session
$this->_clientID = $_clientID;
return $this;
}
+ public function getBootmenuentryID()
+ {
+ return $this->_bootmenuentryID;
+ }
+ public function setBootmenuentryID($_bootmenuentryID)
+ {
+ $this->_bootmenuentryID = $_bootmenuentryID;
+ return $this;
+ }
public function getBootosID()
{
return $this->_bootosID;