| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- // 事件定义文件
- return [
- 'bind' => [
- ],
- 'listen' => [
- //展示活动
- 'ShowPromotion' => [
- 'addon\supermember\event\ShowPromotion',
- ],
- // 会员卡订单支付异步回调
- 'MemberLevelOrderPayNotify' => [
- 'addon\supermember\event\MemberLevelOrderPayNotify'
- ],
- // 订单支付
- "OrderPay" => [
- 'addon\supermember\event\MemberLevelOrderPayNotify'
- ],
- // 会员卡订单定时关闭
- 'MemberLevelOrderClose' => [
- 'addon\supermember\event\MemberLevelOrderClose'
- ],
- // 会员卡自动过期
- 'MemberLevelAutoExpire' => [
- 'addon\supermember\event\MemberLevelAutoExpire'
- ],
- 'CouponGetType' => [
- 'addon\supermember\event\CouponGetType'
- ],
- 'IncomeStatistics' => [
- 'addon\supermember\event\IncomeStatistics'
- ],
- //统计写入
- 'AddStat' => [
- 'addon\supermember\event\AddStat',
- ]
- ],
- 'subscribe' => [
- ],
- ];
|