id = $id; } /** * @return string */ public function getEditPart() { $partname = $this->getPartName(); $ret = "
"; $ret .= ""; if(isset($this->id)) $ret .= ""; $ret .= $this->getEditMarkup(); $ret .= '  '; $idPart = ''; if(isset($this->id)) $idPart = "&id=" . $this->id; $ret .= ''; $ret .= '
'; return $ret; } abstract protected function getEditMarkup(); /** * @return string */ abstract protected function getEditContent(); /** * @return string */ protected function getViewContent() { $content = $this->getEditContent(); if(empty($content)) { return 'Kein Wert wurde vergeben'; } else return $content; } /** * @return string */ public function getViewPart() { $idPart = ''; if(isset($this->id)) $idPart = "&id={$this->id}"; $ret = ""; $ret .= $this->getViewContent(); $ret .= ""; return $ret; } protected function getEditSymbolSize() { return '120%'; } }