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/Config.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'application/models/Config.php') diff --git a/application/models/Config.php b/application/models/Config.php index 8107705..1fbac0a 100644 --- a/application/models/Config.php +++ b/application/models/Config.php @@ -4,8 +4,10 @@ class Application_Model_Config { protected $_configID; protected $_groupID; + protected $_membershipID; protected $_title; protected $_shellscript; + protected $_created; public function __construct(array $options = null) { @@ -63,6 +65,15 @@ class Application_Model_Config $this->_groupID = $_groupID; return $this; } + public function getMembershipID() + { + return $this->_membershipID; + } + public function setMembershipID($_membershipID) + { + $this->_membershipID = $_membershipID; + return $this; + } public function getShellscript() { return $this->_shellscript; @@ -81,7 +92,15 @@ class Application_Model_Config $this->_title = $_title; return $this; } - + public function getCreated() + { + return $this->_created; + } + public function setCreated($_created) + { + $this->_created = $_created; + return $this; + } /** * Returns current data as associative array using ReflectionClass -- cgit v1.2.3-55-g7522