29 lines
660 B
PHP
29 lines
660 B
PHP
<?php
|
|
// 事件定义文件
|
|
return [
|
|
'bind' => [],
|
|
'listen' => [
|
|
//展示活动
|
|
'ShowPromotion' => [
|
|
'addon\cossms\event\ShowPromotion',
|
|
],
|
|
//短信方式
|
|
'SmsType' => [
|
|
'addon\cossms\event\SmsType'
|
|
],
|
|
'CloseSMS'=>[
|
|
'addon\cossms\event\CloseSMS'
|
|
],
|
|
'DoEditSmsMessage' => [
|
|
'addon\cossms\event\DoEditSmsMessage'
|
|
],
|
|
'SendSms' => [
|
|
'addon\cossms\event\SendSms'
|
|
],
|
|
'SmsTemplateInfo' => [
|
|
'addon\cossms\event\SmsTemplateInfo'
|
|
]
|
|
],
|
|
'subscribe' => [],
|
|
];
|