diff options
author | Simon | 2011-03-02 15:09:46 +0100 |
---|---|---|
committer | Simon | 2011-03-02 15:09:46 +0100 |
commit | 5d161755f849a2ec6b3ba80ea5690dd5c61f79d8 (patch) | |
tree | ff335f2e773f581512a135c3d3fbb141f55493bd /application/models/BootMenuEntries.php | |
parent | einricht script wegen mysql-pw geupdated (diff) | |
download | pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.gz pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.tar.xz pbs2-5d161755f849a2ec6b3ba80ea5690dd5c61f79d8.zip |
Die Models geändert da kein return der Objekte angegeben war && FilterController
Diffstat (limited to 'application/models/BootMenuEntries.php')
-rw-r--r-- | application/models/BootMenuEntries.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php index 8e86ace..0b88402 100644 --- a/application/models/BootMenuEntries.php +++ b/application/models/BootMenuEntries.php @@ -51,6 +51,7 @@ class Application_Model_BootMenuEntries public function setBootosID($_bootosID) { $this->_bootosID = $_bootosID; + return $this; } public function getBootmenuID() { @@ -59,6 +60,7 @@ class Application_Model_BootMenuEntries public function setBootmenuID($_bootmenuID) { $this->_bootmenuID = $_bootmenuID; + return $this; } public function getTitle() { @@ -67,6 +69,7 @@ class Application_Model_BootMenuEntries public function setTitle($_title) { $this->_title = $_title; + return $this; } public function getKcl() { @@ -75,6 +78,7 @@ class Application_Model_BootMenuEntries public function setKcl($_kcl) { $this->_kcl = $_kcl; + return $this; } public function getOrder() { @@ -83,6 +87,7 @@ class Application_Model_BootMenuEntries public function setOrder($_order) { $this->_order = $_order; + return $this; } } |