初始上传
This commit is contained in:
36
addon/discount/config/event.php
Executable file
36
addon/discount/config/event.php
Executable file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
// 事件定义文件
|
||||
return [
|
||||
'bind' => [
|
||||
|
||||
],
|
||||
|
||||
'listen' => [
|
||||
//限时折扣开启
|
||||
'OpenDiscount' => [
|
||||
'addon\discount\event\OpenDiscount',
|
||||
],
|
||||
//限时折扣关闭
|
||||
'CloseDiscount' => [
|
||||
'addon\discount\event\CloseDiscount',
|
||||
],
|
||||
|
||||
//展示活动
|
||||
'ShowPromotion' => [
|
||||
'addon\discount\event\ShowPromotion',
|
||||
],
|
||||
|
||||
// 商品营销活动类型
|
||||
'GoodsPromotionType' => [
|
||||
'addon\discount\event\GoodsPromotionType',
|
||||
],
|
||||
|
||||
// 商品营销活动信息
|
||||
'GoodsPromotion' => [
|
||||
'addon\discount\event\GoodsPromotion',
|
||||
],
|
||||
],
|
||||
|
||||
'subscribe' => [
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user