我正在为prestashop 1.7
创建信用卡付款模块我不知道如何在外部网址上发送我的帖子值,并在交易成功或失败时收到响应。
答案 0 :(得分:3)
你必须做这样的事情:
注册有趣的钩子(http://build.prestashop.com/news/module-development-changes-in-17/)并在你的模块中创建这样的函数:
public function hookHookName($params) {
// Do things here
}
特意玩这个钩子(第一部分是钩子名称,第二部分是$ params):
Hook::exec('actionValidateOrder', array(
'cart' => $this->context->cart,
'order' => $order,
'customer' => $this->context->customer,
'currency' => $this->context->currency,
'orderStatus' => $order_status
));