diff options
| author | Simon | 2011-03-06 18:24:51 +0100 |
|---|---|---|
| committer | Simon | 2011-03-06 18:24:51 +0100 |
| commit | 398f25856f0f8a398fd9326eb027816ee035b7a6 (patch) | |
| tree | 24cc098acaa80cb5a912e87ce245f4199999b8c8 /application/models/Config.php | |
| parent | print_a funktion zum debugging hinzugefügt damit sie von überall benutzbar ... (diff) | |
| parent | Config fertig (diff) | |
| download | pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.tar.gz pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.tar.xz pbs2-398f25856f0f8a398fd9326eb027816ee035b7a6.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
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 * |
