1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- return [
- 'autoload' => false,
- 'hooks' => [
- 'admin_nologin' => [
- 'adminlogin',
- ],
- 'module_init' => [
- 'adminlogin',
- 'alioss',
- 'apilog',
- 'third',
- ],
- 'app_init' => [
- 'alioss',
- 'crontab',
- ],
- 'upload_config_init' => [
- 'alioss',
- ],
- 'upload_delete' => [
- 'alioss',
- ],
- 'sms_send' => [
- 'alisms',
- ],
- 'sms_notice' => [
- 'alisms',
- ],
- 'sms_check' => [
- 'alisms',
- ],
- 'response_send' => [
- 'apilog',
- ],
- 'view_filter' => [
- 'betterform',
- 'third',
- ],
- 'config_init' => [
- 'betterform',
- 'nkeditor',
- 'third',
- ],
- 'user_sidenav_after' => [
- 'signin',
- ],
- 'user_delete_successed' => [
- 'third',
- ],
- 'user_logout_successed' => [
- 'third',
- ],
- 'action_begin' => [
- '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' => [],
- 'domain' => '',
- ];
|