*/ class Varien_Data_Form_Element_Note extends Varien_Data_Form_Element_Abstract { public function __construct($attributes=array()) { parent::__construct($attributes); $this->setType('note'); //$this->setExtType('textfield'); } public function getElementHtml() { $html = '' . $this->getText() . ''; $html.= $this->getAfterElementHtml(); return $html; } }