value = DataHelper::checkForEmptyValue($value); $this->itemName = $itemName; $this->usergroup = $usergroup; } public function getUsergroup() { return $this->usergroup; } /** * @SuppressWarnings(PHPMD.StaticAccess) * @inheritdoc */ public function getDomSubtree(\DOMDocument $document) { $valueElem = XMLHelper::createElementWithText($document, $this->itemName, $this->value); return $valueElem; } /** * @inheritdoc */ public function getCsvFragment() { return $this->value; } }