This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

@@ -0,0 +1,52 @@
<?php
// 事件定义文件
return [
'bind' => [
],
'listen' => [
//秒杀开启
'OpenSeckill' => [
'addon\seckill\event\OpenSeckill',
],
//秒杀关闭
'CloseSeckill' => [
'addon\seckill\event\CloseSeckill',
],
//展示活动
'ShowPromotion' => [
'addon\seckill\event\ShowPromotion',
],
'PromotionType' => [
'addon\seckill\event\PromotionType',
],
// 商品营销活动类型
'GoodsPromotionType' => [
'addon\seckill\event\GoodsPromotionType',
],
// 商品营销活动信息
'GoodsPromotion' => [
'addon\seckill\event\GoodsPromotion',
],
// 订单营销活动类型
'OrderPromotionType' => [
'addon\seckill\event\OrderPromotionType',
],
// 订单营销活动类型
'OrderClose' => [
'addon\seckill\event\CronOrderClose',
],
// 活动专区——秒杀页面配置
'PromotionZoneConfig' => [
'addon\seckill\event\SeckillZoneConfig',
]
],
'subscribe' => [
],
];