36 lines
747 B
PHP
36 lines
747 B
PHP
<?php
|
|
// 事件定义文件
|
|
return [
|
|
'bind' => [
|
|
|
|
],
|
|
|
|
'listen' => [
|
|
//展示活动
|
|
'ShowPromotion' => [
|
|
'addon\pointexchange\event\ShowPromotion',
|
|
],
|
|
'PointexchangeOrderPayNotify' => [
|
|
'addon\pointexchange\event\PointexchangeOrderPayNotify',
|
|
],
|
|
|
|
'MemberAccountFromType' => [
|
|
'addon\pointexchange\event\MemberAccountFromType',
|
|
],
|
|
'OrderClose' => [
|
|
'addon\pointexchange\event\OrderClose'
|
|
],
|
|
// 订单营销活动类型
|
|
'OrderPromotionType' => [
|
|
'addon\pointexchange\event\OrderPromotionType',
|
|
],
|
|
// 优惠券获取来源
|
|
'CouponGetType' => [
|
|
'addon\pointexchange\event\CouponGetType',
|
|
],
|
|
],
|
|
|
|
'subscribe' => [
|
|
],
|
|
];
|