我正在编写一个模块,我知道如何构建一个全局模块,但我想做以下事情:
现在我的问题:
感谢您的反馈, 埃里克
PS。使用prestashop 1.5.8,稍后会担心扩展到1.6
答案 0 :(得分:1)
要向产品编辑页面添加其他标签,可以使用hookDisplayAdminProductsExtra。
首先,您必须在install()方法中注册此挂钩:
public function install() {
...
$this->registerHook('displayAdminProductsExtra')...
...
}
之后你定义了这个:
public function hookDisplayAdminProductsExtra($params) {
...
return $this->display(__FILE__, 'views/admin/yourtemplatefile.tpl');
}
文件yourtemplatefile.tpl定义额外选项卡的内容。可以在hookDisplayAdminProductsExtra函数
中分配此文件中使用的额外变量您可以在此处找到有关创建模块的其他信息: http://doc.prestashop.com/display/PS15/Creating+a+PrestaShop+module
在这里你可以找到有关钩子的信息: http://doc.prestashop.com/display/PS15/Hooks+in+PrestaShop+1.5