groupName = isset($parameter['groupName']) ? $parameter['groupName'] : null; $this->groupId = isset($parameter['groupId']) ? $parameter['groupId'] : null; $this->groupDescription = isset($parameter['groupDescription']) ? $parameter['groupDescription'] : null; $this->renderer = isset($parameter['renderer']) ? $parameter['renderer'] : null; $this->description = isset($parameter['description']) ? $parameter['description'] : null; $this->helpText = isset($parameter['helpText']) ? $parameter['helpText'] : null; } /** * put your comment there... * * @param mixed $value */ public function addValue($value) { // Add value model to the values list. $this->values[] = $value; // Chaining. return $this; } /** * put your comment there... * */ public function getDescription() { return $this->description; } /** * put your comment there... * */ public function getGroupDescription() { return $this->groupDescription; } /** * put your comment there... * */ public function getGroupId() { return $this->groupId; } /** * put your comment there... * */ public function getGroupName() { return $this->groupName; } /** * put your comment there... * */ public function getHelpText() { return $this->helpText; } /** * put your comment there... * */ public function getOriginalType() { return parent::getType(); } /** * put your comment there... * */ public function getRenderer() { return $this->renderer; } /** * put your comment there... * */ public function getType() { return $this->getRenderer(); } /** * put your comment there... * */ public function getValues() { return $this->values; } } // End class.