在prestashop 1.4上使用hook updateQuantity

时间:2015-10-21 09:45:06

标签: hook prestashop

我是prestashop的新手。

我正在研究prestashop 1.4,我想在更新库存后调用一个事件。 我已经阅读了一些讨论updateQuantity钩子或其他一些定义的钩子动作的主题。 有人可以用一个简单的例子让我走上正确的道路

由于

1 个答案:

答案 0 :(得分:1)

您可以使用 hookUpdateQuantity 操作。 如果要在模块上首先使用此操作,则必须在为此挂钩创建函数后注册模块函数 install()

public function install()
{
  return parent::install() && $this->registerHook('updateQuantity');
}

public function hookUpdateQuantity($params)
{
   // for example send Customer Alert information about product quantity 
    if ($this->_customer_qty && $params['product']['quantity'] > 0)
        $this->sendCustomerAlert((int)$params['product']['id'], 0);
}