Mage_Adminhtml_Block_System_Convert_Gui_Edit_Tab_View Class Reference

Inheritance diagram for Mage_Adminhtml_Block_System_Convert_Gui_Edit_Tab_View:

Mage_Adminhtml_Block_Widget_Form Mage_Adminhtml_Block_Widget Mage_Adminhtml_Block_Template Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object

List of all members.

Public Member Functions

 initForm ()


Detailed Description

Definition at line 34 of file View.php.


Member Function Documentation

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     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:23:03 2009 for Magento by  doxygen 1.5.8