我尝试覆盖magento enterprise catalogevent block,但它导致同样的错误:致命错误:在.. \ www \ app \中的非对象上调用成员函数setData()第129行的code \ core \ Mage \ Adminhtml \ Block \ Widget \ Form \ Container.php 我的新模块config.xml:
<global>
<blocks>
<ss_todaysevents>
<class>Ssd_Todaysevents_Block</class>
</ss_todaysevents>
<enterprise_catalogevent>
<rewrite>
<adminhtml_event_edit_form>
Ss_TodaysEvents_Block_Adminhtml_Event_Edit_Form
</adminhtml_event_edit_form>
</rewrite>
</enterprise_catalogevent>
</blocks>
</global>
Ss_TodaysEvents_Block_Adminhtml_Event_Edit_Form类位于.. \ www \ app \ code \ local \ Ss \ TodaysEvents \ Block \ Adminhtml \ Event \ Edit \ Form.php中,并具有以下代码:
class Ss_TodaysEvents_Block_Adminhtml_Event_Edit_Form extends Enterprise_CatalogEvent_Block_Adminhtml_Event_Edit_Form
{
protected function _prepareForm()
{
parent::_prepareForm();
if (Mage::getConfig()->getModuleConfig('Ss_Brands')->is('active')) {
$fieldset = $this->getForm()->getElements()->searchById('general_fieldset');
$fieldset->addField('brand_name', 'select',
array(
'label' => Mage::helper('brands')->__('Brand'),
'title' => Mage::helper('brands')->__('Brand'),
'name' => 'brands_id',
'values' => Mage::helper('brands')->getBrandsArrayList(),
)
);
}
return $this;
}
}
那里有什么?感谢
答案 0 :(得分:0)
如果模块的唯一目的是重写,则无需配置类组(global / blocks / ss_todaysevents)。您正在将类直接映射到另一个类组_类名。
Magento不会删除文本节点中的空格。在你的adminhtml_event_edit_form
节点中,你的类名不应该有空格,即:
<adminhtml_event_edit_form>Ss_TodaysEvents_Block_Adminhtml_Event_Edit_Form</adminhtml_event_edit_form>