diff options
| author | michael pereira | 2011-03-06 16:16:43 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-06 16:16:43 +0100 |
| commit | 38a1adce564a405684d3397b77a58bfc50d1d3e7 (patch) | |
| tree | 6e4fc0ba8b22c2911554155329d030bca9331428 /application/models/Config.php | |
| parent | aufgeraeumt (diff) | |
| download | pbs2-38a1adce564a405684d3397b77a58bfc50d1d3e7.tar.gz pbs2-38a1adce564a405684d3397b77a58bfc50d1d3e7.tar.xz pbs2-38a1adce564a405684d3397b77a58bfc50d1d3e7.zip | |
Config fertig
Diffstat (limited to 'application/models/Config.php')
| -rw-r--r-- | application/models/Config.php | 22 |
1 files changed, 17 insertions, 5 deletions
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 * |
