45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
// 事件定义文件
|
|
return [
|
|
'bind' => [],
|
|
'listen' => [
|
|
//展示活动
|
|
'ShowPromotion' => [
|
|
'addon\alilife\event\ShowPromotion',
|
|
],
|
|
// 订单发货
|
|
'OrderDelivery' => [
|
|
'addon\alilife\event\OrderDelivery'
|
|
],
|
|
// 订单收货
|
|
'OrderTakeDelivery' => [
|
|
'addon\alilife\event\OrderTakeDelivery'
|
|
],
|
|
'AliGatewayNotify' => [//网关通知
|
|
'addon\alilife\event\AliGoodsStatusNotify'
|
|
],
|
|
'AutoPushOrderDelivery' => [ //验证自动发货
|
|
'addon\alilife\event\AutoPushOrderDelivery'
|
|
],
|
|
'GoodsEdit' => [
|
|
'addon\alilife\event\GoodsEdit'
|
|
],
|
|
'AddGoods' => [
|
|
'addon\alilife\event\AddGoods'
|
|
],
|
|
'editGoodsInfo'=>[//获取编辑信息
|
|
'addon\alilife\event\editGoodsInfo'
|
|
],
|
|
'AoutSyncGoodsAlipay'=>[//同步支付宝商品
|
|
'addon\alilife\event\AoutSyncGoodsAlipay'
|
|
],
|
|
'SyncImageGoodsAlipay'=>[
|
|
'addon\alilife\event\SyncImageGoodsAlipay'
|
|
],
|
|
'AlbumUpload'=>[//相册图形上传事件
|
|
'addon\alilife\event\AlbumUpload'
|
|
]
|
|
],
|
|
'subscribe' => [],
|
|
];
|