我使用以下代码在我的 Magento 安装中添加了一个自定义类别属性:
<?php
// initialize magento environment for 'default' store
require_once 'app/Mage.php';
Mage::app('default');
echo "initialising";
echo runAdd();
echo "finishing";
function runAdd()
{
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
// below code will add text attribute
$setup->addAttribute('catalog_category', 'test_field', array(
'group' => 'General',
'input' => 'text',
'type' => 'varchar',
'label' => 'a new text field',
'backend' => '',
'visible' => 1,
'required' => 0,
'user_defined' => 1,
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL,
));
}
实际上,我很难检索我在后端设置的值。我尝试了以下所有变体:
$_category = Mage::getModel('catalog/category')->load(1000);
$data = $_category->getData();
$atts= $_category->getAttributes();
var_dump($data );
var_dump($atts);
等等,但我被卡住了。
有谁知道我将如何检索这些数据?