*/ class Mage_Adminhtml_Block_System_Convert_Gui_Edit_Tab_View extends Mage_Adminhtml_Block_Widget_Form { public function initForm() { $form = new Varien_Data_Form(); $form->setHtmlIdPrefix('_view'); $model = Mage::registry('current_convert_profile'); $fieldset = $form->addFieldset('base_fieldset', array( 'legend'=>Mage::helper('adminhtml')->__('View Actions XML'), 'class'=>'fieldset-wide' )); $fieldset->addField('actions_xml', 'textarea', array( 'name' => 'actions_xml_view', 'label' => Mage::helper('adminhtml')->__('Actions XML'), 'title' => Mage::helper('adminhtml')->__('Actions XML'), 'style' => 'height:30em', 'readonly' => 'readonly', )); $form->setValues($model->getData()); $this->setForm($form); return $this; } }