_element, $name); } /** * * renders the html form element * * @return string the html code of the element */ public function render() { $value = $this->getValue(); $localizedValue = LocaleFormat::getInstance()->numericToLocalized($value, true); $multiple = ($this->getMultiple() === true) ? $this->_brackets : ''; return $this->getPrefix() . ' ' . 'renderAttributes() . 'value="' . $localizedValue . '" ' . $this->_endTag . ' ' . $this->getSuffix(); } }