0

我想在界面中用magento创建新表,而不继承设置类。我试图获取设置的资源模型。这没有用:

require_once 'app/Mage.php';
Mage::init();

$setup = Mage::getResourceModel('catalog/setup');

我也在考虑,Mage::getResourceModel('core/resource_setup')但我有一个错误:Fatal error: Call to a member function startSetup() on a non-object in C:\xampp\ htdocs\LPP_MAGENTO_EE_CUSTOM\app\code\core\Mage\Core\Model\Resource\Setup.php on line 944

你有什么主意吗?(我看到了这个问题,但它对我不起作用)

4

1 回答 1

1

我使用$setup = Mage::getModel('eav/entity_setup', 'core_setup')示例在我的代码中为 Category 创建新属性:

require_once 'app/Mage.php';
Mage::init();
$setup = Mage::getModel('eav/entity_setup', 'core_setup');

$setup->addAttribute('catalog_category', 'xxx', array(
...
));
于 2012-07-10T07:32:40.947 回答