Public Member Functions | |
__construct ($attributes=array()) | |
getElementHtml () |
Definition at line 34 of file Note.php.
__construct | ( | $ | attributes = array() |
) |
Enter description here...
array | $attributes |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 36 of file Note.php.
00037 { 00038 parent::__construct($attributes); 00039 $this->setType('note'); 00040 //$this->setExtType('textfield'); 00041 }
getElementHtml | ( | ) |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 43 of file Note.php.
00044 { 00045 $html = '<span id="' . $this->getId() . '">' . $this->getText() . '</span>'; 00046 $html.= $this->getAfterElementHtml(); 00047 return $html; 00048 }