Public Member Functions | |
initForm () |
Definition at line 34 of file View.php.
initForm | ( | ) |
Definition at line 36 of file View.php.
00037 { 00038 $form = new Varien_Data_Form(); 00039 $form->setHtmlIdPrefix('_view'); 00040 00041 $model = Mage::registry('current_convert_profile'); 00042 00043 $fieldset = $form->addFieldset('base_fieldset', array('legend'=>Mage::helper('adminhtml')->__('View Actions XML'))); 00044 00045 $fieldset->addField('actions_xml', 'textarea', array( 00046 'name' => 'actions_xml_view', 00047 'label' => Mage::helper('adminhtml')->__('Actions XML'), 00048 'title' => Mage::helper('adminhtml')->__('Actions XML'), 00049 'style' => 'width:500px; height:400px', 00050 'readonly' => 'readonly', 00051 )); 00052 00053 $form->setValues($model->getData()); 00054 00055 $this->setForm($form); 00056 00057 return $this; 00058 }