【发布时间】:2016-08-10 13:31:21
【问题描述】:
Prestashop 1.6.1.6 需要在支付挂钩中进行一些 API 调用。但是由于某种原因,钩子没有触发并且 hookPayment 方法没有执行。当与也具有 hookPayment 的 Paypal 模块进行比较时,会执行此钩子。我做错了什么?
模块代码尽可能简单
<?php
if (!defined('_PS_VERSION_'))
exit;
class TestModule extends Module
{
public function __construct()
{
$this->name = 'testmodule';
$this->tab = 'shipping_logistics';
$this->version = '1.0.0';
$this->author = 'Firstname Lastname';
$this->need_instance = 0;
$this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('Test Module');
$this->description = $this->l('Description of my module.');
$this->confirmUninstall = $this->l('Are you sure you want to uninstall?');
}
public function install()
{
if (!parent::install() || !$this->registerHook('payment'))
return false;
return true;
}
public function uninstall()
{
if (!parent::uninstall())
return false;
return true;
}
public function hookPayment($params)
{
ddd($params);
}
}
安装钩子后注册到数据库中
mysql> select * from module where id_module=75;
+-----------+------------+--------+---------+
| id_module | name | active | version |
+-----------+------------+--------+---------+
| 75 | testmodule | 1 | 1.0.0 |
+-----------+------------+--------+---------+
1 row in set (0,00 sec)
mysql> select * from hook_module where id_module=75;
+-----------+---------+---------+----------+
| id_module | id_shop | id_hook | position |
+-----------+---------+---------+----------+
| 75 | 1 | 1 | 4 |
+-----------+---------+---------+----------+
1 row in set (0,00 sec)
mysql> select * from hook where id_hook=1;
+---------+----------------+---------+-----------------------------------------------------+----------+-----------+
| id_hook | name | title | description | position | live_edit |
+---------+----------------+---------+-----------------------------------------------------+----------+-----------+
| 1 | displayPayment | Payment | This hook displays new elements on the payment page | 1 | 1 |
+---------+----------------+---------+-----------------------------------------------------+----------+-----------+
1 row in set (0,00 sec)
【问题讨论】:
标签: php module prestashop payment prestashop-1.6