如何使用system.xml在类别编辑中添加新选项卡? (Magento的)

时间:2013-03-19 11:33:53

标签: php xml magento

我想在屏幕截图中添加一个新标签,并使用我的扩展程序的system.xml填充字段等。

enter image description here

这可能吗?

2 个答案:

答案 0 :(得分:2)

要添加新的magento类别标签(管理类别页面/管理区域),请重写或简单地将文件从:core / Mage / Adminhtml / Block / Catalog / Category / Tabs.php复制到:local / Mage / Adminhtml /块/目录/分类/ Tabs.php。

在此代码之后的_prepareLayout方法中接下来:

$this->addTab(’products’, array( ‘label’ =>
Mage::helper(’catalog’)->__(’Category Products’), ‘content’ =>
$this->getLayout()->createBlock(’adminhtml/catalog_category_tab_product’,‘category.product.grid’)->toHtml(), ));

添加以下内容:

$this->addTab(’new_tab’, array(
‘label’ => Mage::helper(’catalog’)->__(’New Category Tab’),
‘content’ => $this->getLayout()->createBlock(’yourmodule/adminhtml_category_form’)->toHtml(),));

参数'content'指的是一个块,这个块需要添加到你正在使用的模块中,这里是块内容的例子:

<?php class Namespace_Module_Block_Adminhtml_Category_Form extends Mage_Adminhtml_Block_Widget_Form { 
    protected function _prepareForm(){
        $form = new Varien_Data_Form();
        $this->setForm($form);
        $fieldset = $form->addFieldset('custom_category_tab_form', array('legend'=>Mage::helper('catalog')->__('Custom Tab')));                                 $fieldset->addField('anytext', 'text', array('label'=> Mage::helper('catalog')->__('Any Text'),'name'=> 'anytext',));
        return parent::_prepareForm();     
        } 
    }

之后,为了能够将添加的选项卡字段保存到模块的表中,您需要添加事件观察器。将其添加到config.xml文件的“global”部分:

<events>
    <catalog_category_prepare_save >
        <observers>
            <yourmodule>
                <type>singleton</type>
                <class> yourmodule /observer</class>
                <method>categorySave</method>
            </ yourmodule >
        </observers>
    </catalog_category_prepare_save >
</events>

将观察者的模型添加到模块的“models”文件夹中:

<?php
 class Namespace_Module _Model_Observer
{
    public function categorySave($observer){
    $params = $observer->getRequest()->getParams();
    // now you could save your custom category params to your db table
    }
}

答案 1 :(得分:1)

您可以使用设置脚本

添加类别字段

/app/code/local/MagePal/AddCategoryFields/sql/addcategoryfields_setup/upgrade-0.9.5-0.9.8.php

$installer = $this;

$installer->startSetup();

$setup = new Mage_Eav_Model_Entity_Setup('core_setup');

$setup->addAttribute('catalog_category', 'magepal_category_fieldname', array(
    'group'         => 'My Tab',
    'input'         => 'text',
    'type'          => 'varchar',
    'label'         => 'Field desc',
    'backend'       => '',
    'visible'       => 1,
    'required'      => 0,
    'user_defined' => 1,
    'global'        => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));

//$setup->removeAttribute('catalog_category', 'magepal_category_fieldname');

$installer->endSetup();

请参阅How to add new custom category attribute in Magento