diff options
| author | Simon | 2011-03-08 16:40:30 +0100 |
|---|---|---|
| committer | Simon | 2011-03-08 16:40:30 +0100 |
| commit | 90daca1a5ec239dfb7f44e54f1c22cf299181143 (patch) | |
| tree | a8e91fd36e90e8a5dcedfcaeaa92099b5ca962f8 /application/models/Session.php | |
| parent | session hinzugefügt (diff) | |
| download | pbs2-90daca1a5ec239dfb7f44e54f1c22cf299181143.tar.gz pbs2-90daca1a5ec239dfb7f44e54f1c22cf299181143.tar.xz pbs2-90daca1a5ec239dfb7f44e54f1c22cf299181143.zip | |
create, edit, delete session - fehlt noch mit selectboxen && sql-data abgeändert
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 b042c17..ca07ccb 100644 --- a/application/models/Session.php +++ b/application/models/Session.php @@ -5,6 +5,7 @@ class Application_Model_Session protected $_sessionID; protected $_clientID; protected $_bootosID; + protected $_bootisoID; protected $_time; protected $_ip; protected $_ip6; @@ -74,6 +75,15 @@ class Application_Model_Session $this->_bootosID = $_bootosID; return $this; } + public function getBootisoID() + { + return $this->_bootisoID; + } + public function setBootisoID($_bootisoID) + { + $this->_bootisoID = $_bootisoID; + return $this; + } public function getTime() { return $this->_time; |
