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

时间:2015-11-17 06:57:04

标签: magento admin

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

enter image description here

由于

1 个答案:

答案 0 :(得分:1)

假设您要添加“标题字段”。

您必须在此文件中添加以下代码,即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',
  ));
相关问题