如何在prestashop 1.6.1.3后端列表/网格视图面板中添加另一个操作按钮

时间:2016-08-22 06:45:45

标签: php smarty prestashop prestashop-1.6

如何在prestashop后端列表/网格视图面板中添加另一个操作按钮。 我想用xls导出一个功能,用csv导出一个。所以我需要添加一个新按钮,以便我需要添加或查看哪个文件。 还有一种方法可以删除添加按钮,因为我只想显示数据,因此不需要添加按钮。

enter image description here

1 个答案:

答案 0 :(得分:0)

是的,您可以添加它只需将代码放入控制器__construct函数

public function __construct()
{ 
    $this->toolbar_btn['print'] = array(
       'href' => '{your button action}',
       'desc' => $this->l('{your button name}'),
       'remove_onclick' => true
    );
}