Public Member Functions | |
getElementHtml () |
Definition at line 34 of file Apply.php.
getElementHtml | ( | ) |
Reimplemented from Varien_Data_Form_Element_Multiselect.
Definition at line 36 of file Apply.php.
00037 { 00038 $html = '<select onchange="toggleApplyVisibility(this)">' 00039 . '<option value="0">' . $this->getModeLabels('all'). '</option>' 00040 . '<option value="1" ' . ($this->getValue()==null ? '' : 'selected') . '>' . $this->getModeLabels('custom'). '</option>' 00041 . '</select><br /><br />'; 00042 00043 $html .= parent::getElementHtml(); 00044 return $html; 00045 }