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.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;