gpt4 book ai didi

button - addRowAction Prestashop

转载 作者:行者123 更新时间:2023-12-02 09:33:12 25 4
gpt4 key购买 nike

我正在 Prestashop 上创建一个模块,我想使用 addRowAction() 创建一个按钮,当我单击此按钮时,我想打开一个包含产品详细信息的页面。这是一个例子:

1

我找到了this文章,但我希望我的模块能够自动执行此操作而不更改核心文件

最佳答案

1) 添加附加操作:

$this->addRowAction('test');

2)这个 Action 函数:

public function displayTestLink($token = null, $id, $name = null)
{
$tpl = $this->createTemplate('helpers/list/list_action_edit.tpl');
if (!array_key_exists('Test', self::$cache_lang))
self::$cache_lang['Test'] = $this->l('Test', 'Helper');

$tpl->assign(array(
'href' => $this->currentIndex.'&'.$this->identifier.'='.$id.'&update'.$this->table.'&token='.($token != null ? $token : $this->token),
'action' => self::$cache_lang['Test'],
'id' => $id
));

return $tpl->fetch();
}

3)在函数中,您可以渲染一个新表单,执行一些操作或任何您喜欢的操作。

关于button - addRowAction Prestashop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30645170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com