From 24468f6a2244b07e7c56eb80523bf63341f486cd Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 28 Jan 2011 09:48:04 +0100 Subject: setter/getter geƤndert damit es Konvention setGrossbuchstabe() entspricht --- application/models/BootMenuEntries.php | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'application/models/BootMenuEntries.php') 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; + } } -- cgit v1.2.3-55-g7522