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::select($this->entryName,$value,$this->options,$this->className, $this->idName);
$returnString .= $wrap[2];
$returnString .="
\n";
return $returnString;
}
}