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/BootMenu.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/BootMenu.php')
| -rw-r--r-- | application/models/BootMenu.php | 42 |
1 files changed, 17 insertions, 25 deletions
diff --git a/application/models/BootMenu.php b/application/models/BootMenu.php index 0cf0443..3b1cc41 100644 --- a/application/models/BootMenu.php +++ b/application/models/BootMenu.php @@ -43,46 +43,38 @@ class Application_Model_BootMenu } return $this; } - - - public function get_bootmenuID() + + public function getID() { - return $this->_bootmenuID; + return $this->_bootmenuID; } - - public function set_bootmenuID($_bootmenuID) + public function setID($_bootmenuID) { - $this->_bootmenuID = $_bootmenuID; + $this->_bootmenuID = $_bootmenuID; } - - public function get_membershipID() + public function getMembershipID() { - return $this->_membershipID; + return $this->_membershipID; } - - public function set_membershipID($_membershipID) + public function setMembershipID($_membershipID) { - $this->_membershipID = $_membershipID; + $this->_membershipID = $_membershipID; } - - public function get_title() + public function getTitle() { - return $this->_title; + return $this->_title; } - - public function set_title($_title) + public function setTitle($_title) { - $this->_title = $_title; + $this->_title = $_title; } - - public function get_time() + public function getTime() { - return $this->_time; + return $this->_time; } - - public function set_time($_time) + public function setTime($_time) { - $this->_time = $_time; + $this->_time = $_time; } } |
