diff options
| author | Simon | 2011-03-07 13:58:52 +0100 |
|---|---|---|
| committer | Simon | 2011-03-07 13:58:52 +0100 |
| commit | b6ba854295aa777e7de70add9fb419ebc23b81c2 (patch) | |
| tree | 63a71bf3d312c6b5c0c0589536a354b9b6c86c06 /application/models/BootMenuEntries.php | |
| parent | Pool actions zum bearbeiten von Pools hinzugefügt (diff) | |
| parent | Bootmenuentries DB geaendert (diff) | |
| download | pbs2-b6ba854295aa777e7de70add9fb419ebc23b81c2.tar.gz pbs2-b6ba854295aa777e7de70add9fb419ebc23b81c2.tar.xz pbs2-b6ba854295aa777e7de70add9fb419ebc23b81c2.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/models/BootMenuEntries.php')
| -rw-r--r-- | application/models/BootMenuEntries.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php index d27fd20..ec42507 100644 --- a/application/models/BootMenuEntries.php +++ b/application/models/BootMenuEntries.php @@ -2,6 +2,7 @@ class Application_Model_BootMenuEntries { + protected $_bootmenuentriesID; protected $_bootosID; protected $_bootmenuID; protected $_title; @@ -45,6 +46,15 @@ class Application_Model_BootMenuEntries } return $this; } + public function getID() + { + return $this->_bootmenuentriesID; + } + public function setID($_bootmenuentriesID) + { + $this->_bootmenuentriesID = $_bootmenuentriesID; + return $this; + } public function getBootosID() { return $this->_bootosID; |
