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/BootOs.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/BootOs.php')
| -rw-r--r-- | application/models/BootOs.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/application/models/BootOs.php b/application/models/BootOs.php index e97684d..57d1423 100644 --- a/application/models/BootOs.php +++ b/application/models/BootOs.php @@ -55,6 +55,7 @@ class Application_Model_BootOs public function setBootosID($_bootosID) { $this->_bootosID = $_bootosID; + return $this; } public function getConfigID() { @@ -63,6 +64,7 @@ class Application_Model_BootOs public function setConfigID($_configID) { $this->_configID = $_configID; + return $this; } public function getGroupID() { @@ -71,6 +73,7 @@ class Application_Model_BootOs public function setGroupID($_groupID) { $this->_groupID = $_groupID; + return $this; } public function getTitle() { @@ -79,6 +82,7 @@ class Application_Model_BootOs public function setTitle($_title) { $this->_title = $_title; + return $this; } public function getDescription() { @@ -87,6 +91,7 @@ class Application_Model_BootOs public function setDescription($_description) { $this->_description = $_description; + return $this; } public function getPath_init() { @@ -95,6 +100,7 @@ class Application_Model_BootOs public function setPath_init($_path_init) { $this->_path_init = $_path_init; + return $this; } public function getPath_kernel() { @@ -103,6 +109,7 @@ class Application_Model_BootOs public function setPath_kernel($_path_kernel) { $this->_path_kernel = $_path_kernel; + return $this; } public function getDefaultkcl() { @@ -111,6 +118,7 @@ class Application_Model_BootOs public function setDefaultkcl($_defaultkcl) { $this->_defaultkcl = $_defaultkcl; + return $this; } public function getCreated() { @@ -119,6 +127,7 @@ class Application_Model_BootOs public function setCreated($_created) { $this->_created = $_created; + return $this; } public function getExpires() { @@ -127,6 +136,7 @@ class Application_Model_BootOs public function setExpires($_expires) { $this->_expires = $_expires; + return $this; } public function getPublic() { @@ -135,6 +145,7 @@ class Application_Model_BootOs public function setPublic($_public) { $this->_public = $_public; + return $this; } } |
