Public Member Functions | |
__construct ($attributes=array()) | |
getHtml () | |
getHtmlAttributes () |
Definition at line 34 of file Text.php.
__construct | ( | $ | attributes = array() |
) |
Enter description here...
array | $attributes |
Reimplemented from Varien_Data_Form_Element_Abstract.
Reimplemented in Mage_Adminhtml_Block_Catalog_Product_Helper_Form_Price.
Definition at line 36 of file Text.php.
00037 { 00038 parent::__construct($attributes); 00039 $this->setType('text'); 00040 $this->setExtType('textfield'); 00041 }
getHtml | ( | ) |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 43 of file Text.php.
00044 { 00045 $this->addClass('input-text'); 00046 return parent::getHtml(); 00047 }
getHtmlAttributes | ( | ) |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 49 of file Text.php.
00050 { 00051 return array('type', 'title', 'class', 'style', 'onclick', 'onchange', 'disabled', 'readonly', 'maxlength'); 00052 }