Public Member Functions | |
__construct ($attributes=array()) | |
getDefaultHtml () |
Definition at line 34 of file Hidden.php.
__construct | ( | $ | attributes = array() |
) |
Enter description here...
array | $attributes |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 36 of file Hidden.php.
00037 { 00038 parent::__construct($attributes); 00039 $this->setType('hidden'); 00040 $this->setExtType('hiddenfield'); 00041 }
getDefaultHtml | ( | ) |
Reimplemented from Varien_Data_Form_Element_Abstract.
Definition at line 43 of file Hidden.php.
00044 { 00045 $html = $this->getData('default_html'); 00046 if (is_null($html)) { 00047 $html = $this->getElementHtml(); 00048 } 00049 return $html; 00050 }