在Prestashop中获取不同帐户的相同客户ID

时间:2014-05-31 13:39:41

标签: variables smarty prestashop-1.6

我在Prestashop中有模块,我需要当前的客户ID。 这是模块php文件中的代码:

$userid =(int)$this->context->customer->id;
$this->context->smarty->assign('userid',$userid);

我将此变量用作自定义链接的参数。 这项工作很好,但每次都获得相同的ID。我的意思是......对于不同的用户。 这可能是什么原因?

1 个答案:

答案 0 :(得分:0)

您应该尝试:

$id = (int)$this->context->cookie->id_customer;