| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- use common\enums\EventNameEnum;
- return [
- // ----------------------- APP链接 ----------------------- //
- 'links' => [
- [
- 'title' => '短视频',
- 'route' => '/plugins/short_video/index',
- 'icon' => '',
- 'params' => [],
- ],
- ],
- // ----------------------- 事件处理 ----------------------- //
- 'events' => [
- [
- 'event_name' => EventNameEnum::ORDER_PAY,
- 'listeners' => [
- 'addons\ShortVideo\common\listeners\OrderPaidListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::ORDER_CLOSE,
- 'listeners' => [
- 'addons\ShortVideo\common\listeners\OrderCloseListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::ORDER_FINISH,
- 'listeners' => [
- 'addons\ShortVideo\common\listeners\OrderFinishListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::VIDEO_TASK_CONFIG,
- 'listeners' => [
- 'addons\ShortVideo\common\listeners\VideoTaskConfigListener',
- ]
- ],
- [
- 'event_name' => EventNameEnum::VIDEO_REWARD_PUSH,
- 'listeners' => [
- 'addons\ShortVideo\common\listeners\VideoRewardPushListener',
- ]
- ],
- ],
- // ----------------------- 公共调用 ----------------------- //
- 'invoker'=>[
- ['invoker_id'=>\common\enums\GlobalFuncEnum::GOODS_MODEL,'class'=>'addons\ShortVideo\common\models\ShortVideoCommissionItemSetting','method'=>'lists'],
- ['invoker_id'=>\common\enums\GlobalFuncEnum::PROMOTION,'class'=>'addons\ShortVideo\common\models\ShortVideo','method'=>'getIncomeInfo'],
- ],
- ];
|