ฉันกำลังพยายามเพิ่มหมวดหมู่พิเศษลงในแท็บข้อมูลทั่วไปฉันได้ลองเพิ่มแล้วโดยใช้รหัสต่อไปนี้
require_once("app/Mage.php");
Mage::app('default');
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
$installer = new Mage_Eav_Model_Entity_Setup('core_setup');
$entityTypeId = $installer->getEntityTypeId('catalog_category');
$attributeSetId = $installer->getDefaultAttributeSetId($entityTypeId);
$attributeGroupId = $installer->getDefaultAttributeGroupId($entityTypeId, $attributeSetId);
$installer->addAttribute('catalog_category', 'nav_left', array(
'type' => 'tinyint',
'label' => 'Show in left navgigation',
'input' => 'boolean',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false,
'user_defined' => false,
'default' => 0
));
$installer->addAttributeToGroup(
$entityTypeId,
$attributeSetId,
$attributeGroupId,
'nav_left',
'11'
//last Magento's attribute position in General tab is 10
);
$attributeId = $installer->getAttributeId($entityTypeId, 'nav_left');
$installer->run("
INSERT INTO `{$installer->getTable('catalog_category_entity_int')}`
(`entity_type_id`, `attribute_id`, `entity_id`, `value`)
SELECT '{$entityTypeId}', '{$attributeId}', `entity_id`, '1'
FROM `{$installer->getTable('catalog_category_entity')}`;
");
นี่ใช้งานได้ดี แต่นี่เป็นการเพิ่มแท็บข้อมูลเพิ่มเติมที่ตั้งชื่อGeneral
ทางด้านขวาของgeneral infomation tab
i ได้ลองเพิ่มไปยังแท็บแรกโดยใช้attributeGroupId
set เป็น 4 แต่หลังจากการทดสอบมันเพิ่งจะพังเว็บไซต์
แนวคิดใด ๆ ที่ฉันสามารถเพิ่มแอตทริบิวต์นั้นในแท็บแรกได้