diff options
| author | Simon | 2011-01-28 09:48:04 +0100 |
|---|---|---|
| committer | Simon | 2011-01-28 09:48:04 +0100 |
| commit | 24468f6a2244b07e7c56eb80523bf63341f486cd (patch) | |
| tree | 545fa06c2728023f36b2eb5b4c834783f210b456 /application/models/BootOs.php | |
| parent | settergetter für variablen - um nicht tausend sachen ändern zu müssen (diff) | |
| download | pbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.tar.gz pbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.tar.xz pbs2-24468f6a2244b07e7c56eb80523bf63341f486cd.zip | |
setter/getter geändert damit es Konvention setGrossbuchstabe() entspricht
Diffstat (limited to 'application/models/BootOs.php')
| -rw-r--r-- | application/models/BootOs.php | 85 |
1 files changed, 52 insertions, 33 deletions
diff --git a/application/models/BootOs.php b/application/models/BootOs.php index d4432d7..e97684d 100644 --- a/application/models/BootOs.php +++ b/application/models/BootOs.php @@ -48,72 +48,91 @@ class Application_Model_BootOs } - public function get_bootisoID() + public function getBootosID() { - return $this->_bootisoID; + return $this->_bootosID; } - - public function set_bootisoID($_bootisoID) + public function setBootosID($_bootosID) { - $this->_bootisoID = $_bootisoID; + $this->_bootosID = $_bootosID; } - - public function get_membershipID() + public function getConfigID() { - return $this->_membershipID; + return $this->_configID; } - - public function set_membershipID($_membershipID) + public function setConfigID($_configID) { - $this->_membershipID = $_membershipID; + $this->_configID = $_configID; } - - public function get_groupID() + public function getGroupID() { return $this->_groupID; } - - public function set_groupID($_groupID) + public function setGroupID($_groupID) { $this->_groupID = $_groupID; } - - public function get_serialnumber() + public function getTitle() { - return $this->_serialnumber; + return $this->_title; } - - public function set_serialnumber($_serialnumber) + public function setTitle($_title) { - $this->_serialnumber = $_serialnumber; + $this->_title = $_title; } - - public function get_created() + public function getDescription() + { + return $this->_description; + } + public function setDescription($_description) + { + $this->_description = $_description; + } + public function getPath_init() + { + return $this->_path_init; + } + public function setPath_init($_path_init) + { + $this->_path_init = $_path_init; + } + public function getPath_kernel() + { + return $this->_path_kernel; + } + public function setPath_kernel($_path_kernel) + { + $this->_path_kernel = $_path_kernel; + } + public function getDefaultkcl() + { + return $this->_defaultkcl; + } + public function setDefaultkcl($_defaultkcl) + { + $this->_defaultkcl = $_defaultkcl; + } + public function getCreated() { return $this->_created; } - - public function set_created($_created) + public function setCreated($_created) { $this->_created = $_created; } - - public function get_expires() + public function getExpires() { return $this->_expires; } - - public function set_expires($_expires) + public function setExpires($_expires) { $this->_expires = $_expires; } - - public function get_public() + public function getPublic() { return $this->_public; } - - public function set_public($_public) + public function setPublic($_public) { $this->_public = $_public; } |
