Public Member Functions | |
__construct () | |
Protected Member Functions | |
_prepareForm () |
Definition at line 34 of file Form.php.
__construct | ( | ) |
Class constructor
Reimplemented from Mage_Adminhtml_Block_Widget_Form.
Definition at line 36 of file Form.php.
00037 { 00038 parent::__construct(); 00039 $this->setId('currency_edit_form'); 00040 $this->setTitle(Mage::helper('adminhtml')->__('Currency Information')); 00041 }
_prepareForm | ( | ) | [protected] |
Prepare form before rendering HTML
Reimplemented from Mage_Adminhtml_Block_Widget_Form.
Definition at line 43 of file Form.php.
00044 { 00045 $form = new Varien_Data_Form(array('id' => 'currency_edit_form', 'action' => $this->getData('action'), 'method' => 'post')); 00046 $form->setUseContainer(true); 00047 $this->setForm($form); 00048 return parent::_prepareForm(); 00049 }