HTML_QuickForm_textarea($elementName, $elementLabel, $attributes);
if (!is_null($value)) {
$this->setValue($value);
}
}
function getFrozenHtml()
{
return $this->getValue();
}
function toHtml()
{
$objName = str_replace(array(']', '['), array('', '_'), $this->getName());
if (!array_key_exists('id', $this->_attributes)) {
$this->_attributes['id'] = 'id_' . $objName;
}
$html = parent::toHtml();
if (!$this->_flagFrozen) {
$html .= '
';
}
return $html;
}
}