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/BootIso.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/BootIso.php')
| -rw-r--r-- | application/models/BootIso.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php index ce38fde..706a0a2 100644 --- a/application/models/BootIso.php +++ b/application/models/BootIso.php @@ -56,6 +56,7 @@ class Application_Model_BootIso public function set_membershipID($_membershipID) { $this->_membershipID = $_membershipID; + return $this; } public function get_groupID() @@ -66,6 +67,7 @@ class Application_Model_BootIso public function set_groupID($_groupID) { $this->_groupID = $_groupID; + return $this; } public function get_serialnumber() @@ -76,6 +78,7 @@ class Application_Model_BootIso public function set_serialnumber($_serialnumber) { $this->_serialnumber = $_serialnumber; + return $this; } public function get_created() @@ -86,6 +89,7 @@ class Application_Model_BootIso public function set_created($_created) { $this->_created = $_created; + return $this; } public function get_expires() @@ -96,6 +100,7 @@ class Application_Model_BootIso public function set_expires($_expires) { $this->_expires = $_expires; + return $this; } public function get_public() @@ -106,6 +111,7 @@ class Application_Model_BootIso public function set_public($_public) { $this->_public = $_public; + return $this; } public function get_bootisoID() @@ -116,6 +122,7 @@ class Application_Model_BootIso public function set_bootisoID($_bootisoID) { $this->_bootisoID = $_bootisoID; + return $this; } } |
