'',
'after'=>'',
);
function HTML_QuickForm_extended_select($elementName=null, $elementLabel=null, $options=null, $attributes=null, $_exOpt = array())
{
HTML_QuickForm_select::HTML_QuickForm_select($elementName, $elementLabel, $options, $attributes);
$this->_exOpt = $_exOpt;
}
function toHtml()
{
return $this->_exOpt['before'] . parent::toHtml() . $this->_exOpt['after'];
}
}
?>