Public Member Functions | |
__construct ($attributes=array()) | |
getHtml () |
Definition at line 34 of file Submit.php.
__construct | ( | $ | attributes = array() |
) |
Enter description here...
array | $attributes |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 36 of file Submit.php.
00037 { 00038 parent::__construct($attributes); 00039 $this->setExtType('submit'); 00040 $this->setType('submit'); 00041 }
getHtml | ( | ) |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 43 of file Submit.php.
00044 { 00045 $this->addClass('submit'); 00046 return parent::getHtml(); 00047 }