From 38a1adce564a405684d3397b77a58bfc50d1d3e7 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Sun, 6 Mar 2011 16:16:43 +0100 Subject: Config fertig --- application/models/Config.php | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) (limited to 'application/models/Config.php') diff --git a/application/models/Config.php b/application/models/Config.php index b9a29dc..8107705 100644 --- a/application/models/Config.php +++ b/application/models/Config.php @@ -3,7 +3,8 @@ class Application_Model_Config { protected $_configID; - protected $_membershipID; + protected $_groupID; + protected $_title; protected $_shellscript; public function __construct(array $options = null) @@ -53,13 +54,13 @@ class Application_Model_Config $this->_configID = $_configID; return $this; } - public function getMembershipID() + public function getGroupID() { - return $this->_membershipID; + return $this->_groupID; } - public function setMembershipID($_membershipID) + public function setGroupID($_groupID) { - $this->_membershipID = $_membershipID; + $this->_groupID = $_groupID; return $this; } public function getShellscript() @@ -71,6 +72,17 @@ class Application_Model_Config $this->_shellscript = $_shellscript; return $this; } + public function getTitle() + { + return $this->_title; + } + public function setTitle($_title) + { + $this->_title = $_title; + return $this; + } + + /** * Returns current data as associative array using ReflectionClass * -- cgit v1.2.3-55-g7522