| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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' => [
- ],
- ];
|