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/BootMenuEntries.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/BootMenuEntries.php')
-rw-r--r-- | application/models/BootMenuEntries.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php index 0d2b5cd..3bb05ea 100644 --- a/application/models/BootMenuEntries.php +++ b/application/models/BootMenuEntries.php @@ -38,6 +38,46 @@ class Application_Model_BootMenuEntries } return $this; } + public function getBootosID() + { + return $this->_bootosID; + } + public function setBootosID($_bootosID) + { + $this->_bootosID = $_bootosID; + } + public function getBootmenuID() + { + return $this->_bootmenuID; + } + public function setBootmenuID($_bootmenuID) + { + $this->_bootmenuID = $_bootmenuID; + } + public function getTitle() + { + return $this->_title; + } + public function setTitle($_title) + { + $this->_title = $_title; + } + public function getKcl() + { + return $this->_kcl; + } + public function setKcl($_kcl) + { + $this->_kcl = $_kcl; + } + public function getOrder() + { + return $this->_order; + } + public function setOrder($_order) + { + $this->_order = $_order; + } } |