| 1234567891011121314151617181920212223 |
- <?php
- // 事件定义文件
- return [
- 'bind' => [
- ],
- 'listen' => [
- //展示活动
- 'ShowPromotion' => [
- 'addon\form\event\ShowPromotion',
- ],
- 'OrderPayment' => [
- 'addon\form\event\OrderPayment',
- ],
- 'OrderCreate' => [
- 'addon\form\event\OrderCreate',
- ]
- ],
- 'subscribe' => [
- ],
- ];
|