在 Magento 管理面板中添加输入字段

Add input field in Magento Admin Panel

如何在下面的 Magento 管理面板屏幕截图中添加 <input type ="text"/> 字段以接收值?

谢谢

假设您要添加 "Title field".

您必须在此文件中添加以下代码,即 Am/Blog/Block/Adminhtml/Blog/Edit/Tab/Form.php

  $fieldset->addField('title', 'text', array(
      'label'     => Mage::helper('blog')->__('Title'),
      'class'     => 'required-entry',
      'required'  => true,
      'name'      => 'title',
  ));