From 0e017ebdc1edbbf230f0f0160f103c39ef675725 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Sun, 6 Mar 2011 20:12:36 +0100 Subject: datenbank erweitert, BootMenu, Config fertig --- application/models/BootMenu.php | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'application/models/BootMenu.php') diff --git a/application/models/BootMenu.php b/application/models/BootMenu.php index 09a5c0d..da4e4d1 100644 --- a/application/models/BootMenu.php +++ b/application/models/BootMenu.php @@ -4,8 +4,9 @@ class Application_Model_BootMenu { protected $_bootmenuID; protected $_membershipID; + protected $_groupID; protected $_title; - protected $_time; + protected $_created; public function __construct(array $options = null) { @@ -62,6 +63,15 @@ class Application_Model_BootMenu $this->_membershipID = $_membershipID; return $this; } + public function getGroupID() + { + return $this->_groupID; + } + public function setGroupID($_groupID) + { + $this->_groupID = $_groupID; + return $this; + } public function getTitle() { return $this->_title; @@ -71,13 +81,13 @@ class Application_Model_BootMenu $this->_title = $_title; return $this; } - public function getTime() + public function getCreated() { - return $this->_time; + return $this->_created; } - public function setTime($_time) + public function setCreated($_created) { - $this->_time = $_time; + $this->_created = $_created; return $this; } /** -- cgit v1.2.3-55-g7522