44 lines
991 B
PHP
44 lines
991 B
PHP
<?php
|
|
// 事件定义文件
|
|
return [
|
|
'bind' => [
|
|
|
|
],
|
|
|
|
'listen' => [
|
|
//展示活动
|
|
'ShowPromotion' => [
|
|
'addon\giftcard\event\ShowPromotion',
|
|
],
|
|
'GiftCardOrderClose' => [
|
|
'addon\giftcard\event\GiftCardOrderClose',
|
|
],
|
|
'GiftCardOrderPayNotify' => [
|
|
'addon\giftcard\event\GiftCardOrderPayNotify',
|
|
],
|
|
|
|
'IncomeStatistics' => [
|
|
'addon\giftcard\event\IncomeStatistics'
|
|
],
|
|
//统计写入
|
|
'AddStat' => [
|
|
'addon\giftcard\event\AddStat',
|
|
],
|
|
'CronCardExpire' => [
|
|
'addon\giftcard\event\CronCardExpire'
|
|
],
|
|
'PayReset' => [
|
|
'addon\giftcard\event\PayReset'
|
|
],
|
|
'OrderPay' => [
|
|
'addon\giftcard\event\OrderPay'
|
|
],
|
|
'OrderPromotionType' => [
|
|
'addon\giftcard\event\OrderPromotionType',
|
|
],
|
|
],
|
|
|
|
'subscribe' => [
|
|
],
|
|
];
|