| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- return [
- 'autoload' => false,
- 'hooks' => [
- 'app_init' => [
- 'epay',
- ],
- 'config_init' => [
- 'nkeditor',
- 'third',
- ],
- 'sms_send' => [
- 'smsbao',
- ],
- 'sms_notice' => [
- 'smsbao',
- ],
- 'sms_check' => [
- 'smsbao',
- ],
- 'user_delete_successed' => [
- 'third',
- ],
- 'user_logout_successed' => [
- 'third',
- ],
- 'module_init' => [
- 'third',
- ],
- 'action_begin' => [
- 'third',
- ],
- 'view_filter' => [
- 'third',
- ],
- ],
- 'route' => [
- '/third$' => 'third/index/index',
- '/third/connect/[:platform]' => 'third/index/connect',
- '/third/callback/[:platform]' => 'third/index/callback',
- '/third/bind/[:platform]' => 'third/index/bind',
- '/third/unbind/[:platform]' => 'third/index/unbind',
- ],
- 'priority' => [],
- ];
|