初始上传
This commit is contained in:
55
addon/shopcomponent/config/event.php
Executable file
55
addon/shopcomponent/config/event.php
Executable file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// 事件定义文件
|
||||
return [
|
||||
'bind' => [
|
||||
|
||||
],
|
||||
|
||||
'listen' => [
|
||||
//展示活动
|
||||
'ShowPromotion' => [
|
||||
'addon\shopcomponent\event\ShowPromotion',
|
||||
],
|
||||
'WeappMenu' => [
|
||||
'addon\shopcomponent\event\WeappMenu',
|
||||
],
|
||||
'GoodsEdit' => [
|
||||
'addon\shopcomponent\event\GoodsEdit'
|
||||
],
|
||||
// 商品删除
|
||||
'DeleteGoods' => [
|
||||
'addon\shopcomponent\event\DeleteGoods'
|
||||
],
|
||||
// 订单支付成功
|
||||
'OrderPay' => [
|
||||
'addon\shopcomponent\event\OrderPay'
|
||||
],
|
||||
// 发货成功
|
||||
'OrderDeliveryAfter' => [
|
||||
'addon\shopcomponent\event\OrderDeliveryAfter'
|
||||
],
|
||||
// 订单收货
|
||||
'OrderTakeDeliveryAfter' => [
|
||||
'addon\shopcomponent\event\OrderTakeDeliveryAfter'
|
||||
],
|
||||
// 发起维权申请
|
||||
'orderRefundApply' => [
|
||||
'addon\shopcomponent\event\OrderRefundApply'
|
||||
],
|
||||
// 维权状态变更
|
||||
'RefundStatusChange' => [
|
||||
'addon\shopcomponent\event\RefundStatusChange'
|
||||
],
|
||||
// 同步微信类目
|
||||
'SyncWxCategory' => [
|
||||
'addon\shopcomponent\event\SyncWxCategory'
|
||||
],
|
||||
// 异步回调
|
||||
'shopcomponentNotify' => [
|
||||
'addon\shopcomponent\event\ShopcomponentNotify'
|
||||
]
|
||||
],
|
||||
|
||||
'subscribe' => [
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user