Magento的。 如何扩展和使用默认产品图片上传器?
我在magento管理面板中创建了自己的网格并添加了少量选项卡。 在一个标签中,我需要像创建产品页面一样显示相同的图片上传器。
我的意思是这个块: Mage / Adminhtml / Block / Catalog / Product / Helper / Form / Gallery / Content.php
这里是我如何创建标签
$this->addTab('images_uploader', array(
'label' => Mage::helper('adminhtml')->__('Images Uploader'),
'title' => Mage::helper('adminhtml')->__('Images Uploader'),
'content' => $this->getLayout()->createBlock('adminhtml/catalog_product_helper_form_gallery_content')->toHtml(),
));
但我得到错误调用线164上的非对象应用程序/代码/核心/法师/ Adminhtml /块/目录/产品/帮助/表格/图库/ Content.php成员函数getDataObject()
链接地址: http://www.djcxy.com/p/65191.html上一篇: Magento. How to extend and use default products picture uploader?