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