entryName = $entryName; } public function render($value = null) { $wrap = $this->getWrapElements(); $returnString = "
\n\t"; $returnString .= $wrap[0]; $returnString .= $this->getLabelTag(); $returnString .= $wrap[1]; $returnString .= Html_Form::radio($this->entryName,$value,$this->options,$this->className, 'after', $this->idName); $returnString .= $wrap[2]; $returnString .="
\n"; return $returnString; } }